diff --git a/.azure-pipelines/generate-auth-module-template.yml b/.azure-pipelines/generate-auth-module-template.yml index 0600456da0a..64a9ff49617 100644 --- a/.azure-pipelines/generate-auth-module-template.yml +++ b/.azure-pipelines/generate-auth-module-template.yml @@ -21,6 +21,14 @@ parameters: displayName: 'Build Number' type: string default: $[format('{0:yyMMddHH}', pipeline.startTime)] + - name: AZURESUBSCRIPTION + default: "Microsoft Graph Build Agents (Win+Lin)" + displayName: Azure Subscription + + - name: KEYVAULT + default: "msgraph-build-keyvault" + displayName: Build Key vault + jobs: - job: MsGraphPSSDKAuthModuleGeneration @@ -29,6 +37,26 @@ jobs: steps: - template: ./install-tools-template.yml + - task: AzureKeyVault@1 + inputs: + azureSubscription: $(AZURESUBSCRIPTION) + KeyVaultName: $(KEYVAULT) + SecretsFilter: '*' + RunAsPreJob: true + + - task: PowerShell@2 + displayName: 'Install Test Certificate' + inputs: + targetType: 'inline' + script: | + $kvSecretBytes = [System.Convert]::FromBase64String('$(MsGraphPSSDKCertificate)') + $certCollection = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2Collection + $certCollection.Import($kvSecretBytes,$null,[System.Security.Cryptography.X509Certificates.X509KeyStorageFlags]::Exportable) + $store = New-Object System.Security.Cryptography.X509Certificates.X509Store("My", "CurrentUser") + $store.Open([System.Security.Cryptography.X509Certificates.OpenFlags]::ReadWrite) + $store.AddRange($certCollection) + $store.Close() + - task: PowerShell@2 displayName: 'Generate and Build Auth Module' inputs: diff --git a/.azure-pipelines/integrated-pipeline.yml b/.azure-pipelines/integrated-pipeline.yml index dc2af0bc751..31a22510e42 100644 --- a/.azure-pipelines/integrated-pipeline.yml +++ b/.azure-pipelines/integrated-pipeline.yml @@ -101,6 +101,8 @@ stages: AUTH_MODULE_PATH: $(AUTH_MODULE_PATH) EnableSigning: true BUILDNUMBER: $(BUILDNUMBER) + KEYVAULT: $(KEYVAULT) + AZURESUBSCRIPTION: $(AZURESUBSCRIPTION) - stage: GenerateBetaModules displayName: 'Generate Beta Modules (Microsoft.Graph.*)' diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000000..961b1b6cc7f --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @peombwa @ddyett @georgend diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1d3735ee470..d7e4dc6a319 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,8 +41,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MESSAGE_TITLE: Weekly OpenApiDocs Download MESSAGE_BODY: "This pull request was automatically created by the GitHub Action,\n\n Contains OpenApiDocs Updates from Graph Explorer API" - REVIEWERS: peombwa,ddyett,darrelmiller - ASSIGNEDTO: finsharp + REVIEWERS: peombwa,ddyett,darrelmiller,georgend + ASSIGNEDTO: peombwa LABELS: generated BASE: dev HEAD: ${{steps.create_branch.outputs.branch}} diff --git a/config/ModuleMetadata.json b/config/ModuleMetadata.json index 6f82d23b6cb..a5b23d1ae46 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.5.0" + "version": "1.6.0" } diff --git a/config/ModulesMapping.jsonc b/config/ModulesMapping.jsonc index 665ef8ee5c2..56e1c3c4e1c 100644 --- a/config/ModulesMapping.jsonc +++ b/config/ModulesMapping.jsonc @@ -35,6 +35,6 @@ "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$", "Users.Functions": "^users.Functions$", - + // "WindowsUpdates": "^admin.windows$|^admin.Actions$|^admin.Functions$", // "WorkBooks": "^workbooks\\.",// Max limit. } \ No newline at end of file diff --git a/openApiDocs/beta/Applications.yml b/openApiDocs/beta/Applications.yml index 0315d11a07a..5575770d26c 100644 --- a/openApiDocs/beta/Applications.yml +++ b/openApiDocs/beta/Applications.yml @@ -15,10 +15,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -218,6 +217,7 @@ paths: tags: - applications.application summary: Get entity from applications by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: applications.application_GetApplication parameters: - name: application-id @@ -229,10 +229,9 @@ paths: x-ms-docs-key-type: application - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -353,6 +352,7 @@ paths: tags: - applications.application summary: Update entity in applications + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: applications.application_UpdateApplication parameters: - name: application-id @@ -379,6 +379,7 @@ paths: tags: - applications.application summary: Delete entity from applications + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: applications.application_DeleteApplication parameters: - name: application-id @@ -404,6 +405,7 @@ paths: tags: - applications.connectorGroup summary: Get connectorGroup from applications + description: The connectorGroup the application is using with Azure AD Application Proxy. Nullable. operationId: applications_GetConnectorGroup parameters: - name: application-id @@ -469,6 +471,7 @@ paths: tags: - applications.connectorGroup summary: Get ref of connectorGroup from applications + description: The connectorGroup the application is using with Azure AD Application Proxy. Nullable. operationId: applications_GetRefConnectorGroup parameters: - name: application-id @@ -501,6 +504,7 @@ paths: tags: - applications.connectorGroup summary: Update the ref of navigation property connectorGroup in applications + description: The connectorGroup the application is using with Azure AD Application Proxy. Nullable. operationId: applications_SetRefConnectorGroup parameters: - name: application-id @@ -529,6 +533,7 @@ paths: tags: - applications.connectorGroup summary: Delete ref of navigation property connectorGroup for applications + description: The connectorGroup the application is using with Azure AD Application Proxy. Nullable. operationId: applications_DeleteRefConnectorGroup parameters: - name: application-id @@ -554,6 +559,7 @@ paths: tags: - applications.directoryObject summary: Get createdOnBehalfOf from applications + description: Read-only. operationId: applications_GetCreatedOnBehalfOf parameters: - name: application-id @@ -603,6 +609,7 @@ paths: tags: - applications.directoryObject summary: Get ref of createdOnBehalfOf from applications + description: Read-only. operationId: applications_GetRefCreatedOnBehalfOf parameters: - name: application-id @@ -626,6 +633,7 @@ paths: tags: - applications.directoryObject summary: Update the ref of navigation property createdOnBehalfOf in applications + description: Read-only. operationId: applications_SetRefCreatedOnBehalfOf parameters: - name: application-id @@ -654,6 +662,7 @@ paths: tags: - applications.directoryObject summary: Delete ref of navigation property createdOnBehalfOf for applications + description: Read-only. operationId: applications_DeleteRefCreatedOnBehalfOf parameters: - name: application-id @@ -679,6 +688,7 @@ paths: tags: - applications.extensionProperty summary: Get extensionProperties from applications + description: Read-only. Nullable. operationId: applications_ListExtensionProperties parameters: - name: application-id @@ -775,6 +785,7 @@ paths: tags: - applications.extensionProperty summary: Create new navigation property to extensionProperties for applications + description: Read-only. Nullable. operationId: applications_CreateExtensionProperties parameters: - name: application-id @@ -806,6 +817,7 @@ paths: tags: - applications.extensionProperty summary: Get extensionProperties from applications + description: Read-only. Nullable. operationId: applications_GetExtensionProperties parameters: - name: application-id @@ -866,6 +878,7 @@ paths: tags: - applications.extensionProperty summary: Update the navigation property extensionProperties in applications + description: Read-only. Nullable. operationId: applications_UpdateExtensionProperties parameters: - name: application-id @@ -899,6 +912,7 @@ paths: tags: - applications.extensionProperty summary: Delete navigation property extensionProperties for applications + description: Read-only. Nullable. operationId: applications_DeleteExtensionProperties parameters: - name: application-id @@ -1126,6 +1140,7 @@ paths: tags: - applications.application summary: Get media content for application from applications + description: The main logo for the application. Not nullable. operationId: applications.application_GetLogo parameters: - name: application-id @@ -1150,6 +1165,7 @@ paths: tags: - applications.application summary: Update media content for application in applications + description: The main logo for the application. Not nullable. operationId: applications.application_SetLogo parameters: - name: application-id @@ -1508,6 +1524,7 @@ paths: tags: - applications.directoryObject summary: Get owners from applications + description: Directory objects that are owners of the application. Read-only. Nullable. operationId: applications_ListOwners parameters: - name: application-id @@ -1590,6 +1607,7 @@ paths: tags: - applications.directoryObject summary: Get ref of owners from applications + description: Directory objects that are owners of the application. Read-only. Nullable. operationId: applications_ListRefOwners parameters: - name: application-id @@ -1646,6 +1664,7 @@ paths: tags: - applications.directoryObject summary: Create new navigation property ref to owners for applications + description: Directory objects that are owners of the application. Read-only. Nullable. operationId: applications_CreateRefOwners parameters: - name: application-id @@ -2263,6 +2282,7 @@ paths: tags: - applications.synchronization summary: Get schema from applications + description: The synchronization schema configured for the job. operationId: applications.synchronization.jobs_GetSchema parameters: - name: application-id @@ -2327,6 +2347,7 @@ paths: tags: - applications.synchronization summary: Update the navigation property schema in applications + description: The synchronization schema configured for the job. operationId: applications.synchronization.jobs_UpdateSchema parameters: - name: application-id @@ -2360,6 +2381,7 @@ paths: tags: - applications.synchronization summary: Delete navigation property schema for applications + description: The synchronization schema configured for the job. operationId: applications.synchronization.jobs_DeleteSchema parameters: - name: application-id @@ -2392,6 +2414,7 @@ paths: tags: - applications.synchronization summary: Get directories from applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.jobs.schema_ListDirectories parameters: - name: application-id @@ -2495,6 +2518,7 @@ paths: tags: - applications.synchronization summary: Create new navigation property to directories for applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.jobs.schema_CreateDirectories parameters: - name: application-id @@ -2533,6 +2557,7 @@ paths: tags: - applications.synchronization summary: Get directories from applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.jobs.schema_GetDirectories parameters: - name: application-id @@ -2600,6 +2625,7 @@ paths: tags: - applications.synchronization summary: Update the navigation property directories in applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.jobs.schema_UpdateDirectories parameters: - name: application-id @@ -2640,6 +2666,7 @@ paths: tags: - applications.synchronization summary: Delete navigation property directories for applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.jobs.schema_DeleteDirectories parameters: - name: application-id @@ -3196,6 +3223,7 @@ paths: tags: - applications.synchronization summary: Get schema from applications + description: Default synchronization schema for the jobs based on this template. operationId: applications.synchronization.templates_GetSchema parameters: - name: application-id @@ -3260,6 +3288,7 @@ paths: tags: - applications.synchronization summary: Update the navigation property schema in applications + description: Default synchronization schema for the jobs based on this template. operationId: applications.synchronization.templates_UpdateSchema parameters: - name: application-id @@ -3293,6 +3322,7 @@ paths: tags: - applications.synchronization summary: Delete navigation property schema for applications + description: Default synchronization schema for the jobs based on this template. operationId: applications.synchronization.templates_DeleteSchema parameters: - name: application-id @@ -3325,6 +3355,7 @@ paths: tags: - applications.synchronization summary: Get directories from applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.templates.schema_ListDirectories parameters: - name: application-id @@ -3428,6 +3459,7 @@ paths: tags: - applications.synchronization summary: Create new navigation property to directories for applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.templates.schema_CreateDirectories parameters: - name: application-id @@ -3466,6 +3498,7 @@ paths: tags: - applications.synchronization summary: Get directories from applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.templates.schema_GetDirectories parameters: - name: application-id @@ -3533,6 +3566,7 @@ paths: tags: - applications.synchronization summary: Update the navigation property directories in applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.templates.schema_UpdateDirectories parameters: - name: application-id @@ -3573,6 +3607,7 @@ paths: tags: - applications.synchronization summary: Delete navigation property directories for applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.templates.schema_DeleteDirectories parameters: - name: application-id @@ -3959,6 +3994,7 @@ paths: tags: - applications.tokenLifetimePolicy summary: Get tokenLifetimePolicies from applications + description: The tokenLifetimePolicies assigned to this application. operationId: applications_ListTokenLifetimePolicies parameters: - name: application-id @@ -4055,6 +4091,7 @@ paths: tags: - applications.tokenLifetimePolicy summary: Get ref of tokenLifetimePolicies from applications + description: The tokenLifetimePolicies assigned to this application. operationId: applications_ListRefTokenLifetimePolicies parameters: - name: application-id @@ -4119,6 +4156,7 @@ paths: tags: - applications.tokenLifetimePolicy summary: Create new navigation property ref to tokenLifetimePolicies for applications + description: The tokenLifetimePolicies assigned to this application. operationId: applications_CreateRefTokenLifetimePolicies parameters: - name: application-id @@ -4538,6 +4576,7 @@ paths: tags: - groups.appRoleAssignment summary: Get appRoleAssignments from groups + description: Represents the app roles a group has been granted for an application. operationId: groups_ListAppRoleAssignments parameters: - name: group-id @@ -4637,6 +4676,7 @@ paths: tags: - groups.appRoleAssignment summary: Create new navigation property to appRoleAssignments for groups + description: Represents the app roles a group has been granted for an application. operationId: groups_CreateAppRoleAssignments parameters: - name: group-id @@ -4668,6 +4708,7 @@ paths: tags: - groups.appRoleAssignment summary: Get appRoleAssignments from groups + description: Represents the app roles a group has been granted for an application. operationId: groups_GetAppRoleAssignments parameters: - name: group-id @@ -4729,6 +4770,7 @@ paths: tags: - groups.appRoleAssignment summary: Update the navigation property appRoleAssignments in groups + description: Represents the app roles a group has been granted for an application. operationId: groups_UpdateAppRoleAssignments parameters: - name: group-id @@ -4762,6 +4804,7 @@ paths: tags: - groups.appRoleAssignment summary: Delete navigation property appRoleAssignments for groups + description: Represents the app roles a group has been granted for an application. operationId: groups_DeleteAppRoleAssignments parameters: - name: group-id @@ -5035,6 +5078,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agentGroups from onPremisesPublishingProfiles + description: List of existing onPremisesAgentGroup objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -5126,6 +5170,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Create new navigation property to agentGroups for onPremisesPublishingProfiles + description: List of existing onPremisesAgentGroup objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_CreateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -5157,6 +5202,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agentGroups from onPremisesPublishingProfiles + description: List of existing onPremisesAgentGroup objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_GetAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -5229,6 +5275,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Update the navigation property agentGroups in onPremisesPublishingProfiles + description: List of existing onPremisesAgentGroup objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_UpdateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -5262,6 +5309,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Delete navigation property agentGroups for onPremisesPublishingProfiles + description: List of existing onPremisesAgentGroup objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_DeleteAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -5294,6 +5342,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agents from onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_ListAgents parameters: - name: onPremisesPublishingProfile-id @@ -5393,6 +5442,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Create new navigation property to agents for onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_CreateAgents parameters: - name: onPremisesPublishingProfile-id @@ -5431,6 +5481,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agents from onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_GetAgents parameters: - name: onPremisesPublishingProfile-id @@ -5505,6 +5556,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Update the navigation property agents in onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_UpdateAgents parameters: - name: onPremisesPublishingProfile-id @@ -5545,6 +5597,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Delete navigation property agents for onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_DeleteAgents parameters: - name: onPremisesPublishingProfile-id @@ -5584,6 +5637,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.agents_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -5689,6 +5743,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Create new navigation property to agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.agents_CreateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -5734,6 +5789,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.agents_GetAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -5824,6 +5880,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Update the navigation property agentGroups in onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.agents_UpdateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -5871,6 +5928,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Delete navigation property agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.agents_DeleteAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -5917,6 +5975,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get publishedResources from onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_ListPublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -6013,6 +6072,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Create new navigation property to publishedResources for onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_CreatePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -6051,6 +6111,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get publishedResources from onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_GetPublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -6124,6 +6185,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Update the navigation property publishedResources in onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_UpdatePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -6164,6 +6226,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Delete navigation property publishedResources for onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_DeletePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -6203,6 +6266,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.publishedResources_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -6308,6 +6372,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Create new navigation property to agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.publishedResources_CreateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -6353,6 +6418,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.publishedResources_GetAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -6443,6 +6509,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Update the navigation property agentGroups in onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.publishedResources_UpdateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -6490,6 +6557,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Delete navigation property agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.publishedResources_DeleteAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -6536,6 +6604,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get agents from onPremisesPublishingProfiles + description: List of existing onPremisesAgent objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_ListAgents parameters: - name: onPremisesPublishingProfile-id @@ -6628,6 +6697,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Create new navigation property to agents for onPremisesPublishingProfiles + description: List of existing onPremisesAgent objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_CreateAgents parameters: - name: onPremisesPublishingProfile-id @@ -6659,6 +6729,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get agents from onPremisesPublishingProfiles + description: List of existing onPremisesAgent objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_GetAgents parameters: - name: onPremisesPublishingProfile-id @@ -6725,6 +6796,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Update the navigation property agents in onPremisesPublishingProfiles + description: List of existing onPremisesAgent objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_UpdateAgents parameters: - name: onPremisesPublishingProfile-id @@ -6758,6 +6830,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Delete navigation property agents for onPremisesPublishingProfiles + description: List of existing onPremisesAgent objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_DeleteAgents parameters: - name: onPremisesPublishingProfile-id @@ -6790,6 +6863,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -6888,6 +6962,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Create new navigation property to agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents_CreateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -6926,6 +7001,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents_GetAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -7007,6 +7083,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Update the navigation property agentGroups in onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents_UpdateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -7047,6 +7124,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Delete navigation property agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents_DeleteAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -7086,6 +7164,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get agents from onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups_ListAgents parameters: - name: onPremisesPublishingProfile-id @@ -7192,6 +7271,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Create new navigation property to agents for onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups_CreateAgents parameters: - name: onPremisesPublishingProfile-id @@ -7237,6 +7317,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get agents from onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups_GetAgents parameters: - name: onPremisesPublishingProfile-id @@ -7319,6 +7400,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Update the navigation property agents in onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups_UpdateAgents parameters: - name: onPremisesPublishingProfile-id @@ -7366,6 +7448,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Delete navigation property agents for onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups_DeleteAgents parameters: - name: onPremisesPublishingProfile-id @@ -7412,6 +7495,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get publishedResources from onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups_ListPublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -7515,6 +7599,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Create new navigation property to publishedResources for onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups_CreatePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -7560,6 +7645,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get publishedResources from onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups_GetPublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -7641,6 +7727,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Update the navigation property publishedResources in onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups_UpdatePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -7688,6 +7775,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Delete navigation property publishedResources for onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups_DeletePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -7734,6 +7822,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups.publishedResources_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -7846,6 +7935,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Create new navigation property to agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups.publishedResources_CreateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -7898,6 +7988,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups.publishedResources_GetAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -7997,6 +8088,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Update the navigation property agentGroups in onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups.publishedResources_UpdateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -8051,6 +8143,7 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Delete navigation property agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents.agentGroups.publishedResources_DeleteAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -8104,6 +8197,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Get connectorGroups from onPremisesPublishingProfiles + description: List of existing connectorGroup objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_ListConnectorGroups parameters: - name: onPremisesPublishingProfile-id @@ -8198,6 +8292,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Create new navigation property to connectorGroups for onPremisesPublishingProfiles + description: List of existing connectorGroup objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_CreateConnectorGroups parameters: - name: onPremisesPublishingProfile-id @@ -8229,6 +8324,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Get connectorGroups from onPremisesPublishingProfiles + description: List of existing connectorGroup objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_GetConnectorGroups parameters: - name: onPremisesPublishingProfile-id @@ -8302,6 +8398,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Update the navigation property connectorGroups in onPremisesPublishingProfiles + description: List of existing connectorGroup objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_UpdateConnectorGroups parameters: - name: onPremisesPublishingProfile-id @@ -8335,6 +8432,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Delete navigation property connectorGroups for onPremisesPublishingProfiles + description: List of existing connectorGroup objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_DeleteConnectorGroups parameters: - name: onPremisesPublishingProfile-id @@ -8367,6 +8465,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Get applications from onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectorGroups_ListApplications parameters: - name: onPremisesPublishingProfile-id @@ -8556,6 +8655,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Get ref of applications from onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectorGroups_ListRefApplications parameters: - name: onPremisesPublishingProfile-id @@ -8675,6 +8775,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Create new navigation property ref to applications for onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectorGroups_CreateRefApplications parameters: - name: onPremisesPublishingProfile-id @@ -8717,6 +8818,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Get members from onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectorGroups_ListMembers parameters: - name: onPremisesPublishingProfile-id @@ -8813,6 +8915,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Create new navigation property to members for onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectorGroups_CreateMembers parameters: - name: onPremisesPublishingProfile-id @@ -8851,6 +8954,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Get members from onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectorGroups_GetMembers parameters: - name: onPremisesPublishingProfile-id @@ -8924,6 +9028,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Update the navigation property members in onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectorGroups_UpdateMembers parameters: - name: onPremisesPublishingProfile-id @@ -8964,6 +9069,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Delete navigation property members for onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectorGroups_DeleteMembers parameters: - name: onPremisesPublishingProfile-id @@ -9003,6 +9109,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Get memberOf from onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectorGroups.members_ListMemberOf parameters: - name: onPremisesPublishingProfile-id @@ -9111,6 +9218,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Create new navigation property to memberOf for onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectorGroups.members_CreateMemberOf parameters: - name: onPremisesPublishingProfile-id @@ -9156,6 +9264,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Get memberOf from onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectorGroups.members_GetMemberOf parameters: - name: onPremisesPublishingProfile-id @@ -9247,6 +9356,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Update the navigation property memberOf in onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectorGroups.members_UpdateMemberOf parameters: - name: onPremisesPublishingProfile-id @@ -9294,6 +9404,7 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Delete navigation property memberOf for onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectorGroups.members_DeleteMemberOf parameters: - name: onPremisesPublishingProfile-id @@ -9340,6 +9451,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get connectors from onPremisesPublishingProfiles + description: List of existing connector objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_ListConnectors parameters: - name: onPremisesPublishingProfile-id @@ -9429,6 +9541,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Create new navigation property to connectors for onPremisesPublishingProfiles + description: List of existing connector objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_CreateConnectors parameters: - name: onPremisesPublishingProfile-id @@ -9460,6 +9573,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get connectors from onPremisesPublishingProfiles + description: List of existing connector objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_GetConnectors parameters: - name: onPremisesPublishingProfile-id @@ -9525,6 +9639,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Update the navigation property connectors in onPremisesPublishingProfiles + description: List of existing connector objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_UpdateConnectors parameters: - name: onPremisesPublishingProfile-id @@ -9558,6 +9673,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Delete navigation property connectors for onPremisesPublishingProfiles + description: List of existing connector objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_DeleteConnectors parameters: - name: onPremisesPublishingProfile-id @@ -9590,6 +9706,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get memberOf from onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectors_ListMemberOf parameters: - name: onPremisesPublishingProfile-id @@ -9691,6 +9808,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Create new navigation property to memberOf for onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectors_CreateMemberOf parameters: - name: onPremisesPublishingProfile-id @@ -9729,6 +9847,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get memberOf from onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectors_GetMemberOf parameters: - name: onPremisesPublishingProfile-id @@ -9811,6 +9930,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Update the navigation property memberOf in onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectors_UpdateMemberOf parameters: - name: onPremisesPublishingProfile-id @@ -9851,6 +9971,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Delete navigation property memberOf for onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectors_DeleteMemberOf parameters: - name: onPremisesPublishingProfile-id @@ -9890,6 +10011,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get applications from onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectors.memberOf_ListApplications parameters: - name: onPremisesPublishingProfile-id @@ -10086,6 +10208,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get ref of applications from onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectors.memberOf_ListRefApplications parameters: - name: onPremisesPublishingProfile-id @@ -10212,6 +10335,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Create new navigation property ref to applications for onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectors.memberOf_CreateRefApplications parameters: - name: onPremisesPublishingProfile-id @@ -10261,6 +10385,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get members from onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectors.memberOf_ListMembers parameters: - name: onPremisesPublishingProfile-id @@ -10364,6 +10489,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Create new navigation property to members for onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectors.memberOf_CreateMembers parameters: - name: onPremisesPublishingProfile-id @@ -10409,6 +10535,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get members from onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectors.memberOf_GetMembers parameters: - name: onPremisesPublishingProfile-id @@ -10490,6 +10617,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Update the navigation property members in onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectors.memberOf_UpdateMembers parameters: - name: onPremisesPublishingProfile-id @@ -10537,6 +10665,7 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Delete navigation property members for onPremisesPublishingProfiles + description: Read-only. Nullable. operationId: onPremisesPublishingProfiles.connectors.memberOf_DeleteMembers parameters: - name: onPremisesPublishingProfile-id @@ -10583,6 +10712,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get publishedResources from onPremisesPublishingProfiles + description: List of existing publishedResource objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_ListPublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -10672,6 +10802,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Create new navigation property to publishedResources for onPremisesPublishingProfiles + description: List of existing publishedResource objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_CreatePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -10703,6 +10834,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get publishedResources from onPremisesPublishingProfiles + description: List of existing publishedResource objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_GetPublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -10768,6 +10900,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Update the navigation property publishedResources in onPremisesPublishingProfiles + description: List of existing publishedResource objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_UpdatePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -10801,6 +10934,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Delete navigation property publishedResources for onPremisesPublishingProfiles + description: List of existing publishedResource objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_DeletePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -10833,6 +10967,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -10931,6 +11066,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Create new navigation property to agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources_CreateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -10969,6 +11105,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources_GetAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -11050,6 +11187,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Update the navigation property agentGroups in onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources_UpdateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -11090,6 +11228,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Delete navigation property agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources_DeleteAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -11129,6 +11268,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get agents from onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups_ListAgents parameters: - name: onPremisesPublishingProfile-id @@ -11235,6 +11375,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Create new navigation property to agents for onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups_CreateAgents parameters: - name: onPremisesPublishingProfile-id @@ -11280,6 +11421,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get agents from onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups_GetAgents parameters: - name: onPremisesPublishingProfile-id @@ -11362,6 +11504,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Update the navigation property agents in onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups_UpdateAgents parameters: - name: onPremisesPublishingProfile-id @@ -11409,6 +11552,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Delete navigation property agents for onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups_DeleteAgents parameters: - name: onPremisesPublishingProfile-id @@ -11455,6 +11599,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups.agents_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -11567,6 +11712,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Create new navigation property to agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups.agents_CreateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -11619,6 +11765,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups.agents_GetAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -11718,6 +11865,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Update the navigation property agentGroups in onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups.agents_UpdateAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -11772,6 +11920,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Delete navigation property agentGroups for onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups.agents_DeleteAgentGroups parameters: - name: onPremisesPublishingProfile-id @@ -11825,6 +11974,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get publishedResources from onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups_ListPublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -11928,6 +12078,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Create new navigation property to publishedResources for onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups_CreatePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -11973,6 +12124,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get publishedResources from onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups_GetPublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -12054,6 +12206,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Update the navigation property publishedResources in onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups_UpdatePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -12101,6 +12254,7 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Delete navigation property publishedResources for onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources.agentGroups_DeletePublishedResources parameters: - name: onPremisesPublishingProfile-id @@ -12151,10 +12305,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -12391,6 +12544,7 @@ paths: tags: - servicePrincipals.servicePrincipal summary: Get entity from servicePrincipals by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: servicePrincipals.servicePrincipal_GetServicePrincipal parameters: - name: servicePrincipal-id @@ -12402,10 +12556,9 @@ paths: x-ms-docs-key-type: servicePrincipal - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -12581,6 +12734,7 @@ paths: tags: - servicePrincipals.servicePrincipal summary: Update entity in servicePrincipals + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: servicePrincipals.servicePrincipal_UpdateServicePrincipal parameters: - name: servicePrincipal-id @@ -12607,6 +12761,7 @@ paths: tags: - servicePrincipals.servicePrincipal summary: Delete entity from servicePrincipals + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: servicePrincipals.servicePrincipal_DeleteServicePrincipal parameters: - name: servicePrincipal-id @@ -12632,6 +12787,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignedTo from servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.' operationId: servicePrincipals_ListAppRoleAssignedTo parameters: - name: servicePrincipal-id @@ -12731,6 +12887,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Create new navigation property to appRoleAssignedTo for servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.' operationId: servicePrincipals_CreateAppRoleAssignedTo parameters: - name: servicePrincipal-id @@ -12762,6 +12919,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignedTo from servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.' operationId: servicePrincipals_GetAppRoleAssignedTo parameters: - name: servicePrincipal-id @@ -12823,6 +12981,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Update the navigation property appRoleAssignedTo in servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.' operationId: servicePrincipals_UpdateAppRoleAssignedTo parameters: - name: servicePrincipal-id @@ -12856,6 +13015,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Delete navigation property appRoleAssignedTo for servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.' operationId: servicePrincipals_DeleteAppRoleAssignedTo parameters: - name: servicePrincipal-id @@ -12888,6 +13048,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignments from servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal.' operationId: servicePrincipals_ListAppRoleAssignments parameters: - name: servicePrincipal-id @@ -12987,6 +13148,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Create new navigation property to appRoleAssignments for servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal.' operationId: servicePrincipals_CreateAppRoleAssignments parameters: - name: servicePrincipal-id @@ -13018,6 +13180,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignments from servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal.' operationId: servicePrincipals_GetAppRoleAssignments parameters: - name: servicePrincipal-id @@ -13079,6 +13242,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Update the navigation property appRoleAssignments in servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal.' operationId: servicePrincipals_UpdateAppRoleAssignments parameters: - name: servicePrincipal-id @@ -13112,6 +13276,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Delete navigation property appRoleAssignments for servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal.' operationId: servicePrincipals_DeleteAppRoleAssignments parameters: - name: servicePrincipal-id @@ -13144,6 +13309,7 @@ paths: tags: - servicePrincipals.claimsMappingPolicy summary: Get claimsMappingPolicies from servicePrincipals + description: The claimsMappingPolicies assigned to this service principal. operationId: servicePrincipals_ListClaimsMappingPolicies parameters: - name: servicePrincipal-id @@ -13240,6 +13406,7 @@ paths: tags: - servicePrincipals.claimsMappingPolicy summary: Get ref of claimsMappingPolicies from servicePrincipals + description: The claimsMappingPolicies assigned to this service principal. operationId: servicePrincipals_ListRefClaimsMappingPolicies parameters: - name: servicePrincipal-id @@ -13304,6 +13471,7 @@ paths: tags: - servicePrincipals.claimsMappingPolicy summary: Create new navigation property ref to claimsMappingPolicies for servicePrincipals + description: The claimsMappingPolicies assigned to this service principal. operationId: servicePrincipals_CreateRefClaimsMappingPolicies parameters: - name: servicePrincipal-id @@ -13339,6 +13507,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get createdObjects from servicePrincipals + description: Directory objects created by this service principal. Read-only. Nullable. operationId: servicePrincipals_ListCreatedObjects parameters: - name: servicePrincipal-id @@ -13421,6 +13590,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ref of createdObjects from servicePrincipals + description: Directory objects created by this service principal. Read-only. Nullable. operationId: servicePrincipals_ListRefCreatedObjects parameters: - name: servicePrincipal-id @@ -13477,6 +13647,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Create new navigation property ref to createdObjects for servicePrincipals + description: Directory objects created by this service principal. Read-only. Nullable. operationId: servicePrincipals_CreateRefCreatedObjects parameters: - name: servicePrincipal-id @@ -13512,6 +13683,7 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Get delegatedPermissionClassifications from servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. operationId: servicePrincipals_ListDelegatedPermissionClassifications parameters: - name: servicePrincipal-id @@ -13599,6 +13771,7 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Create new navigation property to delegatedPermissionClassifications for servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. operationId: servicePrincipals_CreateDelegatedPermissionClassifications parameters: - name: servicePrincipal-id @@ -13630,6 +13803,7 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Get delegatedPermissionClassifications from servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. operationId: servicePrincipals_GetDelegatedPermissionClassifications parameters: - name: servicePrincipal-id @@ -13687,6 +13861,7 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Update the navigation property delegatedPermissionClassifications in servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. operationId: servicePrincipals_UpdateDelegatedPermissionClassifications parameters: - name: servicePrincipal-id @@ -13720,6 +13895,7 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Delete navigation property delegatedPermissionClassifications for servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. operationId: servicePrincipals_DeleteDelegatedPermissionClassifications parameters: - name: servicePrincipal-id @@ -13752,6 +13928,7 @@ paths: tags: - servicePrincipals.endpoint summary: Get endpoints from servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_ListEndpoints parameters: - name: servicePrincipal-id @@ -13848,6 +14025,7 @@ paths: tags: - servicePrincipals.endpoint summary: Create new navigation property to endpoints for servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_CreateEndpoints parameters: - name: servicePrincipal-id @@ -13879,6 +14057,7 @@ paths: tags: - servicePrincipals.endpoint summary: Get endpoints from servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_GetEndpoints parameters: - name: servicePrincipal-id @@ -13939,6 +14118,7 @@ paths: tags: - servicePrincipals.endpoint summary: Update the navigation property endpoints in servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_UpdateEndpoints parameters: - name: servicePrincipal-id @@ -13972,6 +14152,7 @@ paths: tags: - servicePrincipals.endpoint summary: Delete navigation property endpoints for servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_DeleteEndpoints parameters: - name: servicePrincipal-id @@ -14004,6 +14185,7 @@ paths: tags: - servicePrincipals.homeRealmDiscoveryPolicy summary: Get homeRealmDiscoveryPolicies from servicePrincipals + description: The homeRealmDiscoveryPolicies assigned to this service principal. operationId: servicePrincipals_ListHomeRealmDiscoveryPolicies parameters: - name: servicePrincipal-id @@ -14100,6 +14282,7 @@ paths: tags: - servicePrincipals.homeRealmDiscoveryPolicy summary: Get ref of homeRealmDiscoveryPolicies from servicePrincipals + description: The homeRealmDiscoveryPolicies assigned to this service principal. operationId: servicePrincipals_ListRefHomeRealmDiscoveryPolicies parameters: - name: servicePrincipal-id @@ -14164,6 +14347,7 @@ paths: tags: - servicePrincipals.homeRealmDiscoveryPolicy summary: Create new navigation property ref to homeRealmDiscoveryPolicies for servicePrincipals + description: The homeRealmDiscoveryPolicies assigned to this service principal. operationId: servicePrincipals_CreateRefHomeRealmDiscoveryPolicies parameters: - name: servicePrincipal-id @@ -14439,6 +14623,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get memberOf from servicePrincipals + description: 'Roles that this service principal is a member of. HTTP Methods: GET Read-only. Nullable.' operationId: servicePrincipals_ListMemberOf parameters: - name: servicePrincipal-id @@ -14521,6 +14706,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ref of memberOf from servicePrincipals + description: 'Roles that this service principal is a member of. HTTP Methods: GET Read-only. Nullable.' operationId: servicePrincipals_ListRefMemberOf parameters: - name: servicePrincipal-id @@ -14577,6 +14763,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Create new navigation property ref to memberOf for servicePrincipals + description: 'Roles that this service principal is a member of. HTTP Methods: GET Read-only. Nullable.' operationId: servicePrincipals_CreateRefMemberOf parameters: - name: servicePrincipal-id @@ -14982,6 +15169,7 @@ paths: tags: - servicePrincipals.oAuth2PermissionGrant summary: Get oauth2PermissionGrants from servicePrincipals + description: Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. operationId: servicePrincipals_ListOauth2PermissionGrants parameters: - name: servicePrincipal-id @@ -15082,6 +15270,7 @@ paths: tags: - servicePrincipals.oAuth2PermissionGrant summary: Get ref of oauth2PermissionGrants from servicePrincipals + description: Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. operationId: servicePrincipals_ListRefOauth2PermissionGrants parameters: - name: servicePrincipal-id @@ -15150,6 +15339,7 @@ paths: tags: - servicePrincipals.oAuth2PermissionGrant summary: Create new navigation property ref to oauth2PermissionGrants for servicePrincipals + description: Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. operationId: servicePrincipals_CreateRefOauth2PermissionGrants parameters: - name: servicePrincipal-id @@ -15185,6 +15375,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ownedObjects from servicePrincipals + description: Directory objects that are owned by this service principal. Read-only. Nullable. operationId: servicePrincipals_ListOwnedObjects parameters: - name: servicePrincipal-id @@ -15267,6 +15458,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ref of ownedObjects from servicePrincipals + description: Directory objects that are owned by this service principal. Read-only. Nullable. operationId: servicePrincipals_ListRefOwnedObjects parameters: - name: servicePrincipal-id @@ -15323,6 +15515,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Create new navigation property ref to ownedObjects for servicePrincipals + description: Directory objects that are owned by this service principal. Read-only. Nullable. operationId: servicePrincipals_CreateRefOwnedObjects parameters: - name: servicePrincipal-id @@ -15358,6 +15551,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get owners from servicePrincipals + description: Directory objects that are owners of this servicePrincipal. The owners are a set of non-admin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. operationId: servicePrincipals_ListOwners parameters: - name: servicePrincipal-id @@ -15440,6 +15634,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ref of owners from servicePrincipals + description: Directory objects that are owners of this servicePrincipal. The owners are a set of non-admin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. operationId: servicePrincipals_ListRefOwners parameters: - name: servicePrincipal-id @@ -15496,6 +15691,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Create new navigation property ref to owners for servicePrincipals + description: Directory objects that are owners of this servicePrincipal. The owners are a set of non-admin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. operationId: servicePrincipals_CreateRefOwners parameters: - name: servicePrincipal-id @@ -16113,6 +16309,7 @@ paths: tags: - servicePrincipals.synchronization summary: Get schema from servicePrincipals + description: The synchronization schema configured for the job. operationId: servicePrincipals.synchronization.jobs_GetSchema parameters: - name: servicePrincipal-id @@ -16177,6 +16374,7 @@ paths: tags: - servicePrincipals.synchronization summary: Update the navigation property schema in servicePrincipals + description: The synchronization schema configured for the job. operationId: servicePrincipals.synchronization.jobs_UpdateSchema parameters: - name: servicePrincipal-id @@ -16210,6 +16408,7 @@ paths: tags: - servicePrincipals.synchronization summary: Delete navigation property schema for servicePrincipals + description: The synchronization schema configured for the job. operationId: servicePrincipals.synchronization.jobs_DeleteSchema parameters: - name: servicePrincipal-id @@ -16242,6 +16441,7 @@ paths: tags: - servicePrincipals.synchronization summary: Get directories from servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.jobs.schema_ListDirectories parameters: - name: servicePrincipal-id @@ -16345,6 +16545,7 @@ paths: tags: - servicePrincipals.synchronization summary: Create new navigation property to directories for servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.jobs.schema_CreateDirectories parameters: - name: servicePrincipal-id @@ -16383,6 +16584,7 @@ paths: tags: - servicePrincipals.synchronization summary: Get directories from servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.jobs.schema_GetDirectories parameters: - name: servicePrincipal-id @@ -16450,6 +16652,7 @@ paths: tags: - servicePrincipals.synchronization summary: Update the navigation property directories in servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.jobs.schema_UpdateDirectories parameters: - name: servicePrincipal-id @@ -16490,6 +16693,7 @@ paths: tags: - servicePrincipals.synchronization summary: Delete navigation property directories for servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.jobs.schema_DeleteDirectories parameters: - name: servicePrincipal-id @@ -17046,6 +17250,7 @@ paths: tags: - servicePrincipals.synchronization summary: Get schema from servicePrincipals + description: Default synchronization schema for the jobs based on this template. operationId: servicePrincipals.synchronization.templates_GetSchema parameters: - name: servicePrincipal-id @@ -17110,6 +17315,7 @@ paths: tags: - servicePrincipals.synchronization summary: Update the navigation property schema in servicePrincipals + description: Default synchronization schema for the jobs based on this template. operationId: servicePrincipals.synchronization.templates_UpdateSchema parameters: - name: servicePrincipal-id @@ -17143,6 +17349,7 @@ paths: tags: - servicePrincipals.synchronization summary: Delete navigation property schema for servicePrincipals + description: Default synchronization schema for the jobs based on this template. operationId: servicePrincipals.synchronization.templates_DeleteSchema parameters: - name: servicePrincipal-id @@ -17175,6 +17382,7 @@ paths: tags: - servicePrincipals.synchronization summary: Get directories from servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.templates.schema_ListDirectories parameters: - name: servicePrincipal-id @@ -17278,6 +17486,7 @@ paths: tags: - servicePrincipals.synchronization summary: Create new navigation property to directories for servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.templates.schema_CreateDirectories parameters: - name: servicePrincipal-id @@ -17316,6 +17525,7 @@ paths: tags: - servicePrincipals.synchronization summary: Get directories from servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.templates.schema_GetDirectories parameters: - name: servicePrincipal-id @@ -17383,6 +17593,7 @@ paths: tags: - servicePrincipals.synchronization summary: Update the navigation property directories in servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.templates.schema_UpdateDirectories parameters: - name: servicePrincipal-id @@ -17423,6 +17634,7 @@ paths: tags: - servicePrincipals.synchronization summary: Delete navigation property directories for servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.templates.schema_DeleteDirectories parameters: - name: servicePrincipal-id @@ -17614,6 +17826,7 @@ paths: tags: - servicePrincipals.tokenIssuancePolicy summary: Get tokenIssuancePolicies from servicePrincipals + description: The tokenIssuancePolicies assigned to this service principal. operationId: servicePrincipals_ListTokenIssuancePolicies parameters: - name: servicePrincipal-id @@ -17710,6 +17923,7 @@ paths: tags: - servicePrincipals.tokenIssuancePolicy summary: Get ref of tokenIssuancePolicies from servicePrincipals + description: The tokenIssuancePolicies assigned to this service principal. operationId: servicePrincipals_ListRefTokenIssuancePolicies parameters: - name: servicePrincipal-id @@ -17774,6 +17988,7 @@ paths: tags: - servicePrincipals.tokenIssuancePolicy summary: Create new navigation property ref to tokenIssuancePolicies for servicePrincipals + description: The tokenIssuancePolicies assigned to this service principal. operationId: servicePrincipals_CreateRefTokenIssuancePolicies parameters: - name: servicePrincipal-id @@ -17809,6 +18024,7 @@ paths: tags: - servicePrincipals.tokenLifetimePolicy summary: Get tokenLifetimePolicies from servicePrincipals + description: The tokenLifetimePolicies assigned to this service principal. operationId: servicePrincipals_ListTokenLifetimePolicies parameters: - name: servicePrincipal-id @@ -17905,6 +18121,7 @@ paths: tags: - servicePrincipals.tokenLifetimePolicy summary: Get ref of tokenLifetimePolicies from servicePrincipals + description: The tokenLifetimePolicies assigned to this service principal. operationId: servicePrincipals_ListRefTokenLifetimePolicies parameters: - name: servicePrincipal-id @@ -17969,6 +18186,7 @@ paths: tags: - servicePrincipals.tokenLifetimePolicy summary: Create new navigation property ref to tokenLifetimePolicies for servicePrincipals + description: The tokenLifetimePolicies assigned to this service principal. operationId: servicePrincipals_CreateRefTokenLifetimePolicies parameters: - name: servicePrincipal-id @@ -18300,6 +18518,7 @@ paths: tags: - users.appRoleAssignment summary: Get appRoleAssignments from users + description: Represents the app roles a user has been granted for an application. operationId: users_ListAppRoleAssignments parameters: - name: user-id @@ -18399,6 +18618,7 @@ paths: tags: - users.appRoleAssignment summary: Create new navigation property to appRoleAssignments for users + description: Represents the app roles a user has been granted for an application. operationId: users_CreateAppRoleAssignments parameters: - name: user-id @@ -18430,6 +18650,7 @@ paths: tags: - users.appRoleAssignment summary: Get appRoleAssignments from users + description: Represents the app roles a user has been granted for an application. operationId: users_GetAppRoleAssignments parameters: - name: user-id @@ -18491,6 +18712,7 @@ paths: tags: - users.appRoleAssignment summary: Update the navigation property appRoleAssignments in users + description: Represents the app roles a user has been granted for an application. operationId: users_UpdateAppRoleAssignments parameters: - name: user-id @@ -18524,6 +18746,7 @@ paths: tags: - users.appRoleAssignment summary: Delete navigation property appRoleAssignments for users + description: Represents the app roles a user has been granted for an application. operationId: users_DeleteAppRoleAssignments parameters: - name: user-id @@ -18599,6 +18822,7 @@ components: $ref: '#/components/schemas/microsoft.graph.informationalUrl' isDeviceOnlyAuthSupported: type: boolean + description: Specifies whether this application supports device authentication without a user. The default is false. nullable: true isFallbackPublicClient: type: boolean @@ -19176,7 +19400,7 @@ components: items: type: string nullable: true - description: 'The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer,Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.' + description: 'The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer, Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.' description: type: string description: A description of the application. @@ -19790,7 +20014,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -20191,10 +20415,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -21039,11 +21263,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object diff --git a/openApiDocs/beta/Bookings.yml b/openApiDocs/beta/Bookings.yml index da9e445ccb5..f480756d21a 100644 --- a/openApiDocs/beta/Bookings.yml +++ b/openApiDocs/beta/Bookings.yml @@ -148,6 +148,7 @@ paths: tags: - bookingBusinesses.bookingBusiness summary: Get entity from bookingBusinesses by key + description: Represents a Microsot Bookings Business. operationId: bookingBusinesses.bookingBusiness_GetBookingBusiness parameters: - name: bookingBusiness-id @@ -237,6 +238,7 @@ paths: tags: - bookingBusinesses.bookingBusiness summary: Update entity in bookingBusinesses + description: Represents a Microsot Bookings Business. operationId: bookingBusinesses.bookingBusiness_UpdateBookingBusiness parameters: - name: bookingBusiness-id @@ -263,6 +265,7 @@ paths: tags: - bookingBusinesses.bookingBusiness summary: Delete entity from bookingBusinesses + description: Represents a Microsot Bookings Business. operationId: bookingBusinesses.bookingBusiness_DeleteBookingBusiness parameters: - name: bookingBusiness-id @@ -288,6 +291,7 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Get appointments from bookingBusinesses + description: All the appointments of this business. Read-only. Nullable. operationId: bookingBusinesses_ListAppointments parameters: - name: bookingBusiness-id @@ -453,6 +457,7 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Create new navigation property to appointments for bookingBusinesses + description: All the appointments of this business. Read-only. Nullable. operationId: bookingBusinesses_CreateAppointments parameters: - name: bookingBusiness-id @@ -484,6 +489,7 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Get appointments from bookingBusinesses + description: All the appointments of this business. Read-only. Nullable. operationId: bookingBusinesses_GetAppointments parameters: - name: bookingBusiness-id @@ -567,6 +573,7 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Update the navigation property appointments in bookingBusinesses + description: All the appointments of this business. Read-only. Nullable. operationId: bookingBusinesses_UpdateAppointments parameters: - name: bookingBusiness-id @@ -600,6 +607,7 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Delete navigation property appointments for bookingBusinesses + description: All the appointments of this business. Read-only. Nullable. operationId: bookingBusinesses_DeleteAppointments parameters: - name: bookingBusiness-id @@ -632,6 +640,7 @@ paths: tags: - bookingBusinesses.Actions summary: Invoke action cancel + description: 'Cancels the giving booking appointment, sending a message to the involved parties.' operationId: bookingBusinesses.appointments_cancel parameters: - name: bookingBusiness-id @@ -672,6 +681,7 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Get calendarView from bookingBusinesses + description: The set of appointments of this business in a specified date range. Read-only. Nullable. operationId: bookingBusinesses_ListCalendarView parameters: - name: bookingBusiness-id @@ -849,6 +859,7 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Create new navigation property to calendarView for bookingBusinesses + description: The set of appointments of this business in a specified date range. Read-only. Nullable. operationId: bookingBusinesses_CreateCalendarView parameters: - name: bookingBusiness-id @@ -880,6 +891,7 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Get calendarView from bookingBusinesses + description: The set of appointments of this business in a specified date range. Read-only. Nullable. operationId: bookingBusinesses_GetCalendarView parameters: - name: bookingBusiness-id @@ -975,6 +987,7 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Update the navigation property calendarView in bookingBusinesses + description: The set of appointments of this business in a specified date range. Read-only. Nullable. operationId: bookingBusinesses_UpdateCalendarView parameters: - name: bookingBusiness-id @@ -1008,6 +1021,7 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Delete navigation property calendarView for bookingBusinesses + description: The set of appointments of this business in a specified date range. Read-only. Nullable. operationId: bookingBusinesses_DeleteCalendarView parameters: - name: bookingBusiness-id @@ -1040,6 +1054,7 @@ paths: tags: - bookingBusinesses.Actions summary: Invoke action cancel + description: 'Cancels the giving booking appointment, sending a message to the involved parties.' operationId: bookingBusinesses.calendarView_cancel parameters: - name: bookingBusiness-id @@ -1080,6 +1095,7 @@ paths: tags: - bookingBusinesses.bookingCustomer summary: Get customers from bookingBusinesses + description: All the customers of this business. Read-only. Nullable. operationId: bookingBusinesses_ListCustomers parameters: - name: bookingBusiness-id @@ -1164,6 +1180,7 @@ paths: tags: - bookingBusinesses.bookingCustomer summary: Create new navigation property to customers for bookingBusinesses + description: All the customers of this business. Read-only. Nullable. operationId: bookingBusinesses_CreateCustomers parameters: - name: bookingBusiness-id @@ -1195,6 +1212,7 @@ paths: tags: - bookingBusinesses.bookingCustomer summary: Get customers from bookingBusinesses + description: All the customers of this business. Read-only. Nullable. operationId: bookingBusinesses_GetCustomers parameters: - name: bookingBusiness-id @@ -1251,6 +1269,7 @@ paths: tags: - bookingBusinesses.bookingCustomer summary: Update the navigation property customers in bookingBusinesses + description: All the customers of this business. Read-only. Nullable. operationId: bookingBusinesses_UpdateCustomers parameters: - name: bookingBusiness-id @@ -1284,6 +1303,7 @@ paths: tags: - bookingBusinesses.bookingCustomer summary: Delete navigation property customers for bookingBusinesses + description: All the customers of this business. Read-only. Nullable. operationId: bookingBusinesses_DeleteCustomers parameters: - name: bookingBusiness-id @@ -1316,6 +1336,7 @@ paths: tags: - bookingBusinesses.Actions summary: Invoke action publish + description: Makes the scheduling page of this business available to the general public. operationId: bookingBusinesses_publish parameters: - name: bookingBusiness-id @@ -1336,6 +1357,7 @@ paths: tags: - bookingBusinesses.Actions summary: Invoke action unpublish + description: Prevents the general public from seeing the scheduling page of this business. operationId: bookingBusinesses_unpublish parameters: - name: bookingBusiness-id @@ -1356,6 +1378,7 @@ paths: tags: - bookingBusinesses.bookingService summary: Get services from bookingBusinesses + description: All the services offered by this business. Read-only. Nullable. operationId: bookingBusinesses_ListServices parameters: - name: bookingBusiness-id @@ -1479,6 +1502,7 @@ paths: tags: - bookingBusinesses.bookingService summary: Create new navigation property to services for bookingBusinesses + description: All the services offered by this business. Read-only. Nullable. operationId: bookingBusinesses_CreateServices parameters: - name: bookingBusiness-id @@ -1510,6 +1534,7 @@ paths: tags: - bookingBusinesses.bookingService summary: Get services from bookingBusinesses + description: All the services offered by this business. Read-only. Nullable. operationId: bookingBusinesses_GetServices parameters: - name: bookingBusiness-id @@ -1579,6 +1604,7 @@ paths: tags: - bookingBusinesses.bookingService summary: Update the navigation property services in bookingBusinesses + description: All the services offered by this business. Read-only. Nullable. operationId: bookingBusinesses_UpdateServices parameters: - name: bookingBusiness-id @@ -1612,6 +1638,7 @@ paths: tags: - bookingBusinesses.bookingService summary: Delete navigation property services for bookingBusinesses + description: All the services offered by this business. Read-only. Nullable. operationId: bookingBusinesses_DeleteServices parameters: - name: bookingBusiness-id @@ -1644,6 +1671,7 @@ paths: tags: - bookingBusinesses.bookingStaffMember summary: Get staffMembers from bookingBusinesses + description: All the staff members that provide services in this business. Read-only. Nullable. operationId: bookingBusinesses_ListStaffMembers parameters: - name: bookingBusiness-id @@ -1743,6 +1771,7 @@ paths: tags: - bookingBusinesses.bookingStaffMember summary: Create new navigation property to staffMembers for bookingBusinesses + description: All the staff members that provide services in this business. Read-only. Nullable. operationId: bookingBusinesses_CreateStaffMembers parameters: - name: bookingBusiness-id @@ -1774,6 +1803,7 @@ paths: tags: - bookingBusinesses.bookingStaffMember summary: Get staffMembers from bookingBusinesses + description: All the staff members that provide services in this business. Read-only. Nullable. operationId: bookingBusinesses_GetStaffMembers parameters: - name: bookingBusiness-id @@ -1835,6 +1865,7 @@ paths: tags: - bookingBusinesses.bookingStaffMember summary: Update the navigation property staffMembers in bookingBusinesses + description: All the staff members that provide services in this business. Read-only. Nullable. operationId: bookingBusinesses_UpdateStaffMembers parameters: - name: bookingBusiness-id @@ -1868,6 +1899,7 @@ paths: tags: - bookingBusinesses.bookingStaffMember summary: Delete navigation property staffMembers for bookingBusinesses + description: All the staff members that provide services in this business. Read-only. Nullable. operationId: bookingBusinesses_DeleteStaffMembers parameters: - name: bookingBusiness-id diff --git a/openApiDocs/beta/Calendar.yml b/openApiDocs/beta/Calendar.yml index 394e9823cde..85ce8879d1d 100644 --- a/openApiDocs/beta/Calendar.yml +++ b/openApiDocs/beta/Calendar.yml @@ -11,6 +11,7 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The group's calendar. Read-only. operationId: groups_GetCalendar parameters: - name: group-id @@ -105,6 +106,7 @@ paths: tags: - groups.calendar summary: Update the navigation property calendar in groups + description: The group's calendar. Read-only. operationId: groups_UpdateCalendar parameters: - name: group-id @@ -131,6 +133,7 @@ paths: tags: - groups.calendar summary: Delete navigation property calendar for groups + description: The group's calendar. Read-only. operationId: groups_DeleteCalendar parameters: - name: group-id @@ -156,6 +159,7 @@ paths: tags: - groups.calendar summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_ListCalendarPermissions parameters: - name: group-id @@ -249,6 +253,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_CreateCalendarPermissions parameters: - name: group-id @@ -280,6 +285,7 @@ paths: tags: - groups.calendar summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_GetCalendarPermissions parameters: - name: group-id @@ -339,6 +345,7 @@ paths: tags: - groups.calendar summary: Update the navigation property calendarPermissions in groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_UpdateCalendarPermissions parameters: - name: group-id @@ -372,6 +379,7 @@ paths: tags: - groups.calendar summary: Delete navigation property calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_DeleteCalendarPermissions parameters: - name: group-id @@ -404,6 +412,7 @@ paths: tags: - groups.calendar summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_ListCalendarView parameters: - name: group-id @@ -634,6 +643,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_CreateCalendarView parameters: - name: group-id @@ -665,6 +675,7 @@ paths: tags: - groups.calendar summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_GetCalendarView parameters: - name: group-id @@ -823,6 +834,7 @@ paths: tags: - groups.calendar summary: Update the navigation property calendarView in groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_UpdateCalendarView parameters: - name: group-id @@ -856,6 +868,7 @@ paths: tags: - groups.calendar summary: Delete navigation property calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_DeleteCalendarView parameters: - name: group-id @@ -888,6 +901,7 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_ListAttachments parameters: - name: group-id @@ -988,6 +1002,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_CreateAttachments parameters: - name: group-id @@ -1026,6 +1041,7 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_GetAttachments parameters: - name: group-id @@ -1092,6 +1108,7 @@ paths: tags: - groups.calendar summary: Update the navigation property attachments in groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_UpdateAttachments parameters: - name: group-id @@ -1132,6 +1149,7 @@ paths: tags: - groups.calendar summary: Delete navigation property attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_DeleteAttachments parameters: - name: group-id @@ -1171,6 +1189,7 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.calendarView_GetCalendar parameters: - name: group-id @@ -1277,6 +1296,7 @@ paths: tags: - groups.calendar summary: Update the navigation property calendar in groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.calendarView_UpdateCalendar parameters: - name: group-id @@ -1310,6 +1330,7 @@ paths: tags: - groups.calendar summary: Delete navigation property calendar for groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.calendarView_DeleteCalendar parameters: - name: group-id @@ -1844,6 +1865,7 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_ListExtensions parameters: - name: group-id @@ -1929,6 +1951,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_CreateExtensions parameters: - name: group-id @@ -1967,6 +1990,7 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_GetExtensions parameters: - name: group-id @@ -2028,6 +2052,7 @@ paths: tags: - groups.calendar summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_UpdateExtensions parameters: - name: group-id @@ -2068,6 +2093,7 @@ paths: tags: - groups.calendar summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_DeleteExtensions parameters: - name: group-id @@ -2107,6 +2133,7 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_ListInstances parameters: - name: group-id @@ -2332,6 +2359,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_CreateInstances parameters: - name: group-id @@ -2370,6 +2398,7 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_GetInstances parameters: - name: group-id @@ -2530,6 +2559,7 @@ paths: tags: - groups.calendar summary: Update the navigation property instances in groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_UpdateInstances parameters: - name: group-id @@ -2570,6 +2600,7 @@ paths: tags: - groups.calendar summary: Delete navigation property instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_DeleteInstances parameters: - name: group-id @@ -2609,6 +2640,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_ListMultiValueExtendedProperties parameters: - name: group-id @@ -2697,6 +2729,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -2735,6 +2768,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_GetMultiValueExtendedProperties parameters: - name: group-id @@ -2797,6 +2831,7 @@ paths: tags: - groups.calendar summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -2837,6 +2872,7 @@ paths: tags: - groups.calendar summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -2876,6 +2912,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_ListSingleValueExtendedProperties parameters: - name: group-id @@ -2964,6 +3001,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -3002,6 +3040,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_GetSingleValueExtendedProperties parameters: - name: group-id @@ -3064,6 +3103,7 @@ paths: tags: - groups.calendar summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -3104,6 +3144,7 @@ paths: tags: - groups.calendar summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -3143,6 +3184,7 @@ paths: tags: - groups.calendar summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_ListEvents parameters: - name: group-id @@ -3361,6 +3403,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_CreateEvents parameters: - name: group-id @@ -3392,6 +3435,7 @@ paths: tags: - groups.calendar summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_GetEvents parameters: - name: group-id @@ -3538,6 +3582,7 @@ paths: tags: - groups.calendar summary: Update the navigation property events in groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_UpdateEvents parameters: - name: group-id @@ -3571,6 +3616,7 @@ paths: tags: - groups.calendar summary: Delete navigation property events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_DeleteEvents parameters: - name: group-id @@ -3603,6 +3649,7 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_ListAttachments parameters: - name: group-id @@ -3703,6 +3750,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_CreateAttachments parameters: - name: group-id @@ -3741,6 +3789,7 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_GetAttachments parameters: - name: group-id @@ -3807,6 +3856,7 @@ paths: tags: - groups.calendar summary: Update the navigation property attachments in groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_UpdateAttachments parameters: - name: group-id @@ -3847,6 +3897,7 @@ paths: tags: - groups.calendar summary: Delete navigation property attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_DeleteAttachments parameters: - name: group-id @@ -3886,6 +3937,7 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events_GetCalendar parameters: - name: group-id @@ -3992,6 +4044,7 @@ paths: tags: - groups.calendar summary: Update the navigation property calendar in groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events_UpdateCalendar parameters: - name: group-id @@ -4025,6 +4078,7 @@ paths: tags: - groups.calendar summary: Delete navigation property calendar for groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events_DeleteCalendar parameters: - name: group-id @@ -4559,6 +4613,7 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_ListExtensions parameters: - name: group-id @@ -4644,6 +4699,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_CreateExtensions parameters: - name: group-id @@ -4682,6 +4738,7 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_GetExtensions parameters: - name: group-id @@ -4743,6 +4800,7 @@ paths: tags: - groups.calendar summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_UpdateExtensions parameters: - name: group-id @@ -4783,6 +4841,7 @@ paths: tags: - groups.calendar summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_DeleteExtensions parameters: - name: group-id @@ -4822,6 +4881,7 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_ListInstances parameters: - name: group-id @@ -5047,6 +5107,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_CreateInstances parameters: - name: group-id @@ -5085,6 +5146,7 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_GetInstances parameters: - name: group-id @@ -5245,6 +5307,7 @@ paths: tags: - groups.calendar summary: Update the navigation property instances in groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_UpdateInstances parameters: - name: group-id @@ -5285,6 +5348,7 @@ paths: tags: - groups.calendar summary: Delete navigation property instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_DeleteInstances parameters: - name: group-id @@ -5324,6 +5388,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_ListMultiValueExtendedProperties parameters: - name: group-id @@ -5412,6 +5477,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -5450,6 +5516,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_GetMultiValueExtendedProperties parameters: - name: group-id @@ -5512,6 +5579,7 @@ paths: tags: - groups.calendar summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -5552,6 +5620,7 @@ paths: tags: - groups.calendar summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -5591,6 +5660,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_ListSingleValueExtendedProperties parameters: - name: group-id @@ -5679,6 +5749,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -5717,6 +5788,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_GetSingleValueExtendedProperties parameters: - name: group-id @@ -5779,6 +5851,7 @@ paths: tags: - groups.calendar summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -5819,6 +5892,7 @@ paths: tags: - groups.calendar summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -5858,6 +5932,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_ListMultiValueExtendedProperties parameters: - name: group-id @@ -5939,6 +6014,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -5970,6 +6046,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_GetMultiValueExtendedProperties parameters: - name: group-id @@ -6025,6 +6102,7 @@ paths: tags: - groups.calendar summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -6058,6 +6136,7 @@ paths: tags: - groups.calendar summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -6090,6 +6169,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_ListSingleValueExtendedProperties parameters: - name: group-id @@ -6171,6 +6251,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -6202,6 +6283,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_GetSingleValueExtendedProperties parameters: - name: group-id @@ -6257,6 +6339,7 @@ paths: tags: - groups.calendar summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -6290,6 +6373,7 @@ paths: tags: - groups.calendar summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -6322,6 +6406,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Read-only. operationId: groups_ListCalendarView parameters: - name: group-id @@ -6552,6 +6637,7 @@ paths: tags: - groups.event summary: Create new navigation property to calendarView for groups + description: The calendar view for the calendar. Read-only. operationId: groups_CreateCalendarView parameters: - name: group-id @@ -6583,6 +6669,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Read-only. operationId: groups_GetCalendarView parameters: - name: group-id @@ -6741,6 +6828,7 @@ paths: tags: - groups.event summary: Update the navigation property calendarView in groups + description: The calendar view for the calendar. Read-only. operationId: groups_UpdateCalendarView parameters: - name: group-id @@ -6774,6 +6862,7 @@ paths: tags: - groups.event summary: Delete navigation property calendarView for groups + description: The calendar view for the calendar. Read-only. operationId: groups_DeleteCalendarView parameters: - name: group-id @@ -6806,6 +6895,7 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_ListAttachments parameters: - name: group-id @@ -6906,6 +6996,7 @@ paths: tags: - groups.event summary: Create new navigation property to attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_CreateAttachments parameters: - name: group-id @@ -6944,6 +7035,7 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_GetAttachments parameters: - name: group-id @@ -7010,6 +7102,7 @@ paths: tags: - groups.event summary: Update the navigation property attachments in groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_UpdateAttachments parameters: - name: group-id @@ -7050,6 +7143,7 @@ paths: tags: - groups.event summary: Delete navigation property attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_DeleteAttachments parameters: - name: group-id @@ -7089,6 +7183,7 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendarView_GetCalendar parameters: - name: group-id @@ -7195,6 +7290,7 @@ paths: tags: - groups.event summary: Update the navigation property calendar in groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendarView_UpdateCalendar parameters: - name: group-id @@ -7228,6 +7324,7 @@ paths: tags: - groups.event summary: Delete navigation property calendar for groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendarView_DeleteCalendar parameters: - name: group-id @@ -7260,6 +7357,7 @@ paths: tags: - groups.event summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendarView.calendar_ListCalendarPermissions parameters: - name: group-id @@ -7360,6 +7458,7 @@ paths: tags: - groups.event summary: Create new navigation property to calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendarView.calendar_CreateCalendarPermissions parameters: - name: group-id @@ -7398,6 +7497,7 @@ paths: tags: - groups.event summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendarView.calendar_GetCalendarPermissions parameters: - name: group-id @@ -7464,6 +7564,7 @@ paths: tags: - groups.event summary: Update the navigation property calendarPermissions in groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendarView.calendar_UpdateCalendarPermissions parameters: - name: group-id @@ -7504,6 +7605,7 @@ paths: tags: - groups.event summary: Delete navigation property calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendarView.calendar_DeleteCalendarPermissions parameters: - name: group-id @@ -7543,6 +7645,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_ListCalendarView parameters: - name: group-id @@ -7768,6 +7871,7 @@ paths: tags: - groups.event summary: Create new navigation property to calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_CreateCalendarView parameters: - name: group-id @@ -7806,6 +7910,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_GetCalendarView parameters: - name: group-id @@ -7966,6 +8071,7 @@ paths: tags: - groups.event summary: Update the navigation property calendarView in groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_UpdateCalendarView parameters: - name: group-id @@ -8006,6 +8112,7 @@ paths: tags: - groups.event summary: Delete navigation property calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_DeleteCalendarView parameters: - name: group-id @@ -8045,6 +8152,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_ListEvents parameters: - name: group-id @@ -8270,6 +8378,7 @@ paths: tags: - groups.event summary: Create new navigation property to events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_CreateEvents parameters: - name: group-id @@ -8308,6 +8417,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_GetEvents parameters: - name: group-id @@ -8468,6 +8578,7 @@ paths: tags: - groups.event summary: Update the navigation property events in groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_UpdateEvents parameters: - name: group-id @@ -8508,6 +8619,7 @@ paths: tags: - groups.event summary: Delete navigation property events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_DeleteEvents parameters: - name: group-id @@ -8547,6 +8659,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_ListMultiValueExtendedProperties parameters: - name: group-id @@ -8635,6 +8748,7 @@ paths: tags: - groups.event summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -8673,6 +8787,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_GetMultiValueExtendedProperties parameters: - name: group-id @@ -8735,6 +8850,7 @@ paths: tags: - groups.event summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -8775,6 +8891,7 @@ paths: tags: - groups.event summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -8814,6 +8931,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_ListSingleValueExtendedProperties parameters: - name: group-id @@ -8902,6 +9020,7 @@ paths: tags: - groups.event summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -8940,6 +9059,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_GetSingleValueExtendedProperties parameters: - name: group-id @@ -9002,6 +9122,7 @@ paths: tags: - groups.event summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -9042,6 +9163,7 @@ paths: tags: - groups.event summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -9583,6 +9705,7 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_ListExtensions parameters: - name: group-id @@ -9668,6 +9791,7 @@ paths: tags: - groups.event summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_CreateExtensions parameters: - name: group-id @@ -9706,6 +9830,7 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_GetExtensions parameters: - name: group-id @@ -9767,6 +9892,7 @@ paths: tags: - groups.event summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_UpdateExtensions parameters: - name: group-id @@ -9807,6 +9933,7 @@ paths: tags: - groups.event summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_DeleteExtensions parameters: - name: group-id @@ -9846,6 +9973,7 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_ListInstances parameters: - name: group-id @@ -10071,6 +10199,7 @@ paths: tags: - groups.event summary: Create new navigation property to instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_CreateInstances parameters: - name: group-id @@ -10109,6 +10238,7 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_GetInstances parameters: - name: group-id @@ -10269,6 +10399,7 @@ paths: tags: - groups.event summary: Update the navigation property instances in groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_UpdateInstances parameters: - name: group-id @@ -10309,6 +10440,7 @@ paths: tags: - groups.event summary: Delete navigation property instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_DeleteInstances parameters: - name: group-id @@ -10348,6 +10480,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_ListMultiValueExtendedProperties parameters: - name: group-id @@ -10436,6 +10569,7 @@ paths: tags: - groups.event summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -10474,6 +10608,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_GetMultiValueExtendedProperties parameters: - name: group-id @@ -10536,6 +10671,7 @@ paths: tags: - groups.event summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -10576,6 +10712,7 @@ paths: tags: - groups.event summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -10615,6 +10752,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_ListSingleValueExtendedProperties parameters: - name: group-id @@ -10703,6 +10841,7 @@ paths: tags: - groups.event summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -10741,6 +10880,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_GetSingleValueExtendedProperties parameters: - name: group-id @@ -10803,6 +10943,7 @@ paths: tags: - groups.event summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -10843,6 +10984,7 @@ paths: tags: - groups.event summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -10882,6 +11024,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The group's events. operationId: groups_ListEvents parameters: - name: group-id @@ -11100,6 +11243,7 @@ paths: tags: - groups.event summary: Create new navigation property to events for groups + description: The group's events. operationId: groups_CreateEvents parameters: - name: group-id @@ -11131,6 +11275,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The group's events. operationId: groups_GetEvents parameters: - name: group-id @@ -11277,6 +11422,7 @@ paths: tags: - groups.event summary: Update the navigation property events in groups + description: The group's events. operationId: groups_UpdateEvents parameters: - name: group-id @@ -11310,6 +11456,7 @@ paths: tags: - groups.event summary: Delete navigation property events for groups + description: The group's events. operationId: groups_DeleteEvents parameters: - name: group-id @@ -11342,6 +11489,7 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_ListAttachments parameters: - name: group-id @@ -11442,6 +11590,7 @@ paths: tags: - groups.event summary: Create new navigation property to attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_CreateAttachments parameters: - name: group-id @@ -11480,6 +11629,7 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_GetAttachments parameters: - name: group-id @@ -11546,6 +11696,7 @@ paths: tags: - groups.event summary: Update the navigation property attachments in groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_UpdateAttachments parameters: - name: group-id @@ -11586,6 +11737,7 @@ paths: tags: - groups.event summary: Delete navigation property attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_DeleteAttachments parameters: - name: group-id @@ -11625,6 +11777,7 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events_GetCalendar parameters: - name: group-id @@ -11731,6 +11884,7 @@ paths: tags: - groups.event summary: Update the navigation property calendar in groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events_UpdateCalendar parameters: - name: group-id @@ -11764,6 +11918,7 @@ paths: tags: - groups.event summary: Delete navigation property calendar for groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events_DeleteCalendar parameters: - name: group-id @@ -11796,6 +11951,7 @@ paths: tags: - groups.event summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.events.calendar_ListCalendarPermissions parameters: - name: group-id @@ -11896,6 +12052,7 @@ paths: tags: - groups.event summary: Create new navigation property to calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.events.calendar_CreateCalendarPermissions parameters: - name: group-id @@ -11934,6 +12091,7 @@ paths: tags: - groups.event summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.events.calendar_GetCalendarPermissions parameters: - name: group-id @@ -12000,6 +12158,7 @@ paths: tags: - groups.event summary: Update the navigation property calendarPermissions in groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.events.calendar_UpdateCalendarPermissions parameters: - name: group-id @@ -12040,6 +12199,7 @@ paths: tags: - groups.event summary: Delete navigation property calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.events.calendar_DeleteCalendarPermissions parameters: - name: group-id @@ -12079,6 +12239,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.events.calendar_ListCalendarView parameters: - name: group-id @@ -12304,6 +12465,7 @@ paths: tags: - groups.event summary: Create new navigation property to calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.events.calendar_CreateCalendarView parameters: - name: group-id @@ -12342,6 +12504,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.events.calendar_GetCalendarView parameters: - name: group-id @@ -12502,6 +12665,7 @@ paths: tags: - groups.event summary: Update the navigation property calendarView in groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.events.calendar_UpdateCalendarView parameters: - name: group-id @@ -12542,6 +12706,7 @@ paths: tags: - groups.event summary: Delete navigation property calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.events.calendar_DeleteCalendarView parameters: - name: group-id @@ -12581,6 +12746,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.events.calendar_ListEvents parameters: - name: group-id @@ -12806,6 +12972,7 @@ paths: tags: - groups.event summary: Create new navigation property to events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.events.calendar_CreateEvents parameters: - name: group-id @@ -12844,6 +13011,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.events.calendar_GetEvents parameters: - name: group-id @@ -13004,6 +13172,7 @@ paths: tags: - groups.event summary: Update the navigation property events in groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.events.calendar_UpdateEvents parameters: - name: group-id @@ -13044,6 +13213,7 @@ paths: tags: - groups.event summary: Delete navigation property events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.events.calendar_DeleteEvents parameters: - name: group-id @@ -13083,6 +13253,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_ListMultiValueExtendedProperties parameters: - name: group-id @@ -13171,6 +13342,7 @@ paths: tags: - groups.event summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -13209,6 +13381,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_GetMultiValueExtendedProperties parameters: - name: group-id @@ -13271,6 +13444,7 @@ paths: tags: - groups.event summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -13311,6 +13485,7 @@ paths: tags: - groups.event summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -13350,6 +13525,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_ListSingleValueExtendedProperties parameters: - name: group-id @@ -13438,6 +13614,7 @@ paths: tags: - groups.event summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -13476,6 +13653,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_GetSingleValueExtendedProperties parameters: - name: group-id @@ -13538,6 +13716,7 @@ paths: tags: - groups.event summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -13578,6 +13757,7 @@ paths: tags: - groups.event summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -14119,6 +14299,7 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_ListExtensions parameters: - name: group-id @@ -14204,6 +14385,7 @@ paths: tags: - groups.event summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_CreateExtensions parameters: - name: group-id @@ -14242,6 +14424,7 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_GetExtensions parameters: - name: group-id @@ -14303,6 +14486,7 @@ paths: tags: - groups.event summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_UpdateExtensions parameters: - name: group-id @@ -14343,6 +14527,7 @@ paths: tags: - groups.event summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_DeleteExtensions parameters: - name: group-id @@ -14382,6 +14567,7 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_ListInstances parameters: - name: group-id @@ -14607,6 +14793,7 @@ paths: tags: - groups.event summary: Create new navigation property to instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_CreateInstances parameters: - name: group-id @@ -14645,6 +14832,7 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_GetInstances parameters: - name: group-id @@ -14805,6 +14993,7 @@ paths: tags: - groups.event summary: Update the navigation property instances in groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_UpdateInstances parameters: - name: group-id @@ -14845,6 +15034,7 @@ paths: tags: - groups.event summary: Delete navigation property instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_DeleteInstances parameters: - name: group-id @@ -14884,6 +15074,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_ListMultiValueExtendedProperties parameters: - name: group-id @@ -14972,6 +15163,7 @@ paths: tags: - groups.event summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -15010,6 +15202,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_GetMultiValueExtendedProperties parameters: - name: group-id @@ -15072,6 +15265,7 @@ paths: tags: - groups.event summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -15112,6 +15306,7 @@ paths: tags: - groups.event summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -15151,6 +15346,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_ListSingleValueExtendedProperties parameters: - name: group-id @@ -15239,6 +15435,7 @@ paths: tags: - groups.event summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -15277,6 +15474,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_GetSingleValueExtendedProperties parameters: - name: group-id @@ -15339,6 +15537,7 @@ paths: tags: - groups.event summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -15379,6 +15578,7 @@ paths: tags: - groups.event summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -15626,6 +15826,7 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The user's primary calendar. Read-only. operationId: users_GetCalendar parameters: - name: user-id @@ -15720,6 +15921,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendar in users + description: The user's primary calendar. Read-only. operationId: users_UpdateCalendar parameters: - name: user-id @@ -15746,6 +15948,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendar for users + description: The user's primary calendar. Read-only. operationId: users_DeleteCalendar parameters: - name: user-id @@ -15771,6 +15974,7 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_ListCalendarPermissions parameters: - name: user-id @@ -15864,6 +16068,7 @@ paths: tags: - users.calendar summary: Create new navigation property to calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_CreateCalendarPermissions parameters: - name: user-id @@ -15895,6 +16100,7 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_GetCalendarPermissions parameters: - name: user-id @@ -15954,6 +16160,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendarPermissions in users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_UpdateCalendarPermissions parameters: - name: user-id @@ -15987,6 +16194,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_DeleteCalendarPermissions parameters: - name: user-id @@ -16019,6 +16227,7 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_ListCalendarView parameters: - name: user-id @@ -16249,6 +16458,7 @@ paths: tags: - users.calendar summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_CreateCalendarView parameters: - name: user-id @@ -16280,6 +16490,7 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_GetCalendarView parameters: - name: user-id @@ -16438,6 +16649,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_UpdateCalendarView parameters: - name: user-id @@ -16471,6 +16683,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_DeleteCalendarView parameters: - name: user-id @@ -16503,6 +16716,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_ListAttachments parameters: - name: user-id @@ -16603,6 +16817,7 @@ paths: tags: - users.calendar summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_CreateAttachments parameters: - name: user-id @@ -16641,6 +16856,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_GetAttachments parameters: - name: user-id @@ -16707,6 +16923,7 @@ paths: tags: - users.calendar summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_UpdateAttachments parameters: - name: user-id @@ -16747,6 +16964,7 @@ paths: tags: - users.calendar summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_DeleteAttachments parameters: - name: user-id @@ -16786,6 +17004,7 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.calendarView_GetCalendar parameters: - name: user-id @@ -16892,6 +17111,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.calendarView_UpdateCalendar parameters: - name: user-id @@ -16925,6 +17145,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.calendarView_DeleteCalendar parameters: - name: user-id @@ -17459,6 +17680,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_ListExtensions parameters: - name: user-id @@ -17544,6 +17766,7 @@ paths: tags: - users.calendar summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_CreateExtensions parameters: - name: user-id @@ -17582,6 +17805,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_GetExtensions parameters: - name: user-id @@ -17643,6 +17867,7 @@ paths: tags: - users.calendar summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_UpdateExtensions parameters: - name: user-id @@ -17683,6 +17908,7 @@ paths: tags: - users.calendar summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_DeleteExtensions parameters: - name: user-id @@ -17722,6 +17948,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_ListInstances parameters: - name: user-id @@ -17947,6 +18174,7 @@ paths: tags: - users.calendar summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_CreateInstances parameters: - name: user-id @@ -17985,6 +18213,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_GetInstances parameters: - name: user-id @@ -18145,6 +18374,7 @@ paths: tags: - users.calendar summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_UpdateInstances parameters: - name: user-id @@ -18185,6 +18415,7 @@ paths: tags: - users.calendar summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_DeleteInstances parameters: - name: user-id @@ -18224,6 +18455,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id @@ -18312,6 +18544,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -18350,6 +18583,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id @@ -18412,6 +18646,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -18452,6 +18687,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -18491,6 +18727,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id @@ -18579,6 +18816,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -18617,6 +18855,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id @@ -18679,6 +18918,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -18719,6 +18959,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -18758,6 +18999,7 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_ListEvents parameters: - name: user-id @@ -18976,6 +19218,7 @@ paths: tags: - users.calendar summary: Create new navigation property to events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_CreateEvents parameters: - name: user-id @@ -19007,6 +19250,7 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_GetEvents parameters: - name: user-id @@ -19153,6 +19397,7 @@ paths: tags: - users.calendar summary: Update the navigation property events in users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_UpdateEvents parameters: - name: user-id @@ -19186,6 +19431,7 @@ paths: tags: - users.calendar summary: Delete navigation property events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_DeleteEvents parameters: - name: user-id @@ -19218,6 +19464,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_ListAttachments parameters: - name: user-id @@ -19318,6 +19565,7 @@ paths: tags: - users.calendar summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_CreateAttachments parameters: - name: user-id @@ -19356,6 +19604,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_GetAttachments parameters: - name: user-id @@ -19422,6 +19671,7 @@ paths: tags: - users.calendar summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_UpdateAttachments parameters: - name: user-id @@ -19462,6 +19712,7 @@ paths: tags: - users.calendar summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_DeleteAttachments parameters: - name: user-id @@ -19501,6 +19752,7 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.events_GetCalendar parameters: - name: user-id @@ -19607,6 +19859,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.events_UpdateCalendar parameters: - name: user-id @@ -19640,6 +19893,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.events_DeleteCalendar parameters: - name: user-id @@ -20174,6 +20428,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_ListExtensions parameters: - name: user-id @@ -20259,6 +20514,7 @@ paths: tags: - users.calendar summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_CreateExtensions parameters: - name: user-id @@ -20297,6 +20553,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_GetExtensions parameters: - name: user-id @@ -20358,6 +20615,7 @@ paths: tags: - users.calendar summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_UpdateExtensions parameters: - name: user-id @@ -20398,6 +20656,7 @@ paths: tags: - users.calendar summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_DeleteExtensions parameters: - name: user-id @@ -20437,6 +20696,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_ListInstances parameters: - name: user-id @@ -20662,6 +20922,7 @@ paths: tags: - users.calendar summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_CreateInstances parameters: - name: user-id @@ -20700,6 +20961,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_GetInstances parameters: - name: user-id @@ -20860,6 +21122,7 @@ paths: tags: - users.calendar summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_UpdateInstances parameters: - name: user-id @@ -20900,6 +21163,7 @@ paths: tags: - users.calendar summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_DeleteInstances parameters: - name: user-id @@ -20939,6 +21203,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_ListMultiValueExtendedProperties parameters: - name: user-id @@ -21027,6 +21292,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -21065,6 +21331,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_GetMultiValueExtendedProperties parameters: - name: user-id @@ -21127,6 +21394,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -21167,6 +21435,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -21206,6 +21475,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_ListSingleValueExtendedProperties parameters: - name: user-id @@ -21294,6 +21564,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -21332,6 +21603,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_GetSingleValueExtendedProperties parameters: - name: user-id @@ -21394,6 +21666,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -21434,6 +21707,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -21473,6 +21747,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_ListMultiValueExtendedProperties parameters: - name: user-id @@ -21554,6 +21829,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -21585,6 +21861,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_GetMultiValueExtendedProperties parameters: - name: user-id @@ -21640,6 +21917,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -21673,6 +21951,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -21705,6 +21984,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_ListSingleValueExtendedProperties parameters: - name: user-id @@ -21786,6 +22066,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -21817,6 +22098,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_GetSingleValueExtendedProperties parameters: - name: user-id @@ -21872,6 +22154,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -21905,6 +22188,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -21937,6 +22221,7 @@ paths: tags: - users.calendarGroup summary: Get calendarGroups from users + description: The user's calendar groups. Read-only. Nullable. operationId: users_ListCalendarGroups parameters: - name: user-id @@ -22026,6 +22311,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to calendarGroups for users + description: The user's calendar groups. Read-only. Nullable. operationId: users_CreateCalendarGroups parameters: - name: user-id @@ -22057,6 +22343,7 @@ paths: tags: - users.calendarGroup summary: Get calendarGroups from users + description: The user's calendar groups. Read-only. Nullable. operationId: users_GetCalendarGroups parameters: - name: user-id @@ -22122,6 +22409,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendarGroups in users + description: The user's calendar groups. Read-only. Nullable. operationId: users_UpdateCalendarGroups parameters: - name: user-id @@ -22155,6 +22443,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendarGroups for users + description: The user's calendar groups. Read-only. Nullable. operationId: users_DeleteCalendarGroups parameters: - name: user-id @@ -22187,6 +22476,7 @@ paths: tags: - users.calendarGroup summary: Get calendars from users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_ListCalendars parameters: - name: user-id @@ -22330,6 +22620,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to calendars for users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_CreateCalendars parameters: - name: user-id @@ -22368,6 +22659,7 @@ paths: tags: - users.calendarGroup summary: Get calendars from users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_GetCalendars parameters: - name: user-id @@ -22486,6 +22778,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendars in users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_UpdateCalendars parameters: - name: user-id @@ -22526,6 +22819,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendars for users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_DeleteCalendars parameters: - name: user-id @@ -22565,6 +22859,7 @@ paths: tags: - users.calendarGroup summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_ListCalendarPermissions parameters: - name: user-id @@ -22672,6 +22967,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_CreateCalendarPermissions parameters: - name: user-id @@ -22717,6 +23013,7 @@ paths: tags: - users.calendarGroup summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_GetCalendarPermissions parameters: - name: user-id @@ -22790,6 +23087,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendarPermissions in users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_UpdateCalendarPermissions parameters: - name: user-id @@ -22837,6 +23135,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_DeleteCalendarPermissions parameters: - name: user-id @@ -22883,6 +23182,7 @@ paths: tags: - users.calendarGroup summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_ListCalendarView parameters: - name: user-id @@ -23115,6 +23415,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_CreateCalendarView parameters: - name: user-id @@ -23160,6 +23461,7 @@ paths: tags: - users.calendarGroup summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_GetCalendarView parameters: - name: user-id @@ -23334,6 +23636,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_UpdateCalendarView parameters: - name: user-id @@ -23381,6 +23684,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_DeleteCalendarView parameters: - name: user-id @@ -23427,6 +23731,7 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_ListAttachments parameters: - name: user-id @@ -23541,6 +23846,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_CreateAttachments parameters: - name: user-id @@ -23593,6 +23899,7 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_GetAttachments parameters: - name: user-id @@ -23673,6 +23980,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_UpdateAttachments parameters: - name: user-id @@ -23727,6 +24035,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_DeleteAttachments parameters: - name: user-id @@ -23780,6 +24089,7 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.calendarView_GetCalendar parameters: - name: user-id @@ -23910,6 +24220,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.calendarView_UpdateCalendar parameters: - name: user-id @@ -23957,6 +24268,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.calendarView_DeleteCalendar parameters: - name: user-id @@ -24589,6 +24901,7 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_ListExtensions parameters: - name: user-id @@ -24688,6 +25001,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_CreateExtensions parameters: - name: user-id @@ -24740,6 +25054,7 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_GetExtensions parameters: - name: user-id @@ -24815,6 +25130,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_UpdateExtensions parameters: - name: user-id @@ -24869,6 +25185,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_DeleteExtensions parameters: - name: user-id @@ -24922,6 +25239,7 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_ListInstances parameters: - name: user-id @@ -25161,6 +25479,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_CreateInstances parameters: - name: user-id @@ -25213,6 +25532,7 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_GetInstances parameters: - name: user-id @@ -25401,6 +25721,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_UpdateInstances parameters: - name: user-id @@ -25455,6 +25776,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_DeleteInstances parameters: - name: user-id @@ -25508,6 +25830,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id @@ -25610,6 +25933,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -25662,6 +25986,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id @@ -25738,6 +26063,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -25792,6 +26118,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -25845,6 +26172,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id @@ -25947,6 +26275,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -25999,6 +26328,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id @@ -26075,6 +26405,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -26129,6 +26460,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -26182,6 +26514,7 @@ paths: tags: - users.calendarGroup summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_ListEvents parameters: - name: user-id @@ -26414,6 +26747,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_CreateEvents parameters: - name: user-id @@ -26459,6 +26793,7 @@ paths: tags: - users.calendarGroup summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_GetEvents parameters: - name: user-id @@ -26633,6 +26968,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property events in users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_UpdateEvents parameters: - name: user-id @@ -26680,6 +27016,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_DeleteEvents parameters: - name: user-id @@ -26726,6 +27063,7 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_ListAttachments parameters: - name: user-id @@ -26840,6 +27178,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_CreateAttachments parameters: - name: user-id @@ -26892,6 +27231,7 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_GetAttachments parameters: - name: user-id @@ -26972,6 +27312,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_UpdateAttachments parameters: - name: user-id @@ -27026,6 +27367,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_DeleteAttachments parameters: - name: user-id @@ -27079,6 +27421,7 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.events_GetCalendar parameters: - name: user-id @@ -27209,6 +27552,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.events_UpdateCalendar parameters: - name: user-id @@ -27256,6 +27600,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.events_DeleteCalendar parameters: - name: user-id @@ -27888,6 +28233,7 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_ListExtensions parameters: - name: user-id @@ -27987,6 +28333,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_CreateExtensions parameters: - name: user-id @@ -28039,6 +28386,7 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_GetExtensions parameters: - name: user-id @@ -28114,6 +28462,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_UpdateExtensions parameters: - name: user-id @@ -28168,6 +28517,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_DeleteExtensions parameters: - name: user-id @@ -28221,6 +28571,7 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_ListInstances parameters: - name: user-id @@ -28460,6 +28811,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_CreateInstances parameters: - name: user-id @@ -28512,6 +28864,7 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_GetInstances parameters: - name: user-id @@ -28700,6 +29053,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_UpdateInstances parameters: - name: user-id @@ -28754,6 +29108,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_DeleteInstances parameters: - name: user-id @@ -28807,6 +29162,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_ListMultiValueExtendedProperties parameters: - name: user-id @@ -28909,6 +29265,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -28961,6 +29318,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_GetMultiValueExtendedProperties parameters: - name: user-id @@ -29037,6 +29395,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -29091,6 +29450,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -29144,6 +29504,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_ListSingleValueExtendedProperties parameters: - name: user-id @@ -29246,6 +29607,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -29298,6 +29660,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_GetSingleValueExtendedProperties parameters: - name: user-id @@ -29374,6 +29737,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -29428,6 +29792,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -29481,6 +29846,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_ListMultiValueExtendedProperties parameters: - name: user-id @@ -29576,6 +29942,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -29621,6 +29988,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_GetMultiValueExtendedProperties parameters: - name: user-id @@ -29690,6 +30058,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -29737,6 +30106,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -29783,6 +30153,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_ListSingleValueExtendedProperties parameters: - name: user-id @@ -29878,6 +30249,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -29923,6 +30295,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_GetSingleValueExtendedProperties parameters: - name: user-id @@ -29992,6 +30365,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -30039,6 +30413,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -30085,6 +30460,7 @@ paths: tags: - users.calendar summary: Get calendars from users + description: The user's calendars. Read-only. Nullable. operationId: users_ListCalendars parameters: - name: user-id @@ -30221,6 +30597,7 @@ paths: tags: - users.calendar summary: Create new navigation property to calendars for users + description: The user's calendars. Read-only. Nullable. operationId: users_CreateCalendars parameters: - name: user-id @@ -30252,6 +30629,7 @@ paths: tags: - users.calendar summary: Get calendars from users + description: The user's calendars. Read-only. Nullable. operationId: users_GetCalendars parameters: - name: user-id @@ -30358,6 +30736,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendars in users + description: The user's calendars. Read-only. Nullable. operationId: users_UpdateCalendars parameters: - name: user-id @@ -30391,6 +30770,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendars for users + description: The user's calendars. Read-only. Nullable. operationId: users_DeleteCalendars parameters: - name: user-id @@ -30423,6 +30803,7 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_ListCalendarPermissions parameters: - name: user-id @@ -30523,6 +30904,7 @@ paths: tags: - users.calendar summary: Create new navigation property to calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_CreateCalendarPermissions parameters: - name: user-id @@ -30561,6 +30943,7 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_GetCalendarPermissions parameters: - name: user-id @@ -30627,6 +31010,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendarPermissions in users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_UpdateCalendarPermissions parameters: - name: user-id @@ -30667,6 +31051,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_DeleteCalendarPermissions parameters: - name: user-id @@ -30706,6 +31091,7 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_ListCalendarView parameters: - name: user-id @@ -30943,6 +31329,7 @@ paths: tags: - users.calendar summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_CreateCalendarView parameters: - name: user-id @@ -30981,6 +31368,7 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_GetCalendarView parameters: - name: user-id @@ -31153,6 +31541,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_UpdateCalendarView parameters: - name: user-id @@ -31193,6 +31582,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_DeleteCalendarView parameters: - name: user-id @@ -31232,6 +31622,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_ListAttachments parameters: - name: user-id @@ -31339,6 +31730,7 @@ paths: tags: - users.calendar summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_CreateAttachments parameters: - name: user-id @@ -31384,6 +31776,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_GetAttachments parameters: - name: user-id @@ -31457,6 +31850,7 @@ paths: tags: - users.calendar summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_UpdateAttachments parameters: - name: user-id @@ -31504,6 +31898,7 @@ paths: tags: - users.calendar summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_DeleteAttachments parameters: - name: user-id @@ -31550,6 +31945,7 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.calendarView_GetCalendar parameters: - name: user-id @@ -31668,6 +32064,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.calendarView_UpdateCalendar parameters: - name: user-id @@ -31708,6 +32105,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.calendarView_DeleteCalendar parameters: - name: user-id @@ -32291,6 +32689,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_ListExtensions parameters: - name: user-id @@ -32383,6 +32782,7 @@ paths: tags: - users.calendar summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_CreateExtensions parameters: - name: user-id @@ -32428,6 +32828,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_GetExtensions parameters: - name: user-id @@ -32496,6 +32897,7 @@ paths: tags: - users.calendar summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_UpdateExtensions parameters: - name: user-id @@ -32543,6 +32945,7 @@ paths: tags: - users.calendar summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_DeleteExtensions parameters: - name: user-id @@ -32589,6 +32992,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_ListInstances parameters: - name: user-id @@ -32821,6 +33225,7 @@ paths: tags: - users.calendar summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_CreateInstances parameters: - name: user-id @@ -32866,6 +33271,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_GetInstances parameters: - name: user-id @@ -33040,6 +33446,7 @@ paths: tags: - users.calendar summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_UpdateInstances parameters: - name: user-id @@ -33087,6 +33494,7 @@ paths: tags: - users.calendar summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_DeleteInstances parameters: - name: user-id @@ -33133,6 +33541,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id @@ -33228,6 +33637,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -33273,6 +33683,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id @@ -33342,6 +33753,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -33389,6 +33801,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -33435,6 +33848,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id @@ -33530,6 +33944,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -33575,6 +33990,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id @@ -33644,6 +34060,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -33691,6 +34108,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -33737,6 +34155,7 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_ListEvents parameters: - name: user-id @@ -33962,6 +34381,7 @@ paths: tags: - users.calendar summary: Create new navigation property to events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_CreateEvents parameters: - name: user-id @@ -34000,6 +34420,7 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_GetEvents parameters: - name: user-id @@ -34160,6 +34581,7 @@ paths: tags: - users.calendar summary: Update the navigation property events in users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_UpdateEvents parameters: - name: user-id @@ -34200,6 +34622,7 @@ paths: tags: - users.calendar summary: Delete navigation property events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_DeleteEvents parameters: - name: user-id @@ -34239,6 +34662,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_ListAttachments parameters: - name: user-id @@ -34346,6 +34770,7 @@ paths: tags: - users.calendar summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_CreateAttachments parameters: - name: user-id @@ -34391,6 +34816,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_GetAttachments parameters: - name: user-id @@ -34464,6 +34890,7 @@ paths: tags: - users.calendar summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_UpdateAttachments parameters: - name: user-id @@ -34511,6 +34938,7 @@ paths: tags: - users.calendar summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_DeleteAttachments parameters: - name: user-id @@ -34557,6 +34985,7 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.events_GetCalendar parameters: - name: user-id @@ -34675,6 +35104,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.events_UpdateCalendar parameters: - name: user-id @@ -34715,6 +35145,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.events_DeleteCalendar parameters: - name: user-id @@ -35298,6 +35729,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_ListExtensions parameters: - name: user-id @@ -35390,6 +35822,7 @@ paths: tags: - users.calendar summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_CreateExtensions parameters: - name: user-id @@ -35435,6 +35868,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_GetExtensions parameters: - name: user-id @@ -35503,6 +35937,7 @@ paths: tags: - users.calendar summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_UpdateExtensions parameters: - name: user-id @@ -35550,6 +35985,7 @@ paths: tags: - users.calendar summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_DeleteExtensions parameters: - name: user-id @@ -35596,6 +36032,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_ListInstances parameters: - name: user-id @@ -35828,6 +36265,7 @@ paths: tags: - users.calendar summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_CreateInstances parameters: - name: user-id @@ -35873,6 +36311,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_GetInstances parameters: - name: user-id @@ -36047,6 +36486,7 @@ paths: tags: - users.calendar summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_UpdateInstances parameters: - name: user-id @@ -36094,6 +36534,7 @@ paths: tags: - users.calendar summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_DeleteInstances parameters: - name: user-id @@ -36140,6 +36581,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_ListMultiValueExtendedProperties parameters: - name: user-id @@ -36235,6 +36677,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -36280,6 +36723,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_GetMultiValueExtendedProperties parameters: - name: user-id @@ -36349,6 +36793,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -36396,6 +36841,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -36442,6 +36888,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_ListSingleValueExtendedProperties parameters: - name: user-id @@ -36537,6 +36984,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -36582,6 +37030,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_GetSingleValueExtendedProperties parameters: - name: user-id @@ -36651,6 +37100,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -36698,6 +37148,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -36744,6 +37195,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_ListMultiValueExtendedProperties parameters: - name: user-id @@ -36832,6 +37284,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -36870,6 +37323,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_GetMultiValueExtendedProperties parameters: - name: user-id @@ -36932,6 +37386,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -36972,6 +37427,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -37011,6 +37467,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_ListSingleValueExtendedProperties parameters: - name: user-id @@ -37099,6 +37556,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -37137,6 +37595,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_GetSingleValueExtendedProperties parameters: - name: user-id @@ -37199,6 +37658,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -37239,6 +37699,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -37278,6 +37739,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_ListCalendarView parameters: - name: user-id @@ -37508,6 +37970,7 @@ paths: tags: - users.event summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_CreateCalendarView parameters: - name: user-id @@ -37539,6 +38002,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_GetCalendarView parameters: - name: user-id @@ -37697,6 +38161,7 @@ paths: tags: - users.event summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_UpdateCalendarView parameters: - name: user-id @@ -37730,6 +38195,7 @@ paths: tags: - users.event summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_DeleteCalendarView parameters: - name: user-id @@ -37762,6 +38228,7 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_ListAttachments parameters: - name: user-id @@ -37862,6 +38329,7 @@ paths: tags: - users.event summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_CreateAttachments parameters: - name: user-id @@ -37900,6 +38368,7 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_GetAttachments parameters: - name: user-id @@ -37966,6 +38435,7 @@ paths: tags: - users.event summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_UpdateAttachments parameters: - name: user-id @@ -38006,6 +38476,7 @@ paths: tags: - users.event summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_DeleteAttachments parameters: - name: user-id @@ -38045,6 +38516,7 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarView_GetCalendar parameters: - name: user-id @@ -38151,6 +38623,7 @@ paths: tags: - users.event summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarView_UpdateCalendar parameters: - name: user-id @@ -38184,6 +38657,7 @@ paths: tags: - users.event summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarView_DeleteCalendar parameters: - name: user-id @@ -38216,6 +38690,7 @@ paths: tags: - users.event summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarView.calendar_ListCalendarPermissions parameters: - name: user-id @@ -38316,6 +38791,7 @@ paths: tags: - users.event summary: Create new navigation property to calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarView.calendar_CreateCalendarPermissions parameters: - name: user-id @@ -38354,6 +38830,7 @@ paths: tags: - users.event summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarView.calendar_GetCalendarPermissions parameters: - name: user-id @@ -38420,6 +38897,7 @@ paths: tags: - users.event summary: Update the navigation property calendarPermissions in users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarView.calendar_UpdateCalendarPermissions parameters: - name: user-id @@ -38460,6 +38938,7 @@ paths: tags: - users.event summary: Delete navigation property calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarView.calendar_DeleteCalendarPermissions parameters: - name: user-id @@ -38499,6 +38978,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_ListCalendarView parameters: - name: user-id @@ -38724,6 +39204,7 @@ paths: tags: - users.event summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_CreateCalendarView parameters: - name: user-id @@ -38762,6 +39243,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_GetCalendarView parameters: - name: user-id @@ -38922,6 +39404,7 @@ paths: tags: - users.event summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_UpdateCalendarView parameters: - name: user-id @@ -38962,6 +39445,7 @@ paths: tags: - users.event summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_DeleteCalendarView parameters: - name: user-id @@ -39001,6 +39485,7 @@ paths: tags: - users.event summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_ListEvents parameters: - name: user-id @@ -39226,6 +39711,7 @@ paths: tags: - users.event summary: Create new navigation property to events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_CreateEvents parameters: - name: user-id @@ -39264,6 +39750,7 @@ paths: tags: - users.event summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_GetEvents parameters: - name: user-id @@ -39424,6 +39911,7 @@ paths: tags: - users.event summary: Update the navigation property events in users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_UpdateEvents parameters: - name: user-id @@ -39464,6 +39952,7 @@ paths: tags: - users.event summary: Delete navigation property events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_DeleteEvents parameters: - name: user-id @@ -39503,6 +39992,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_ListMultiValueExtendedProperties parameters: - name: user-id @@ -39591,6 +40081,7 @@ paths: tags: - users.event summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -39629,6 +40120,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_GetMultiValueExtendedProperties parameters: - name: user-id @@ -39691,6 +40183,7 @@ paths: tags: - users.event summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -39731,6 +40224,7 @@ paths: tags: - users.event summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -39770,6 +40264,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_ListSingleValueExtendedProperties parameters: - name: user-id @@ -39858,6 +40353,7 @@ paths: tags: - users.event summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -39896,6 +40392,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_GetSingleValueExtendedProperties parameters: - name: user-id @@ -39958,6 +40455,7 @@ paths: tags: - users.event summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -39998,6 +40496,7 @@ paths: tags: - users.event summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -40539,6 +41038,7 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_ListExtensions parameters: - name: user-id @@ -40624,6 +41124,7 @@ paths: tags: - users.event summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_CreateExtensions parameters: - name: user-id @@ -40662,6 +41163,7 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_GetExtensions parameters: - name: user-id @@ -40723,6 +41225,7 @@ paths: tags: - users.event summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_UpdateExtensions parameters: - name: user-id @@ -40763,6 +41266,7 @@ paths: tags: - users.event summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_DeleteExtensions parameters: - name: user-id @@ -40802,6 +41306,7 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_ListInstances parameters: - name: user-id @@ -41027,6 +41532,7 @@ paths: tags: - users.event summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_CreateInstances parameters: - name: user-id @@ -41065,6 +41571,7 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_GetInstances parameters: - name: user-id @@ -41225,6 +41732,7 @@ paths: tags: - users.event summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_UpdateInstances parameters: - name: user-id @@ -41265,6 +41773,7 @@ paths: tags: - users.event summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_DeleteInstances parameters: - name: user-id @@ -41304,6 +41813,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id @@ -41392,6 +41902,7 @@ paths: tags: - users.event summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -41430,6 +41941,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id @@ -41492,6 +42004,7 @@ paths: tags: - users.event summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -41532,6 +42045,7 @@ paths: tags: - users.event summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -41571,6 +42085,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id @@ -41659,6 +42174,7 @@ paths: tags: - users.event summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -41697,6 +42213,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id @@ -41759,6 +42276,7 @@ paths: tags: - users.event summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -41799,6 +42317,7 @@ paths: tags: - users.event summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -41838,6 +42357,7 @@ paths: tags: - users.event summary: Get events from users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_ListEvents parameters: - name: user-id @@ -42056,6 +42576,7 @@ paths: tags: - users.event summary: Create new navigation property to events for users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_CreateEvents parameters: - name: user-id @@ -42087,6 +42608,7 @@ paths: tags: - users.event summary: Get events from users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_GetEvents parameters: - name: user-id @@ -42233,6 +42755,7 @@ paths: tags: - users.event summary: Update the navigation property events in users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_UpdateEvents parameters: - name: user-id @@ -42266,6 +42789,7 @@ paths: tags: - users.event summary: Delete navigation property events for users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_DeleteEvents parameters: - name: user-id @@ -42298,6 +42822,7 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_ListAttachments parameters: - name: user-id @@ -42398,6 +42923,7 @@ paths: tags: - users.event summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_CreateAttachments parameters: - name: user-id @@ -42436,6 +42962,7 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_GetAttachments parameters: - name: user-id @@ -42502,6 +43029,7 @@ paths: tags: - users.event summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_UpdateAttachments parameters: - name: user-id @@ -42542,6 +43070,7 @@ paths: tags: - users.event summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_DeleteAttachments parameters: - name: user-id @@ -42581,6 +43110,7 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.events_GetCalendar parameters: - name: user-id @@ -42687,6 +43217,7 @@ paths: tags: - users.event summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.events_UpdateCalendar parameters: - name: user-id @@ -42720,6 +43251,7 @@ paths: tags: - users.event summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.events_DeleteCalendar parameters: - name: user-id @@ -42752,6 +43284,7 @@ paths: tags: - users.event summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.events.calendar_ListCalendarPermissions parameters: - name: user-id @@ -42852,6 +43385,7 @@ paths: tags: - users.event summary: Create new navigation property to calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.events.calendar_CreateCalendarPermissions parameters: - name: user-id @@ -42890,6 +43424,7 @@ paths: tags: - users.event summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.events.calendar_GetCalendarPermissions parameters: - name: user-id @@ -42956,6 +43491,7 @@ paths: tags: - users.event summary: Update the navigation property calendarPermissions in users + description: The permissions of the users with whom the calendar is shared. operationId: users.events.calendar_UpdateCalendarPermissions parameters: - name: user-id @@ -42996,6 +43532,7 @@ paths: tags: - users.event summary: Delete navigation property calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.events.calendar_DeleteCalendarPermissions parameters: - name: user-id @@ -43035,6 +43572,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.events.calendar_ListCalendarView parameters: - name: user-id @@ -43260,6 +43798,7 @@ paths: tags: - users.event summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.events.calendar_CreateCalendarView parameters: - name: user-id @@ -43298,6 +43837,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.events.calendar_GetCalendarView parameters: - name: user-id @@ -43458,6 +43998,7 @@ paths: tags: - users.event summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.events.calendar_UpdateCalendarView parameters: - name: user-id @@ -43498,6 +44039,7 @@ paths: tags: - users.event summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.events.calendar_DeleteCalendarView parameters: - name: user-id @@ -43537,6 +44079,7 @@ paths: tags: - users.event summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.events.calendar_ListEvents parameters: - name: user-id @@ -43762,6 +44305,7 @@ paths: tags: - users.event summary: Create new navigation property to events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.events.calendar_CreateEvents parameters: - name: user-id @@ -43800,6 +44344,7 @@ paths: tags: - users.event summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.events.calendar_GetEvents parameters: - name: user-id @@ -43960,6 +44505,7 @@ paths: tags: - users.event summary: Update the navigation property events in users + description: The events in the calendar. Navigation property. Read-only. operationId: users.events.calendar_UpdateEvents parameters: - name: user-id @@ -44000,6 +44546,7 @@ paths: tags: - users.event summary: Delete navigation property events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.events.calendar_DeleteEvents parameters: - name: user-id @@ -44039,6 +44586,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_ListMultiValueExtendedProperties parameters: - name: user-id @@ -44127,6 +44675,7 @@ paths: tags: - users.event summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -44165,6 +44714,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_GetMultiValueExtendedProperties parameters: - name: user-id @@ -44227,6 +44777,7 @@ paths: tags: - users.event summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -44267,6 +44818,7 @@ paths: tags: - users.event summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -44306,6 +44858,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_ListSingleValueExtendedProperties parameters: - name: user-id @@ -44394,6 +44947,7 @@ paths: tags: - users.event summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -44432,6 +44986,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_GetSingleValueExtendedProperties parameters: - name: user-id @@ -44494,6 +45049,7 @@ paths: tags: - users.event summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -44534,6 +45090,7 @@ paths: tags: - users.event summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -45075,6 +45632,7 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_ListExtensions parameters: - name: user-id @@ -45160,6 +45718,7 @@ paths: tags: - users.event summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_CreateExtensions parameters: - name: user-id @@ -45198,6 +45757,7 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_GetExtensions parameters: - name: user-id @@ -45259,6 +45819,7 @@ paths: tags: - users.event summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_UpdateExtensions parameters: - name: user-id @@ -45299,6 +45860,7 @@ paths: tags: - users.event summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_DeleteExtensions parameters: - name: user-id @@ -45338,6 +45900,7 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_ListInstances parameters: - name: user-id @@ -45563,6 +46126,7 @@ paths: tags: - users.event summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_CreateInstances parameters: - name: user-id @@ -45601,6 +46165,7 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_GetInstances parameters: - name: user-id @@ -45761,6 +46326,7 @@ paths: tags: - users.event summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_UpdateInstances parameters: - name: user-id @@ -45801,6 +46367,7 @@ paths: tags: - users.event summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_DeleteInstances parameters: - name: user-id @@ -45840,6 +46407,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_ListMultiValueExtendedProperties parameters: - name: user-id @@ -45928,6 +46496,7 @@ paths: tags: - users.event summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -45966,6 +46535,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_GetMultiValueExtendedProperties parameters: - name: user-id @@ -46028,6 +46598,7 @@ paths: tags: - users.event summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -46068,6 +46639,7 @@ paths: tags: - users.event summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -46107,6 +46679,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_ListSingleValueExtendedProperties parameters: - name: user-id @@ -46195,6 +46768,7 @@ paths: tags: - users.event summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -46233,6 +46807,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_GetSingleValueExtendedProperties parameters: - name: user-id @@ -46295,6 +46870,7 @@ paths: tags: - users.event summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -46335,6 +46911,7 @@ paths: tags: - users.event summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_DeleteSingleValueExtendedProperties parameters: - name: user-id diff --git a/openApiDocs/beta/CloudCommunications.yml b/openApiDocs/beta/CloudCommunications.yml index 87019ab7508..6a6293569f1 100644 --- a/openApiDocs/beta/CloudCommunications.yml +++ b/openApiDocs/beta/CloudCommunications.yml @@ -324,6 +324,7 @@ paths: tags: - communications.callRecord summary: Get sessions from communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_ListSessions parameters: - name: callRecord-id @@ -422,6 +423,7 @@ paths: tags: - communications.callRecord summary: Create new navigation property to sessions for communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_CreateSessions parameters: - name: callRecord-id @@ -453,6 +455,7 @@ paths: tags: - communications.callRecord summary: Get sessions from communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_GetSessions parameters: - name: callRecord-id @@ -521,6 +524,7 @@ paths: tags: - communications.callRecord summary: Update the navigation property sessions in communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_UpdateSessions parameters: - name: callRecord-id @@ -554,6 +558,7 @@ paths: tags: - communications.callRecord summary: Delete navigation property sessions for communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_DeleteSessions parameters: - name: callRecord-id @@ -586,6 +591,7 @@ paths: tags: - communications.callRecord summary: Get segments from communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_ListSegments parameters: - name: callRecord-id @@ -689,6 +695,7 @@ paths: tags: - communications.callRecord summary: Create new navigation property to segments for communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_CreateSegments parameters: - name: callRecord-id @@ -727,6 +734,7 @@ paths: tags: - communications.callRecord summary: Get segments from communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_GetSegments parameters: - name: callRecord-id @@ -794,6 +802,7 @@ paths: tags: - communications.callRecord summary: Update the navigation property segments in communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_UpdateSegments parameters: - name: callRecord-id @@ -834,6 +843,7 @@ paths: tags: - communications.callRecord summary: Delete navigation property segments for communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_DeleteSegments parameters: - name: callRecord-id @@ -1194,6 +1204,7 @@ paths: tags: - communications.call summary: Get audioRoutingGroups from communications + description: Read-only. Nullable. operationId: communications.calls_ListAudioRoutingGroups parameters: - name: call-id @@ -1281,6 +1292,7 @@ paths: tags: - communications.call summary: Create new navigation property to audioRoutingGroups for communications + description: Read-only. Nullable. operationId: communications.calls_CreateAudioRoutingGroups parameters: - name: call-id @@ -1312,6 +1324,7 @@ paths: tags: - communications.call summary: Get audioRoutingGroups from communications + description: Read-only. Nullable. operationId: communications.calls_GetAudioRoutingGroups parameters: - name: call-id @@ -1369,6 +1382,7 @@ paths: tags: - communications.call summary: Update the navigation property audioRoutingGroups in communications + description: Read-only. Nullable. operationId: communications.calls_UpdateAudioRoutingGroups parameters: - name: call-id @@ -1402,6 +1416,7 @@ paths: tags: - communications.call summary: Delete navigation property audioRoutingGroups for communications + description: Read-only. Nullable. operationId: communications.calls_DeleteAudioRoutingGroups parameters: - name: call-id @@ -2034,6 +2049,7 @@ paths: tags: - communications.call summary: Get operations from communications + description: Read-only. Nullable. operationId: communications.calls_ListOperations parameters: - name: call-id @@ -2121,6 +2137,7 @@ paths: tags: - communications.call summary: Create new navigation property to operations for communications + description: Read-only. Nullable. operationId: communications.calls_CreateOperations parameters: - name: call-id @@ -2152,6 +2169,7 @@ paths: tags: - communications.call summary: Get operations from communications + description: Read-only. Nullable. operationId: communications.calls_GetOperations parameters: - name: call-id @@ -2209,6 +2227,7 @@ paths: tags: - communications.call summary: Update the navigation property operations in communications + description: Read-only. Nullable. operationId: communications.calls_UpdateOperations parameters: - name: call-id @@ -2242,6 +2261,7 @@ paths: tags: - communications.call summary: Delete navigation property operations for communications + description: Read-only. Nullable. operationId: communications.calls_DeleteOperations parameters: - name: call-id @@ -2274,6 +2294,7 @@ paths: tags: - communications.call summary: Get participants from communications + description: Read-only. Nullable. operationId: communications.calls_ListParticipants parameters: - name: call-id @@ -2370,6 +2391,7 @@ paths: tags: - communications.call summary: Create new navigation property to participants for communications + description: Read-only. Nullable. operationId: communications.calls_CreateParticipants parameters: - name: call-id @@ -2401,6 +2423,7 @@ paths: tags: - communications.call summary: Get participants from communications + description: Read-only. Nullable. operationId: communications.calls_GetParticipants parameters: - name: call-id @@ -2461,6 +2484,7 @@ paths: tags: - communications.call summary: Update the navigation property participants in communications + description: Read-only. Nullable. operationId: communications.calls_UpdateParticipants parameters: - name: call-id @@ -2494,6 +2518,7 @@ paths: tags: - communications.call summary: Delete navigation property participants for communications + description: Read-only. Nullable. operationId: communications.calls_DeleteParticipants parameters: - name: call-id @@ -4892,7 +4917,6 @@ components: 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: @@ -4972,6 +4996,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.chatInfo: @@ -5000,18 +5025,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.entity: @@ -5514,10 +5538,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -5582,18 +5618,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -6113,16 +6153,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: diff --git a/openApiDocs/beta/Compliance.yml b/openApiDocs/beta/Compliance.yml index 7779d99041b..bc257465bbf 100644 --- a/openApiDocs/beta/Compliance.yml +++ b/openApiDocs/beta/Compliance.yml @@ -448,6 +448,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get custodians from compliance + description: Returns a list of case custodian objects for this case. Nullable. operationId: compliance.ediscovery.cases_ListCustodians parameters: - name: case-id @@ -558,6 +559,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to custodians for compliance + description: Returns a list of case custodian objects for this case. Nullable. operationId: compliance.ediscovery.cases_CreateCustodians parameters: - name: case-id @@ -589,6 +591,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get custodians from compliance + description: Returns a list of case custodian objects for this case. Nullable. operationId: compliance.ediscovery.cases_GetCustodians parameters: - name: case-id @@ -680,6 +683,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property custodians in compliance + description: Returns a list of case custodian objects for this case. Nullable. operationId: compliance.ediscovery.cases_UpdateCustodians parameters: - name: case-id @@ -713,6 +717,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property custodians for compliance + description: Returns a list of case custodian objects for this case. Nullable. operationId: compliance.ediscovery.cases_DeleteCustodians parameters: - name: case-id @@ -826,6 +831,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get siteSources from compliance + description: Data source entity for SharePoint sites associated with the custodian. operationId: compliance.ediscovery.cases.custodians_ListSiteSources parameters: - name: case-id @@ -922,6 +928,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to siteSources for compliance + description: Data source entity for SharePoint sites associated with the custodian. operationId: compliance.ediscovery.cases.custodians_CreateSiteSources parameters: - name: case-id @@ -960,6 +967,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get siteSources from compliance + description: Data source entity for SharePoint sites associated with the custodian. operationId: compliance.ediscovery.cases.custodians_GetSiteSources parameters: - name: case-id @@ -1033,6 +1041,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property siteSources in compliance + description: Data source entity for SharePoint sites associated with the custodian. operationId: compliance.ediscovery.cases.custodians_UpdateSiteSources parameters: - name: case-id @@ -1073,6 +1082,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property siteSources for compliance + description: Data source entity for SharePoint sites associated with the custodian. operationId: compliance.ediscovery.cases.custodians_DeleteSiteSources parameters: - name: case-id @@ -1112,6 +1122,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get site from compliance + description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.custodians.siteSources_GetSite parameters: - name: case-id @@ -1309,6 +1320,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get ref of site from compliance + description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.custodians.siteSources_GetRefSite parameters: - name: case-id @@ -1437,6 +1449,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the ref of navigation property site in compliance + description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.custodians.siteSources_SetRefSite parameters: - name: case-id @@ -1479,6 +1492,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete ref of navigation property site for compliance + description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.custodians.siteSources_DeleteRefSite parameters: - name: case-id @@ -1518,6 +1532,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get unifiedGroupSources from compliance + description: Data source entity for groups associated with the custodian. operationId: compliance.ediscovery.cases.custodians_ListUnifiedGroupSources parameters: - name: case-id @@ -1617,6 +1632,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to unifiedGroupSources for compliance + description: Data source entity for groups associated with the custodian. operationId: compliance.ediscovery.cases.custodians_CreateUnifiedGroupSources parameters: - name: case-id @@ -1655,6 +1671,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get unifiedGroupSources from compliance + description: Data source entity for groups associated with the custodian. operationId: compliance.ediscovery.cases.custodians_GetUnifiedGroupSources parameters: - name: case-id @@ -1729,6 +1746,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property unifiedGroupSources in compliance + description: Data source entity for groups associated with the custodian. operationId: compliance.ediscovery.cases.custodians_UpdateUnifiedGroupSources parameters: - name: case-id @@ -1769,6 +1787,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property unifiedGroupSources for compliance + description: Data source entity for groups associated with the custodian. operationId: compliance.ediscovery.cases.custodians_DeleteUnifiedGroupSources parameters: - name: case-id @@ -1808,6 +1827,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get group from compliance + description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.custodians.unifiedGroupSources_GetGroup parameters: - name: case-id @@ -2144,6 +2164,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get ref of group from compliance + description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.custodians.unifiedGroupSources_GetRefGroup parameters: - name: case-id @@ -2350,6 +2371,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the ref of navigation property group in compliance + description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.custodians.unifiedGroupSources_SetRefGroup parameters: - name: case-id @@ -2392,6 +2414,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete ref of navigation property group for compliance + description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.custodians.unifiedGroupSources_DeleteRefGroup parameters: - name: case-id @@ -2431,6 +2454,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get userSources from compliance + description: Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.custodians_ListUserSources parameters: - name: case-id @@ -2531,6 +2555,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to userSources for compliance + description: Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.custodians_CreateUserSources parameters: - name: case-id @@ -2569,6 +2594,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get userSources from compliance + description: Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.custodians_GetUserSources parameters: - name: case-id @@ -2635,6 +2661,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property userSources in compliance + description: Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.custodians_UpdateUserSources parameters: - name: case-id @@ -2675,6 +2702,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property userSources for compliance + description: Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.custodians_DeleteUserSources parameters: - name: case-id @@ -2714,6 +2742,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get legalHolds from compliance + description: Returns a list of case legalHold objects for this case. Nullable. operationId: compliance.ediscovery.cases_ListLegalHolds parameters: - name: case-id @@ -2828,6 +2857,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to legalHolds for compliance + description: Returns a list of case legalHold objects for this case. Nullable. operationId: compliance.ediscovery.cases_CreateLegalHolds parameters: - name: case-id @@ -2859,6 +2889,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get legalHolds from compliance + description: Returns a list of case legalHold objects for this case. Nullable. operationId: compliance.ediscovery.cases_GetLegalHolds parameters: - name: case-id @@ -2945,6 +2976,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property legalHolds in compliance + description: Returns a list of case legalHold objects for this case. Nullable. operationId: compliance.ediscovery.cases_UpdateLegalHolds parameters: - name: case-id @@ -2978,6 +3010,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property legalHolds for compliance + description: Returns a list of case legalHold objects for this case. Nullable. operationId: compliance.ediscovery.cases_DeleteLegalHolds parameters: - name: case-id @@ -3010,6 +3043,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get siteSources from compliance + description: Data source entity for SharePoint sites associated with the legal hold. operationId: compliance.ediscovery.cases.legalHolds_ListSiteSources parameters: - name: case-id @@ -3106,6 +3140,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to siteSources for compliance + description: Data source entity for SharePoint sites associated with the legal hold. operationId: compliance.ediscovery.cases.legalHolds_CreateSiteSources parameters: - name: case-id @@ -3144,6 +3179,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get siteSources from compliance + description: Data source entity for SharePoint sites associated with the legal hold. operationId: compliance.ediscovery.cases.legalHolds_GetSiteSources parameters: - name: case-id @@ -3217,6 +3253,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property siteSources in compliance + description: Data source entity for SharePoint sites associated with the legal hold. operationId: compliance.ediscovery.cases.legalHolds_UpdateSiteSources parameters: - name: case-id @@ -3257,6 +3294,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property siteSources for compliance + description: Data source entity for SharePoint sites associated with the legal hold. operationId: compliance.ediscovery.cases.legalHolds_DeleteSiteSources parameters: - name: case-id @@ -3296,6 +3334,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get site from compliance + description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.legalHolds.siteSources_GetSite parameters: - name: case-id @@ -3493,6 +3532,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get ref of site from compliance + description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.legalHolds.siteSources_GetRefSite parameters: - name: case-id @@ -3621,6 +3661,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the ref of navigation property site in compliance + description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.legalHolds.siteSources_SetRefSite parameters: - name: case-id @@ -3663,6 +3704,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete ref of navigation property site for compliance + description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.legalHolds.siteSources_DeleteRefSite parameters: - name: case-id @@ -3992,6 +4034,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get group from compliance + description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.legalHolds.unifiedGroupSources_GetGroup parameters: - name: case-id @@ -4328,6 +4371,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get ref of group from compliance + description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.legalHolds.unifiedGroupSources_GetRefGroup parameters: - name: case-id @@ -4534,6 +4578,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the ref of navigation property group in compliance + description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.legalHolds.unifiedGroupSources_SetRefGroup parameters: - name: case-id @@ -4576,6 +4621,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete ref of navigation property group for compliance + description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.legalHolds.unifiedGroupSources_DeleteRefGroup parameters: - name: case-id @@ -4615,6 +4661,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get userSources from compliance + description: Data source entity for a the legal hold. This is the container for a mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.legalHolds_ListUserSources parameters: - name: case-id @@ -4715,6 +4762,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to userSources for compliance + description: Data source entity for a the legal hold. This is the container for a mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.legalHolds_CreateUserSources parameters: - name: case-id @@ -4753,6 +4801,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get userSources from compliance + description: Data source entity for a the legal hold. This is the container for a mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.legalHolds_GetUserSources parameters: - name: case-id @@ -4819,6 +4868,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property userSources in compliance + description: Data source entity for a the legal hold. This is the container for a mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.legalHolds_UpdateUserSources parameters: - name: case-id @@ -4859,6 +4909,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property userSources for compliance + description: Data source entity for a the legal hold. This is the container for a mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.legalHolds_DeleteUserSources parameters: - name: case-id @@ -4938,6 +4989,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get noncustodialDataSources from compliance + description: Returns a list of case noncustodialDataSource objects for this case. Nullable. operationId: compliance.ediscovery.cases_ListNoncustodialDataSources parameters: - name: case-id @@ -5038,6 +5090,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to noncustodialDataSources for compliance + description: Returns a list of case noncustodialDataSource objects for this case. Nullable. operationId: compliance.ediscovery.cases_CreateNoncustodialDataSources parameters: - name: case-id @@ -5069,6 +5122,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get noncustodialDataSources from compliance + description: Returns a list of case noncustodialDataSource objects for this case. Nullable. operationId: compliance.ediscovery.cases_GetNoncustodialDataSources parameters: - name: case-id @@ -5144,6 +5198,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property noncustodialDataSources in compliance + description: Returns a list of case noncustodialDataSource objects for this case. Nullable. operationId: compliance.ediscovery.cases_UpdateNoncustodialDataSources parameters: - name: case-id @@ -5177,6 +5232,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property noncustodialDataSources for compliance + description: Returns a list of case noncustodialDataSource objects for this case. Nullable. operationId: compliance.ediscovery.cases_DeleteNoncustodialDataSources parameters: - name: case-id @@ -5209,6 +5265,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get dataSource from compliance + description: User source or SharePoint site data source as non-custodial data source. operationId: compliance.ediscovery.cases.noncustodialDataSources_GetDataSource parameters: - name: case-id @@ -5266,6 +5323,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property dataSource in compliance + description: User source or SharePoint site data source as non-custodial data source. operationId: compliance.ediscovery.cases.noncustodialDataSources_UpdateDataSource parameters: - name: case-id @@ -5299,6 +5357,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property dataSource for compliance + description: User source or SharePoint site data source as non-custodial data source. operationId: compliance.ediscovery.cases.noncustodialDataSources_DeleteDataSource parameters: - name: case-id @@ -5326,12 +5385,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.Release': + '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.release': post: tags: - compliance.Actions - summary: Invoke action Release - operationId: compliance.ediscovery.cases.noncustodialDataSources_Release + summary: Invoke action release + operationId: compliance.ediscovery.cases.noncustodialDataSources_release parameters: - name: case-id in: path @@ -5353,12 +5412,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.UpdateIndex': + '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.updateIndex': post: tags: - compliance.Actions - summary: Invoke action UpdateIndex - operationId: compliance.ediscovery.cases.noncustodialDataSources_UpdateIndex + summary: Invoke action updateIndex + operationId: compliance.ediscovery.cases.noncustodialDataSources_updateIndex parameters: - name: case-id in: path @@ -5385,6 +5444,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get operations from compliance + description: Returns a list of case operation objects for this case. Nullable. operationId: compliance.ediscovery.cases_ListOperations parameters: - name: case-id @@ -5484,6 +5544,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to operations for compliance + description: Returns a list of case operation objects for this case. Nullable. operationId: compliance.ediscovery.cases_CreateOperations parameters: - name: case-id @@ -5515,6 +5576,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get operations from compliance + description: Returns a list of case operation objects for this case. Nullable. operationId: compliance.ediscovery.cases_GetOperations parameters: - name: case-id @@ -5576,6 +5638,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property operations in compliance + description: Returns a list of case operation objects for this case. Nullable. operationId: compliance.ediscovery.cases_UpdateOperations parameters: - name: case-id @@ -5609,6 +5672,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property operations for compliance + description: Returns a list of case operation objects for this case. Nullable. operationId: compliance.ediscovery.cases_DeleteOperations parameters: - name: case-id @@ -5673,6 +5737,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get reviewSets from compliance + description: Returns a list of reviewSet objects in the case. Read-only. Nullable. operationId: compliance.ediscovery.cases_ListReviewSets parameters: - name: case-id @@ -5762,6 +5827,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to reviewSets for compliance + description: Returns a list of reviewSet objects in the case. Read-only. Nullable. operationId: compliance.ediscovery.cases_CreateReviewSets parameters: - name: case-id @@ -5793,6 +5859,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get reviewSets from compliance + description: Returns a list of reviewSet objects in the case. Read-only. Nullable. operationId: compliance.ediscovery.cases_GetReviewSets parameters: - name: case-id @@ -5858,6 +5925,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property reviewSets in compliance + description: Returns a list of reviewSet objects in the case. Read-only. Nullable. operationId: compliance.ediscovery.cases_UpdateReviewSets parameters: - name: case-id @@ -5891,6 +5959,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property reviewSets for compliance + description: Returns a list of reviewSet objects in the case. Read-only. Nullable. operationId: compliance.ediscovery.cases_DeleteReviewSets parameters: - name: case-id @@ -6017,6 +6086,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get queries from compliance + description: Read-only. Nullable. operationId: compliance.ediscovery.cases.reviewSets_ListQueries parameters: - name: case-id @@ -6120,6 +6190,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to queries for compliance + description: Read-only. Nullable. operationId: compliance.ediscovery.cases.reviewSets_CreateQueries parameters: - name: case-id @@ -6158,6 +6229,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get queries from compliance + description: Read-only. Nullable. operationId: compliance.ediscovery.cases.reviewSets_GetQueries parameters: - name: case-id @@ -6225,6 +6297,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property queries in compliance + description: Read-only. Nullable. operationId: compliance.ediscovery.cases.reviewSets_UpdateQueries parameters: - name: case-id @@ -6265,6 +6338,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property queries for compliance + description: Read-only. Nullable. operationId: compliance.ediscovery.cases.reviewSets_DeleteQueries parameters: - name: case-id @@ -6477,6 +6551,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get sourceCollections from compliance + description: Returns a list of sourceCollection objects associated with this case. operationId: compliance.ediscovery.cases_ListSourceCollections parameters: - name: case-id @@ -6589,6 +6664,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to sourceCollections for compliance + description: Returns a list of sourceCollection objects associated with this case. operationId: compliance.ediscovery.cases_CreateSourceCollections parameters: - name: case-id @@ -6620,6 +6696,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get sourceCollections from compliance + description: Returns a list of sourceCollection objects associated with this case. operationId: compliance.ediscovery.cases_GetSourceCollections parameters: - name: case-id @@ -6718,6 +6795,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property sourceCollections in compliance + description: Returns a list of sourceCollection objects associated with this case. operationId: compliance.ediscovery.cases_UpdateSourceCollections parameters: - name: case-id @@ -6751,6 +6829,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property sourceCollections for compliance + description: Returns a list of sourceCollection objects associated with this case. operationId: compliance.ediscovery.cases_DeleteSourceCollections parameters: - name: case-id @@ -6783,6 +6862,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get additionalSources from compliance + description: Adds an additional source to the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_ListAdditionalSources parameters: - name: case-id @@ -6877,6 +6957,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to additionalSources for compliance + description: Adds an additional source to the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_CreateAdditionalSources parameters: - name: case-id @@ -6915,6 +6996,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get additionalSources from compliance + description: Adds an additional source to the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_GetAdditionalSources parameters: - name: case-id @@ -6979,6 +7061,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property additionalSources in compliance + description: Adds an additional source to the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_UpdateAdditionalSources parameters: - name: case-id @@ -7019,6 +7102,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property additionalSources for compliance + description: Adds an additional source to the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_DeleteAdditionalSources parameters: - name: case-id @@ -7058,6 +7142,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get addToReviewSetOperation from compliance + description: Adds the results of the sourceCollection to the specified reviewSet. operationId: compliance.ediscovery.cases.sourceCollections_GetAddToReviewSetOperation parameters: - name: case-id @@ -7135,6 +7220,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get ref of addToReviewSetOperation from compliance + description: Adds the results of the sourceCollection to the specified reviewSet. operationId: compliance.ediscovery.cases.sourceCollections_GetRefAddToReviewSetOperation parameters: - name: case-id @@ -7176,6 +7262,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the ref of navigation property addToReviewSetOperation in compliance + description: Adds the results of the sourceCollection to the specified reviewSet. operationId: compliance.ediscovery.cases.sourceCollections_SetRefAddToReviewSetOperation parameters: - name: case-id @@ -7211,6 +7298,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete ref of navigation property addToReviewSetOperation for compliance + description: Adds the results of the sourceCollection to the specified reviewSet. operationId: compliance.ediscovery.cases.sourceCollections_DeleteRefAddToReviewSetOperation parameters: - name: case-id @@ -7243,6 +7331,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get custodianSources from compliance + description: Custodian sources that are included in the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_ListCustodianSources parameters: - name: case-id @@ -7338,6 +7427,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get ref of custodianSources from compliance + description: Custodian sources that are included in the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_ListRefCustodianSources parameters: - name: case-id @@ -7405,6 +7495,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property ref to custodianSources for compliance + description: Custodian sources that are included in the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_CreateRefCustodianSources parameters: - name: case-id @@ -7447,6 +7538,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get lastEstimateStatisticsOperation from compliance + description: The last estimate operation associated with the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_GetLastEstimateStatisticsOperation parameters: - name: case-id @@ -7523,6 +7615,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get ref of lastEstimateStatisticsOperation from compliance + description: The last estimate operation associated with the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_GetRefLastEstimateStatisticsOperation parameters: - name: case-id @@ -7559,6 +7652,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the ref of navigation property lastEstimateStatisticsOperation in compliance + description: The last estimate operation associated with the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_SetRefLastEstimateStatisticsOperation parameters: - name: case-id @@ -7594,6 +7688,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete ref of navigation property lastEstimateStatisticsOperation for compliance + description: The last estimate operation associated with the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_DeleteRefLastEstimateStatisticsOperation parameters: - name: case-id @@ -7653,6 +7748,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get noncustodialSources from compliance + description: noncustodialDataSource sources that are included in the sourceCollection operationId: compliance.ediscovery.cases.sourceCollections_ListNoncustodialSources parameters: - name: case-id @@ -7686,12 +7782,18 @@ paths: enum: - id - id desc - - createdBy - - createdBy desc - createdDateTime - createdDateTime desc - displayName - displayName desc + - lastModifiedDateTime + - lastModifiedDateTime desc + - releasedDateTime + - releasedDateTime desc + - status + - status desc + - applyHoldToSource + - applyHoldToSource desc type: string - name: $select in: query @@ -7704,9 +7806,14 @@ paths: items: enum: - id - - createdBy - createdDateTime - displayName + - lastModifiedDateTime + - releasedDateTime + - status + - applyHoldToSource + - lastIndexOperation + - dataSource type: string - name: $expand in: query @@ -7719,6 +7826,8 @@ paths: items: enum: - '*' + - lastIndexOperation + - dataSource type: string responses: '200': @@ -7726,13 +7835,13 @@ paths: content: application/json: schema: - title: Collection of dataSource + title: Collection of noncustodialDataSource type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' + $ref: '#/components/schemas/microsoft.graph.ediscovery.noncustodialDataSource' '@odata.nextLink': type: string additionalProperties: @@ -7748,6 +7857,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get ref of noncustodialSources from compliance + description: noncustodialDataSource sources that are included in the sourceCollection operationId: compliance.ediscovery.cases.sourceCollections_ListRefNoncustodialSources parameters: - name: case-id @@ -7781,12 +7891,18 @@ paths: enum: - id - id desc - - createdBy - - createdBy desc - createdDateTime - createdDateTime desc - displayName - displayName desc + - lastModifiedDateTime + - lastModifiedDateTime desc + - releasedDateTime + - releasedDateTime desc + - status + - status desc + - applyHoldToSource + - applyHoldToSource desc type: string responses: '200': @@ -7794,7 +7910,7 @@ paths: content: application/json: schema: - title: Collection of links of dataSource + title: Collection of links of noncustodialDataSource type: object properties: value: @@ -7815,6 +7931,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property ref to noncustodialSources for compliance + description: noncustodialDataSource sources that are included in the sourceCollection operationId: compliance.ediscovery.cases.sourceCollections_CreateRefNoncustodialSources parameters: - name: case-id @@ -7857,6 +7974,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get tags from compliance + description: Returns a list of tag objects associated to this case. operationId: compliance.ediscovery.cases_ListTags parameters: - name: case-id @@ -7954,6 +8072,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property to tags for compliance + description: Returns a list of tag objects associated to this case. operationId: compliance.ediscovery.cases_CreateTags parameters: - name: case-id @@ -7985,6 +8104,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get tags from compliance + description: Returns a list of tag objects associated to this case. operationId: compliance.ediscovery.cases_GetTags parameters: - name: case-id @@ -8059,6 +8179,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the navigation property tags in compliance + description: Returns a list of tag objects associated to this case. operationId: compliance.ediscovery.cases_UpdateTags parameters: - name: case-id @@ -8092,6 +8213,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete navigation property tags for compliance + description: Returns a list of tag objects associated to this case. operationId: compliance.ediscovery.cases_DeleteTags parameters: - name: case-id @@ -8124,6 +8246,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get childTags from compliance + description: Returns the tags that are a child of a tag. operationId: compliance.ediscovery.cases.tags_ListChildTags parameters: - name: case-id @@ -8229,6 +8352,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get ref of childTags from compliance + description: Returns the tags that are a child of a tag. operationId: compliance.ediscovery.cases.tags_ListRefChildTags parameters: - name: case-id @@ -8300,6 +8424,7 @@ paths: tags: - compliance.ediscoveryroot summary: Create new navigation property ref to childTags for compliance + description: Returns the tags that are a child of a tag. operationId: compliance.ediscovery.cases.tags_CreateRefChildTags parameters: - name: case-id @@ -8375,6 +8500,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get parent from compliance + description: Returns the parent tag of the specified tag. operationId: compliance.ediscovery.cases.tags_GetParent parameters: - name: case-id @@ -8450,6 +8576,7 @@ paths: tags: - compliance.ediscoveryroot summary: Get ref of parent from compliance + description: Returns the parent tag of the specified tag. operationId: compliance.ediscovery.cases.tags_GetRefParent parameters: - name: case-id @@ -8491,6 +8618,7 @@ paths: tags: - compliance.ediscoveryroot summary: Update the ref of navigation property parent in compliance + description: Returns the parent tag of the specified tag. operationId: compliance.ediscovery.cases.tags_SetRefParent parameters: - name: case-id @@ -8526,6 +8654,7 @@ paths: tags: - compliance.ediscoveryroot summary: Delete ref of navigation property parent for compliance + description: Returns the parent tag of the specified tag. operationId: compliance.ediscovery.cases.tags_DeleteRefParent parameters: - name: case-id @@ -8647,22 +8776,27 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.ediscovery.custodian' + description: Returns a list of case custodian objects for this case. Nullable. legalHolds: type: array items: $ref: '#/components/schemas/microsoft.graph.ediscovery.legalHold' + description: Returns a list of case legalHold objects for this case. Nullable. noncustodialDataSources: type: array items: $ref: '#/components/schemas/microsoft.graph.ediscovery.noncustodialDataSource' + description: Returns a list of case noncustodialDataSource objects for this case. Nullable. operations: type: array items: $ref: '#/components/schemas/microsoft.graph.ediscovery.caseOperation' + description: Returns a list of case operation objects for this case. Nullable. reviewSets: type: array items: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSet' + description: Returns a list of reviewSet objects in the case. Read-only. Nullable. settings: $ref: '#/components/schemas/microsoft.graph.ediscovery.settings' sourceCollections: @@ -9058,6 +9192,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -9224,6 +9359,7 @@ components: properties: applyHoldToSource: type: boolean + description: Indicates if hold is applied to non-custodial data source (such as mailbox or site). nullable: true dataSource: $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' @@ -9362,7 +9498,8 @@ components: noncustodialSources: type: array items: - $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' + $ref: '#/components/schemas/microsoft.graph.ediscovery.noncustodialDataSource' + description: noncustodialDataSource sources that are included in the sourceCollection additionalProperties: type: object microsoft.graph.ediscovery.additionalDataOptions: @@ -9565,19 +9702,23 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: Created date and time of the dataSourceContainer entity. format: date-time nullable: true displayName: type: string + description: Display name of the dataSourceContainer entity. 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: Last modified date and time of the dataSourceContainer. format: date-time nullable: true 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: Date and time that the dataSourceContainer was released from the case. format: date-time nullable: true status: @@ -10310,7 +10451,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -10764,7 +10905,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -10914,16 +11055,19 @@ components: properties: isEnabled: type: boolean + description: Indicates whether or not OCR is enabled for the case. nullable: true maxImageSize: maximum: 2147483647 minimum: -2147483648 type: integer + description: Maximum image size that will be processed in KB). format: int32 nullable: true timeout: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string + description: 'The timeout duration for the OCR engine. A longer timeout may increase success of OCR, but may add to the total processing time.' format: duration nullable: true additionalProperties: @@ -10934,23 +11078,27 @@ components: properties: isEnabled: type: boolean + description: Indicates whether email threading and near duplicate detection are enabled. nullable: true maxWords: maximum: 2147483647 minimum: -2147483648 type: integer + description: See Minimum/maximum number of words to learn more. format: int32 nullable: true minWords: maximum: 2147483647 minimum: -2147483648 type: integer + description: See Minimum/maximum number of words to learn more. format: int32 nullable: true similarityThreshold: maximum: 2147483647 minimum: -2147483648 type: integer + description: See Document and email similarity threshold to learn more. format: int32 nullable: true additionalProperties: @@ -10961,17 +11109,21 @@ components: properties: dynamicallyAdjustTopicCount: type: boolean + description: 'To learn more, see Adjust maximum number of themes dynamically.' nullable: true ignoreNumbers: type: boolean + description: 'To learn more, see Include numbers in themes.' nullable: true isEnabled: type: boolean + description: Indicates whether themes is enabled for the case. nullable: true topicCount: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'To learn more, see Maximum number of themes.' format: int32 nullable: true additionalProperties: @@ -11069,7 +11221,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -11082,7 +11234,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -11094,12 +11246,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -11108,7 +11260,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -11116,7 +11268,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -11132,7 +11284,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -11148,7 +11300,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -11172,7 +11324,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -11191,11 +11343,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -11203,7 +11355,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -11250,7 +11402,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -11259,7 +11411,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -11297,15 +11449,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -11313,7 +11465,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -11442,6 +11594,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -13553,7 +13709,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -13820,7 +13976,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -14632,6 +14788,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -14913,16 +15073,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -15591,11 +15751,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -15610,6 +15771,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -15619,7 +15781,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -15656,7 +15818,6 @@ components: 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: @@ -16575,11 +16736,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -17265,6 +17426,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -17389,7 +17552,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -17413,7 +17576,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -18454,53 +18617,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -18527,6 +18695,35 @@ components: additionalProperties: type: object description: Enrollment Configuration Assignment + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -18923,6 +19120,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -19116,6 +19317,19 @@ components: additionalProperties: type: object description: Logged On User + microsoft.graph.assignmentFilterEvaluationStatusDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: assignmentFilterEvaluationStatusDetails + type: object + properties: + payloadId: + type: string + description: PayloadId on which filter has been applied. + nullable: true + additionalProperties: + type: object + description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceCompliancePolicyState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -19157,19 +19371,6 @@ components: additionalProperties: type: object description: Device Compliance Policy State for a given device. - microsoft.graph.assignmentFilterEvaluationStatusDetails: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: assignmentFilterEvaluationStatusDetails - type: object - properties: - payloadId: - type: string - description: PayloadId on which filter has been applied. - nullable: true - additionalProperties: - type: object - description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceConfigurationState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -19560,10 +19761,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -20506,10 +20707,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -20580,18 +20793,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -20604,6 +20816,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -20659,7 +20872,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -21360,7 +21572,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string @@ -21715,6 +21927,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -21747,6 +21964,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -21850,6 +22069,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' @@ -22570,7 +22790,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -22589,14 +22809,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -22605,18 +22825,18 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object microsoft.graph.deviceAndAppManagementAssignmentSource: @@ -22638,16 +22858,6 @@ components: additionalProperties: type: object description: Base type for assignment targets. - microsoft.graph.configurationManagerClientState: - title: configurationManagerClientState - enum: - - unknown - - installed - - healthy - - installFailed - - updateFailed - - communicationError - type: string microsoft.graph.actionState: title: actionState enum: @@ -22659,6 +22869,35 @@ components: - failed - notSupported type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object + microsoft.graph.configurationManagerClientState: + title: configurationManagerClientState + enum: + - unknown + - installed + - healthy + - installFailed + - updateFailed + - communicationError + type: string microsoft.graph.deviceGuardLocalSystemAuthorityCredentialGuardState: title: deviceGuardLocalSystemAuthorityCredentialGuardState enum: @@ -23563,18 +23802,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -24043,17 +24286,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -24061,9 +24309,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -24466,16 +24716,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: diff --git a/openApiDocs/beta/CrossDeviceExperiences.yml b/openApiDocs/beta/CrossDeviceExperiences.yml index 79ca08fa5ca..21ff0c42ae0 100644 --- a/openApiDocs/beta/CrossDeviceExperiences.yml +++ b/openApiDocs/beta/CrossDeviceExperiences.yml @@ -11,6 +11,7 @@ paths: tags: - users.userActivity summary: Get activities from users + description: The user's activities across devices. Read-only. Nullable. operationId: users_ListActivities parameters: - name: user-id @@ -130,6 +131,7 @@ paths: tags: - users.userActivity summary: Create new navigation property to activities for users + description: The user's activities across devices. Read-only. Nullable. operationId: users_CreateActivities parameters: - name: user-id @@ -161,6 +163,7 @@ paths: tags: - users.userActivity summary: Get activities from users + description: The user's activities across devices. Read-only. Nullable. operationId: users_GetActivities parameters: - name: user-id @@ -236,6 +239,7 @@ paths: tags: - users.userActivity summary: Update the navigation property activities in users + description: The user's activities across devices. Read-only. Nullable. operationId: users_UpdateActivities parameters: - name: user-id @@ -269,6 +273,7 @@ paths: tags: - users.userActivity summary: Delete navigation property activities for users + description: The user's activities across devices. Read-only. Nullable. operationId: users_DeleteActivities parameters: - name: user-id @@ -301,6 +306,7 @@ paths: tags: - users.userActivity summary: Get historyItems from users + description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. operationId: users.activities_ListHistoryItems parameters: - name: user-id @@ -412,6 +418,7 @@ paths: tags: - users.userActivity summary: Create new navigation property to historyItems for users + description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. operationId: users.activities_CreateHistoryItems parameters: - name: user-id @@ -450,6 +457,7 @@ paths: tags: - users.userActivity summary: Get historyItems from users + description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. operationId: users.activities_GetHistoryItems parameters: - name: user-id @@ -528,6 +536,7 @@ paths: tags: - users.userActivity summary: Update the navigation property historyItems in users + description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. operationId: users.activities_UpdateHistoryItems parameters: - name: user-id @@ -568,6 +577,7 @@ paths: tags: - users.userActivity summary: Delete navigation property historyItems for users + description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. operationId: users.activities_DeleteHistoryItems parameters: - name: user-id @@ -607,6 +617,7 @@ paths: tags: - users.userActivity summary: Get activity from users + description: Optional. NavigationProperty/Containment; navigation property to the associated activity. operationId: users.activities.historyItems_GetActivity parameters: - name: user-id @@ -691,6 +702,7 @@ paths: tags: - users.userActivity summary: Get ref of activity from users + description: Optional. NavigationProperty/Containment; navigation property to the associated activity. operationId: users.activities.historyItems_GetRefActivity parameters: - name: user-id @@ -735,6 +747,7 @@ paths: tags: - users.userActivity summary: Update the ref of navigation property activity in users + description: Optional. NavigationProperty/Containment; navigation property to the associated activity. operationId: users.activities.historyItems_SetRefActivity parameters: - name: user-id @@ -777,6 +790,7 @@ paths: tags: - users.userActivity summary: Delete ref of navigation property activity for users + description: Optional. NavigationProperty/Containment; navigation property to the associated activity. operationId: users.activities.historyItems_DeleteRefActivity parameters: - name: user-id @@ -1519,11 +1533,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -1538,6 +1553,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -1547,7 +1563,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. diff --git a/openApiDocs/beta/DeviceManagement.Actions.yml b/openApiDocs/beta/DeviceManagement.Actions.yml index e384dcdbc9d..d277239d192 100644 --- a/openApiDocs/beta/DeviceManagement.Actions.yml +++ b/openApiDocs/beta/DeviceManagement.Actions.yml @@ -255,6 +255,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action createGooglePlayWebToken + description: Generates a web token that is used in an embeddable component. operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings_createGooglePlayWebToken requestBody: description: Action parameters @@ -315,6 +316,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setAndroidDeviceOwnerFullyManagedEnrollmentState + description: Sets the AndroidManagedStoreAccountEnterpriseSettings AndroidDeviceOwnerFullyManagedEnrollmentEnabled to the given value. operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings_setAndroidDeviceOwnerFullyManagedEnrollmentState requestBody: description: Action parameters @@ -364,6 +366,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action generateApplePushNotificationCertificateSigningRequest + description: Download Apple push notification certificate signing request operationId: deviceManagement.applePushNotificationCertificate_generateApplePushNotificationCertificateSigningRequest responses: '200': @@ -528,11 +531,46 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.activateDeviceEsim': + post: + tags: + - deviceManagement.Actions + summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. + operationId: deviceManagement.comanagedDevices_activateDeviceEsim + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + carrierUrl: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock': post: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.comanagedDevices_bypassActivationLock parameters: - name: managedDevice-id @@ -553,6 +591,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.comanagedDevices_cleanWindowsDevice parameters: - name: managedDevice-id @@ -622,6 +661,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.comanagedDevices_deleteUserFromSharedAppleDevice parameters: - name: managedDevice-id @@ -655,6 +695,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.comanagedDevices_disableLostMode parameters: - name: managedDevice-id @@ -675,6 +716,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.comanagedDevices_enableLostMode parameters: - name: managedDevice-id @@ -714,6 +756,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.comanagedDevices_locateDevice parameters: - name: managedDevice-id @@ -734,6 +777,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.comanagedDevices_logoutSharedAppleDeviceActiveUser parameters: - name: managedDevice-id @@ -789,6 +833,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Remote lock operationId: deviceManagement.comanagedDevices_playLostModeSound parameters: - name: managedDevice-id @@ -809,6 +854,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.comanagedDevices_rebootNow parameters: - name: managedDevice-id @@ -829,6 +875,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.comanagedDevices_recoverPasscode parameters: - name: managedDevice-id @@ -849,6 +896,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.comanagedDevices_remoteLock parameters: - name: managedDevice-id @@ -864,11 +912,32 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.reprovisionCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action reprovisionCloudPc + operationId: deviceManagement.comanagedDevices_reprovisionCloudPc + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance': post: tags: - deviceManagement.Actions summary: Invoke action requestRemoteAssistance + description: Request remote assistance operationId: deviceManagement.comanagedDevices_requestRemoteAssistance parameters: - name: managedDevice-id @@ -889,6 +958,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action resetPasscode + description: Reset passcode operationId: deviceManagement.comanagedDevices_resetPasscode parameters: - name: managedDevice-id @@ -904,11 +974,45 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.resizeCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action resizeCloudPc + operationId: deviceManagement.comanagedDevices_resizeCloudPc + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + targetServicePlanId: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.retire': post: tags: - deviceManagement.Actions summary: Invoke action retire + description: Retire a device operationId: deviceManagement.comanagedDevices_retire parameters: - name: managedDevice-id @@ -929,6 +1033,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device operationId: deviceManagement.comanagedDevices_revokeAppleVppLicenses parameters: - name: managedDevice-id @@ -949,6 +1054,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys operationId: deviceManagement.comanagedDevices_rotateBitLockerKeys parameters: - name: managedDevice-id @@ -1023,6 +1129,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.comanagedDevices_setDeviceName parameters: - name: managedDevice-id @@ -1056,6 +1163,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.comanagedDevices_shutDown parameters: - name: managedDevice-id @@ -1096,6 +1204,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.comanagedDevices_triggerConfigurationManagerAction parameters: - name: managedDevice-id @@ -1213,6 +1322,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.comanagedDevices_wipe parameters: - name: managedDevice-id @@ -1240,6 +1350,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true useProtectedWipe: type: boolean default: false @@ -1253,6 +1367,33 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + /deviceManagement/comanagedDevices/microsoft.graph.bulkReprovisionCloudPc: + post: + tags: + - deviceManagement.Actions + summary: Invoke action bulkReprovisionCloudPc + operationId: deviceManagement.comanagedDevices_bulkReprovisionCloudPc + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + managedDeviceIds: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action /deviceManagement/comanagedDevices/microsoft.graph.executeAction: post: tags: @@ -1343,6 +1484,46 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/microsoft.graph.createCopy': + post: + tags: + - deviceManagement.Actions + summary: Invoke action createCopy + operationId: deviceManagement.configurationPolicies_createCopy + parameters: + - name: deviceManagementConfigurationPolicy-id + in: path + description: 'key: id of deviceManagementConfigurationPolicy' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementConfigurationPolicy + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + displayName: + type: string + nullable: true + description: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/dataSharingConsents/{dataSharingConsent-id}/microsoft.graph.consentToDataSharing': post: tags: @@ -1484,6 +1665,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action generateEncryptionPublicKey + description: Generate a public key to use to encrypt the Apple device enrollment program token operationId: deviceManagement.depOnboardingSettings_generateEncryptionPublicKey parameters: - name: depOnboardingSetting-id @@ -1529,6 +1711,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action syncWithAppleDeviceEnrollmentProgram + description: Synchronizes between Apple Device Enrollment Program and Intune operationId: deviceManagement.depOnboardingSettings_syncWithAppleDeviceEnrollmentProgram parameters: - name: depOnboardingSetting-id @@ -1569,6 +1752,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action uploadDepToken + description: Uploads a new Device Enrollment Program token operationId: deviceManagement.depOnboardingSettings_uploadDepToken parameters: - name: depOnboardingSetting-id @@ -1600,6 +1784,41 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/microsoft.graph.bulkReprovisionCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action bulkReprovisionCloudPc + operationId: deviceManagement.detectedApps.managedDevices_bulkReprovisionCloudPc + parameters: + - name: detectedApp-id + in: path + description: 'key: id of detectedApp' + required: true + schema: + type: string + x-ms-docs-key-type: detectedApp + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + managedDeviceIds: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/microsoft.graph.executeAction': post: tags: @@ -1852,11 +2071,53 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim': + post: + tags: + - deviceManagement.Actions + summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. + operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_activateDeviceEsim + parameters: + - name: deviceComplianceScript-id + in: path + description: 'key: id of deviceComplianceScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceComplianceScript + - name: deviceComplianceScriptDeviceState-id + in: path + description: 'key: id of deviceComplianceScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceComplianceScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + carrierUrl: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock': post: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_bypassActivationLock parameters: - name: deviceComplianceScript-id @@ -1884,6 +2145,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_cleanWindowsDevice parameters: - name: deviceComplianceScript-id @@ -1967,6 +2229,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_deleteUserFromSharedAppleDevice parameters: - name: deviceComplianceScript-id @@ -2007,6 +2270,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_disableLostMode parameters: - name: deviceComplianceScript-id @@ -2034,6 +2298,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_enableLostMode parameters: - name: deviceComplianceScript-id @@ -2080,6 +2345,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_locateDevice parameters: - name: deviceComplianceScript-id @@ -2107,6 +2373,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_logoutSharedAppleDeviceActiveUser parameters: - name: deviceComplianceScript-id @@ -2176,6 +2443,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Remote lock operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_playLostModeSound parameters: - name: deviceComplianceScript-id @@ -2203,6 +2471,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_rebootNow parameters: - name: deviceComplianceScript-id @@ -2230,6 +2499,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_recoverPasscode parameters: - name: deviceComplianceScript-id @@ -2257,6 +2527,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_remoteLock parameters: - name: deviceComplianceScript-id @@ -2279,12 +2550,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': + '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc': post: tags: - deviceManagement.Actions - summary: Invoke action requestRemoteAssistance - operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_requestRemoteAssistance + summary: Invoke action reprovisionCloudPc + operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_reprovisionCloudPc parameters: - name: deviceComplianceScript-id in: path @@ -2306,12 +2577,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode': + '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': post: tags: - deviceManagement.Actions - summary: Invoke action resetPasscode - operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_resetPasscode + summary: Invoke action requestRemoteAssistance + description: Request remote assistance + operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_requestRemoteAssistance parameters: - name: deviceComplianceScript-id in: path @@ -2333,12 +2605,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.retire': + '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode': post: tags: - deviceManagement.Actions - summary: Invoke action retire - operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_retire + summary: Invoke action resetPasscode + description: Reset passcode + operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_resetPasscode parameters: - name: deviceComplianceScript-id in: path @@ -2360,12 +2633,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses': + '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc': post: tags: - deviceManagement.Actions - summary: Invoke action revokeAppleVppLicenses - operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_revokeAppleVppLicenses + summary: Invoke action resizeCloudPc + operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_resizeCloudPc parameters: - name: deviceComplianceScript-id in: path @@ -2381,18 +2654,32 @@ paths: schema: type: string x-ms-docs-key-type: deviceComplianceScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + targetServicePlanId: + type: string + nullable: true + additionalProperties: + type: object + required: true responses: '204': description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys': + '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.retire': post: tags: - deviceManagement.Actions - summary: Invoke action rotateBitLockerKeys - operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_rotateBitLockerKeys + summary: Invoke action retire + description: Retire a device + operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_retire parameters: - name: deviceComplianceScript-id in: path @@ -2414,12 +2701,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey': + '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses': post: tags: - deviceManagement.Actions - summary: Invoke action rotateFileVaultKey - operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_rotateFileVaultKey + summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device + operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_revokeAppleVppLicenses parameters: - name: deviceComplianceScript-id in: path @@ -2441,12 +2729,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal': + '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys': post: tags: - deviceManagement.Actions - summary: Invoke action sendCustomNotificationToCompanyPortal - operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_sendCustomNotificationToCompanyPortal + summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys + operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_rotateBitLockerKeys parameters: - name: deviceComplianceScript-id in: path @@ -2462,7 +2751,61 @@ paths: schema: type: string x-ms-docs-key-type: deviceComplianceScriptDeviceState - requestBody: + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey': + post: + tags: + - deviceManagement.Actions + summary: Invoke action rotateFileVaultKey + operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_rotateFileVaultKey + parameters: + - name: deviceComplianceScript-id + in: path + description: 'key: id of deviceComplianceScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceComplianceScript + - name: deviceComplianceScriptDeviceState-id + in: path + description: 'key: id of deviceComplianceScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceComplianceScriptDeviceState + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal': + post: + tags: + - deviceManagement.Actions + summary: Invoke action sendCustomNotificationToCompanyPortal + operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_sendCustomNotificationToCompanyPortal + parameters: + - name: deviceComplianceScript-id + in: path + description: 'key: id of deviceComplianceScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceComplianceScript + - name: deviceComplianceScriptDeviceState-id + in: path + description: 'key: id of deviceComplianceScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceComplianceScriptDeviceState + requestBody: description: Action parameters content: application/json: @@ -2487,6 +2830,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_setDeviceName parameters: - name: deviceComplianceScript-id @@ -2527,6 +2871,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_shutDown parameters: - name: deviceComplianceScript-id @@ -2581,6 +2926,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_triggerConfigurationManagerAction parameters: - name: deviceComplianceScript-id @@ -2726,6 +3072,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_wipe parameters: - name: deviceComplianceScript-id @@ -2760,6 +3107,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true useProtectedWipe: type: boolean default: false @@ -2945,6 +3296,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action extendFeatureUpdatesPause + description: Extend Feature Updates Pause for a Windows Update for Business ring. operationId: deviceManagement.deviceConfigurations.groupAssignments.deviceConfiguration.microsoft.graph.windowsUpdateForBusinessConfiguration_extendFeatureUpdatesPause parameters: - name: deviceConfiguration-id @@ -2972,6 +3324,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action extendQualityUpdatesPause + description: Extend Quality Updates Pause for a Windows Update for Business ring. operationId: deviceManagement.deviceConfigurations.groupAssignments.deviceConfiguration.microsoft.graph.windowsUpdateForBusinessConfiguration_extendQualityUpdatesPause parameters: - name: deviceConfiguration-id @@ -3111,6 +3464,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action extendFeatureUpdatesPause + description: Extend Feature Updates Pause for a Windows Update for Business ring. operationId: deviceManagement.deviceConfigurations.microsoft.graph.windowsUpdateForBusinessConfiguration_extendFeatureUpdatesPause parameters: - name: deviceConfiguration-id @@ -3131,6 +3485,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action extendQualityUpdatesPause + description: Extend Quality Updates Pause for a Windows Update for Business ring. operationId: deviceManagement.deviceConfigurations.microsoft.graph.windowsUpdateForBusinessConfiguration_extendQualityUpdatesPause parameters: - name: deviceConfiguration-id @@ -3212,11 +3567,53 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim': + post: + tags: + - deviceManagement.Actions + summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. + operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_activateDeviceEsim + parameters: + - name: deviceCustomAttributeShellScript-id + in: path + description: 'key: id of deviceCustomAttributeShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceCustomAttributeShellScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + carrierUrl: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock': post: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_bypassActivationLock parameters: - name: deviceCustomAttributeShellScript-id @@ -3244,6 +3641,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_cleanWindowsDevice parameters: - name: deviceCustomAttributeShellScript-id @@ -3327,6 +3725,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_deleteUserFromSharedAppleDevice parameters: - name: deviceCustomAttributeShellScript-id @@ -3367,6 +3766,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_disableLostMode parameters: - name: deviceCustomAttributeShellScript-id @@ -3394,6 +3794,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_enableLostMode parameters: - name: deviceCustomAttributeShellScript-id @@ -3440,6 +3841,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_locateDevice parameters: - name: deviceCustomAttributeShellScript-id @@ -3467,6 +3869,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_logoutSharedAppleDeviceActiveUser parameters: - name: deviceCustomAttributeShellScript-id @@ -3536,6 +3939,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Remote lock operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_playLostModeSound parameters: - name: deviceCustomAttributeShellScript-id @@ -3563,6 +3967,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_rebootNow parameters: - name: deviceCustomAttributeShellScript-id @@ -3590,6 +3995,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_recoverPasscode parameters: - name: deviceCustomAttributeShellScript-id @@ -3617,6 +4023,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_remoteLock parameters: - name: deviceCustomAttributeShellScript-id @@ -3639,11 +4046,39 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action reprovisionCloudPc + operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_reprovisionCloudPc + parameters: + - name: deviceCustomAttributeShellScript-id + in: path + description: 'key: id of deviceCustomAttributeShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceCustomAttributeShellScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': post: tags: - deviceManagement.Actions summary: Invoke action requestRemoteAssistance + description: Request remote assistance operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_requestRemoteAssistance parameters: - name: deviceCustomAttributeShellScript-id @@ -3671,6 +4106,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action resetPasscode + description: Reset passcode operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_resetPasscode parameters: - name: deviceCustomAttributeShellScript-id @@ -3693,11 +4129,52 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action resizeCloudPc + operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_resizeCloudPc + parameters: + - name: deviceCustomAttributeShellScript-id + in: path + description: 'key: id of deviceCustomAttributeShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceCustomAttributeShellScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + targetServicePlanId: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire': post: tags: - deviceManagement.Actions summary: Invoke action retire + description: Retire a device operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_retire parameters: - name: deviceCustomAttributeShellScript-id @@ -3725,6 +4202,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_revokeAppleVppLicenses parameters: - name: deviceCustomAttributeShellScript-id @@ -3752,6 +4230,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_rotateBitLockerKeys parameters: - name: deviceCustomAttributeShellScript-id @@ -3847,6 +4326,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_setDeviceName parameters: - name: deviceCustomAttributeShellScript-id @@ -3887,6 +4367,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_shutDown parameters: - name: deviceCustomAttributeShellScript-id @@ -3941,6 +4422,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_triggerConfigurationManagerAction parameters: - name: deviceCustomAttributeShellScript-id @@ -4086,6 +4568,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_wipe parameters: - name: deviceCustomAttributeShellScript-id @@ -4120,6 +4603,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true useProtectedWipe: type: boolean default: false @@ -4171,11 +4658,60 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim': + post: + tags: + - deviceManagement.Actions + summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. + operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_activateDeviceEsim + parameters: + - name: deviceCustomAttributeShellScript-id + in: path + description: 'key: id of deviceCustomAttributeShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceCustomAttributeShellScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + carrierUrl: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock': post: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_bypassActivationLock parameters: - name: deviceCustomAttributeShellScript-id @@ -4210,6 +4746,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_cleanWindowsDevice parameters: - name: deviceCustomAttributeShellScript-id @@ -4307,6 +4844,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_deleteUserFromSharedAppleDevice parameters: - name: deviceCustomAttributeShellScript-id @@ -4354,6 +4892,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_disableLostMode parameters: - name: deviceCustomAttributeShellScript-id @@ -4388,6 +4927,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_enableLostMode parameters: - name: deviceCustomAttributeShellScript-id @@ -4441,6 +4981,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_locateDevice parameters: - name: deviceCustomAttributeShellScript-id @@ -4475,6 +5016,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_logoutSharedAppleDeviceActiveUser parameters: - name: deviceCustomAttributeShellScript-id @@ -4558,6 +5100,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Remote lock operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_playLostModeSound parameters: - name: deviceCustomAttributeShellScript-id @@ -4592,6 +5135,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_rebootNow parameters: - name: deviceCustomAttributeShellScript-id @@ -4626,6 +5170,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_recoverPasscode parameters: - name: deviceCustomAttributeShellScript-id @@ -4660,6 +5205,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_remoteLock parameters: - name: deviceCustomAttributeShellScript-id @@ -4689,12 +5235,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc': post: tags: - deviceManagement.Actions - summary: Invoke action requestRemoteAssistance - operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_requestRemoteAssistance + summary: Invoke action reprovisionCloudPc + operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_reprovisionCloudPc parameters: - name: deviceCustomAttributeShellScript-id in: path @@ -4723,12 +5269,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode': + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': post: tags: - deviceManagement.Actions - summary: Invoke action resetPasscode - operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_resetPasscode + summary: Invoke action requestRemoteAssistance + description: Request remote assistance + operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_requestRemoteAssistance parameters: - name: deviceCustomAttributeShellScript-id in: path @@ -4757,12 +5304,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire': + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode': post: tags: - deviceManagement.Actions - summary: Invoke action retire - operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_retire + summary: Invoke action resetPasscode + description: Reset passcode + operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_resetPasscode parameters: - name: deviceCustomAttributeShellScript-id in: path @@ -4791,12 +5339,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses': + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc': post: tags: - deviceManagement.Actions - summary: Invoke action revokeAppleVppLicenses - operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_revokeAppleVppLicenses + summary: Invoke action resizeCloudPc + operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_resizeCloudPc parameters: - name: deviceCustomAttributeShellScript-id in: path @@ -4819,18 +5367,32 @@ paths: schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + targetServicePlanId: + type: string + nullable: true + additionalProperties: + type: object + required: true responses: '204': description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys': + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire': post: tags: - deviceManagement.Actions - summary: Invoke action rotateBitLockerKeys - operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_rotateBitLockerKeys + summary: Invoke action retire + description: Retire a device + operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_retire parameters: - name: deviceCustomAttributeShellScript-id in: path @@ -4859,12 +5421,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey': + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses': post: tags: - deviceManagement.Actions - summary: Invoke action rotateFileVaultKey - operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_rotateFileVaultKey + summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device + operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_revokeAppleVppLicenses parameters: - name: deviceCustomAttributeShellScript-id in: path @@ -4893,12 +5456,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal': + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys': post: tags: - deviceManagement.Actions - summary: Invoke action sendCustomNotificationToCompanyPortal - operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_sendCustomNotificationToCompanyPortal + summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys + operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_rotateBitLockerKeys parameters: - name: deviceCustomAttributeShellScript-id in: path @@ -4921,14 +5485,82 @@ paths: schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState - requestBody: - description: Action parameters - content: - application/json: - schema: - type: object - properties: - notificationTitle: + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey': + post: + tags: + - deviceManagement.Actions + summary: Invoke action rotateFileVaultKey + operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_rotateFileVaultKey + parameters: + - name: deviceCustomAttributeShellScript-id + in: path + description: 'key: id of deviceCustomAttributeShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceCustomAttributeShellScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal': + post: + tags: + - deviceManagement.Actions + summary: Invoke action sendCustomNotificationToCompanyPortal + operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_sendCustomNotificationToCompanyPortal + parameters: + - name: deviceCustomAttributeShellScript-id + in: path + description: 'key: id of deviceCustomAttributeShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceCustomAttributeShellScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + notificationTitle: type: string notificationBody: type: string @@ -4946,6 +5578,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_setDeviceName parameters: - name: deviceCustomAttributeShellScript-id @@ -4993,6 +5626,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_shutDown parameters: - name: deviceCustomAttributeShellScript-id @@ -5061,6 +5695,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_triggerConfigurationManagerAction parameters: - name: deviceCustomAttributeShellScript-id @@ -5234,6 +5869,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_wipe parameters: - name: deviceCustomAttributeShellScript-id @@ -5275,6 +5911,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true useProtectedWipe: type: boolean default: false @@ -5390,11 +6030,53 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim': + post: + tags: + - deviceManagement.Actions + summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. + operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_activateDeviceEsim + parameters: + - name: deviceHealthScript-id + in: path + description: 'key: id of deviceHealthScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceHealthScript + - name: deviceHealthScriptDeviceState-id + in: path + description: 'key: id of deviceHealthScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceHealthScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + carrierUrl: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock': post: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_bypassActivationLock parameters: - name: deviceHealthScript-id @@ -5422,6 +6104,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_cleanWindowsDevice parameters: - name: deviceHealthScript-id @@ -5505,6 +6188,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_deleteUserFromSharedAppleDevice parameters: - name: deviceHealthScript-id @@ -5545,6 +6229,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_disableLostMode parameters: - name: deviceHealthScript-id @@ -5572,6 +6257,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_enableLostMode parameters: - name: deviceHealthScript-id @@ -5618,6 +6304,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_locateDevice parameters: - name: deviceHealthScript-id @@ -5645,6 +6332,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_logoutSharedAppleDeviceActiveUser parameters: - name: deviceHealthScript-id @@ -5714,6 +6402,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Remote lock operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_playLostModeSound parameters: - name: deviceHealthScript-id @@ -5741,6 +6430,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_rebootNow parameters: - name: deviceHealthScript-id @@ -5768,6 +6458,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_recoverPasscode parameters: - name: deviceHealthScript-id @@ -5795,6 +6486,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_remoteLock parameters: - name: deviceHealthScript-id @@ -5817,11 +6509,39 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action reprovisionCloudPc + operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_reprovisionCloudPc + parameters: + - name: deviceHealthScript-id + in: path + description: 'key: id of deviceHealthScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceHealthScript + - name: deviceHealthScriptDeviceState-id + in: path + description: 'key: id of deviceHealthScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceHealthScriptDeviceState + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': post: tags: - deviceManagement.Actions summary: Invoke action requestRemoteAssistance + description: Request remote assistance operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_requestRemoteAssistance parameters: - name: deviceHealthScript-id @@ -5849,6 +6569,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action resetPasscode + description: Reset passcode operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_resetPasscode parameters: - name: deviceHealthScript-id @@ -5871,11 +6592,52 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action resizeCloudPc + operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_resizeCloudPc + parameters: + - name: deviceHealthScript-id + in: path + description: 'key: id of deviceHealthScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceHealthScript + - name: deviceHealthScriptDeviceState-id + in: path + description: 'key: id of deviceHealthScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceHealthScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + targetServicePlanId: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.retire': post: tags: - deviceManagement.Actions summary: Invoke action retire + description: Retire a device operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_retire parameters: - name: deviceHealthScript-id @@ -5903,6 +6665,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_revokeAppleVppLicenses parameters: - name: deviceHealthScript-id @@ -5930,6 +6693,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_rotateBitLockerKeys parameters: - name: deviceHealthScript-id @@ -6025,6 +6789,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_setDeviceName parameters: - name: deviceHealthScript-id @@ -6065,6 +6830,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_shutDown parameters: - name: deviceHealthScript-id @@ -6119,6 +6885,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_triggerConfigurationManagerAction parameters: - name: deviceHealthScript-id @@ -6264,6 +7031,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_wipe parameters: - name: deviceHealthScript-id @@ -6298,6 +7066,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true useProtectedWipe: type: boolean default: false @@ -6350,6 +7122,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action getGlobalScriptHighestAvailableVersion + description: Update the Proprietary Device Health Script operationId: deviceManagement.deviceHealthScripts_getGlobalScriptHighestAvailableVersion parameters: - name: deviceHealthScript-id @@ -6375,6 +7148,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action updateGlobalScript + description: Update the Proprietary Device Health Script operationId: deviceManagement.deviceHealthScripts_updateGlobalScript parameters: - name: deviceHealthScript-id @@ -6420,11 +7194,53 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim': + post: + tags: + - deviceManagement.Actions + summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_activateDeviceEsim + parameters: + - name: deviceManagementScript-id + in: path + description: 'key: id of deviceManagementScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + carrierUrl: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock': post: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_bypassActivationLock parameters: - name: deviceManagementScript-id @@ -6452,6 +7268,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_cleanWindowsDevice parameters: - name: deviceManagementScript-id @@ -6535,6 +7352,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_deleteUserFromSharedAppleDevice parameters: - name: deviceManagementScript-id @@ -6575,6 +7393,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_disableLostMode parameters: - name: deviceManagementScript-id @@ -6602,6 +7421,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_enableLostMode parameters: - name: deviceManagementScript-id @@ -6648,6 +7468,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_locateDevice parameters: - name: deviceManagementScript-id @@ -6675,6 +7496,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_logoutSharedAppleDeviceActiveUser parameters: - name: deviceManagementScript-id @@ -6744,6 +7566,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Remote lock operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_playLostModeSound parameters: - name: deviceManagementScript-id @@ -6771,6 +7594,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_rebootNow parameters: - name: deviceManagementScript-id @@ -6798,6 +7622,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_recoverPasscode parameters: - name: deviceManagementScript-id @@ -6825,6 +7650,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_remoteLock parameters: - name: deviceManagementScript-id @@ -6847,12 +7673,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc': post: tags: - deviceManagement.Actions - summary: Invoke action requestRemoteAssistance - operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_requestRemoteAssistance + summary: Invoke action reprovisionCloudPc + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_reprovisionCloudPc parameters: - name: deviceManagementScript-id in: path @@ -6874,12 +7700,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode': + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': post: tags: - deviceManagement.Actions - summary: Invoke action resetPasscode - operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_resetPasscode + summary: Invoke action requestRemoteAssistance + description: Request remote assistance + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_requestRemoteAssistance parameters: - name: deviceManagementScript-id in: path @@ -6901,12 +7728,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire': + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode': post: tags: - deviceManagement.Actions - summary: Invoke action retire - operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_retire + summary: Invoke action resetPasscode + description: Reset passcode + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_resetPasscode parameters: - name: deviceManagementScript-id in: path @@ -6928,12 +7756,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses': + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc': post: tags: - deviceManagement.Actions - summary: Invoke action revokeAppleVppLicenses - operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_revokeAppleVppLicenses + summary: Invoke action resizeCloudPc + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_resizeCloudPc parameters: - name: deviceManagementScript-id in: path @@ -6949,18 +7777,32 @@ paths: schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + targetServicePlanId: + type: string + nullable: true + additionalProperties: + type: object + required: true responses: '204': description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys': + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire': post: tags: - deviceManagement.Actions - summary: Invoke action rotateBitLockerKeys - operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_rotateBitLockerKeys + summary: Invoke action retire + description: Retire a device + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_retire parameters: - name: deviceManagementScript-id in: path @@ -6982,12 +7824,68 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey': + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses': post: tags: - deviceManagement.Actions - summary: Invoke action rotateFileVaultKey - operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_rotateFileVaultKey + summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_revokeAppleVppLicenses + parameters: + - name: deviceManagementScript-id + in: path + description: 'key: id of deviceManagementScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys': + post: + tags: + - deviceManagement.Actions + summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_rotateBitLockerKeys + parameters: + - name: deviceManagementScript-id + in: path + description: 'key: id of deviceManagementScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey': + post: + tags: + - deviceManagement.Actions + summary: Invoke action rotateFileVaultKey + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_rotateFileVaultKey parameters: - name: deviceManagementScript-id in: path @@ -7055,6 +7953,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_setDeviceName parameters: - name: deviceManagementScript-id @@ -7095,6 +7994,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_shutDown parameters: - name: deviceManagementScript-id @@ -7149,6 +8049,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_triggerConfigurationManagerAction parameters: - name: deviceManagementScript-id @@ -7294,6 +8195,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_wipe parameters: - name: deviceManagementScript-id @@ -7328,6 +8230,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true useProtectedWipe: type: boolean default: false @@ -7379,11 +8285,60 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim': + post: + tags: + - deviceManagement.Actions + summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. + operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_activateDeviceEsim + parameters: + - name: deviceManagementScript-id + in: path + description: 'key: id of deviceManagementScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + carrierUrl: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock': post: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_bypassActivationLock parameters: - name: deviceManagementScript-id @@ -7418,6 +8373,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_cleanWindowsDevice parameters: - name: deviceManagementScript-id @@ -7515,6 +8471,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_deleteUserFromSharedAppleDevice parameters: - name: deviceManagementScript-id @@ -7562,6 +8519,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_disableLostMode parameters: - name: deviceManagementScript-id @@ -7596,6 +8554,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_enableLostMode parameters: - name: deviceManagementScript-id @@ -7649,6 +8608,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_locateDevice parameters: - name: deviceManagementScript-id @@ -7683,6 +8643,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_logoutSharedAppleDeviceActiveUser parameters: - name: deviceManagementScript-id @@ -7766,6 +8727,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Remote lock operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_playLostModeSound parameters: - name: deviceManagementScript-id @@ -7800,6 +8762,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_rebootNow parameters: - name: deviceManagementScript-id @@ -7834,6 +8797,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_recoverPasscode parameters: - name: deviceManagementScript-id @@ -7868,6 +8832,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_remoteLock parameters: - name: deviceManagementScript-id @@ -7897,11 +8862,46 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action reprovisionCloudPc + operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_reprovisionCloudPc + parameters: + - name: deviceManagementScript-id + in: path + description: 'key: id of deviceManagementScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': post: tags: - deviceManagement.Actions summary: Invoke action requestRemoteAssistance + description: Request remote assistance operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_requestRemoteAssistance parameters: - name: deviceManagementScript-id @@ -7936,6 +8936,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action resetPasscode + description: Reset passcode operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_resetPasscode parameters: - name: deviceManagementScript-id @@ -7965,11 +8966,59 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action resizeCloudPc + operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_resizeCloudPc + parameters: + - name: deviceManagementScript-id + in: path + description: 'key: id of deviceManagementScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + targetServicePlanId: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire': post: tags: - deviceManagement.Actions summary: Invoke action retire + description: Retire a device operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_retire parameters: - name: deviceManagementScript-id @@ -8004,6 +9053,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_revokeAppleVppLicenses parameters: - name: deviceManagementScript-id @@ -8038,6 +9088,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_rotateBitLockerKeys parameters: - name: deviceManagementScript-id @@ -8154,6 +9205,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_setDeviceName parameters: - name: deviceManagementScript-id @@ -8201,6 +9253,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_shutDown parameters: - name: deviceManagementScript-id @@ -8269,6 +9322,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_triggerConfigurationManagerAction parameters: - name: deviceManagementScript-id @@ -8442,6 +9496,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_wipe parameters: - name: deviceManagementScript-id @@ -8483,6 +9538,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true useProtectedWipe: type: boolean default: false @@ -8529,11 +9588,53 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim': + post: + tags: + - deviceManagement.Actions + summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. + operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_activateDeviceEsim + parameters: + - name: deviceShellScript-id + in: path + description: 'key: id of deviceShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceShellScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + carrierUrl: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock': post: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_bypassActivationLock parameters: - name: deviceShellScript-id @@ -8561,6 +9662,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_cleanWindowsDevice parameters: - name: deviceShellScript-id @@ -8644,6 +9746,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_deleteUserFromSharedAppleDevice parameters: - name: deviceShellScript-id @@ -8684,6 +9787,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_disableLostMode parameters: - name: deviceShellScript-id @@ -8711,6 +9815,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_enableLostMode parameters: - name: deviceShellScript-id @@ -8757,6 +9862,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_locateDevice parameters: - name: deviceShellScript-id @@ -8784,6 +9890,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_logoutSharedAppleDeviceActiveUser parameters: - name: deviceShellScript-id @@ -8853,6 +9960,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Remote lock operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_playLostModeSound parameters: - name: deviceShellScript-id @@ -8880,6 +9988,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_rebootNow parameters: - name: deviceShellScript-id @@ -8907,6 +10016,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_recoverPasscode parameters: - name: deviceShellScript-id @@ -8934,6 +10044,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_remoteLock parameters: - name: deviceShellScript-id @@ -8956,12 +10067,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc': post: tags: - deviceManagement.Actions - summary: Invoke action requestRemoteAssistance - operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_requestRemoteAssistance + summary: Invoke action reprovisionCloudPc + operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_reprovisionCloudPc parameters: - name: deviceShellScript-id in: path @@ -8983,12 +10094,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode': + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': post: tags: - deviceManagement.Actions - summary: Invoke action resetPasscode - operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_resetPasscode + summary: Invoke action requestRemoteAssistance + description: Request remote assistance + operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_requestRemoteAssistance parameters: - name: deviceShellScript-id in: path @@ -9010,12 +10122,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire': + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode': post: tags: - deviceManagement.Actions - summary: Invoke action retire - operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_retire + summary: Invoke action resetPasscode + description: Reset passcode + operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_resetPasscode parameters: - name: deviceShellScript-id in: path @@ -9037,12 +10150,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses': + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc': post: tags: - deviceManagement.Actions - summary: Invoke action revokeAppleVppLicenses - operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_revokeAppleVppLicenses + summary: Invoke action resizeCloudPc + operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_resizeCloudPc parameters: - name: deviceShellScript-id in: path @@ -9058,18 +10171,32 @@ paths: schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + targetServicePlanId: + type: string + nullable: true + additionalProperties: + type: object + required: true responses: '204': description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys': + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire': post: tags: - deviceManagement.Actions - summary: Invoke action rotateBitLockerKeys - operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_rotateBitLockerKeys + summary: Invoke action retire + description: Retire a device + operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_retire parameters: - name: deviceShellScript-id in: path @@ -9091,12 +10218,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey': + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses': post: tags: - deviceManagement.Actions - summary: Invoke action rotateFileVaultKey - operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_rotateFileVaultKey + summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device + operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_revokeAppleVppLicenses parameters: - name: deviceShellScript-id in: path @@ -9118,7 +10246,62 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal': + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys': + post: + tags: + - deviceManagement.Actions + summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys + operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_rotateBitLockerKeys + parameters: + - name: deviceShellScript-id + in: path + description: 'key: id of deviceShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceShellScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey': + post: + tags: + - deviceManagement.Actions + summary: Invoke action rotateFileVaultKey + operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_rotateFileVaultKey + parameters: + - name: deviceShellScript-id + in: path + description: 'key: id of deviceShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceShellScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal': post: tags: - deviceManagement.Actions @@ -9164,6 +10347,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_setDeviceName parameters: - name: deviceShellScript-id @@ -9204,6 +10388,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_shutDown parameters: - name: deviceShellScript-id @@ -9258,6 +10443,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_triggerConfigurationManagerAction parameters: - name: deviceShellScript-id @@ -9403,6 +10589,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_wipe parameters: - name: deviceShellScript-id @@ -9437,6 +10624,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true useProtectedWipe: type: boolean default: false @@ -9488,11 +10679,60 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim': + post: + tags: + - deviceManagement.Actions + summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. + operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_activateDeviceEsim + parameters: + - name: deviceShellScript-id + in: path + description: 'key: id of deviceShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceShellScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + carrierUrl: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock': post: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_bypassActivationLock parameters: - name: deviceShellScript-id @@ -9527,6 +10767,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_cleanWindowsDevice parameters: - name: deviceShellScript-id @@ -9624,6 +10865,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_deleteUserFromSharedAppleDevice parameters: - name: deviceShellScript-id @@ -9671,6 +10913,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_disableLostMode parameters: - name: deviceShellScript-id @@ -9705,6 +10948,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_enableLostMode parameters: - name: deviceShellScript-id @@ -9758,6 +11002,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_locateDevice parameters: - name: deviceShellScript-id @@ -9792,6 +11037,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_logoutSharedAppleDeviceActiveUser parameters: - name: deviceShellScript-id @@ -9875,6 +11121,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Remote lock operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_playLostModeSound parameters: - name: deviceShellScript-id @@ -9909,6 +11156,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_rebootNow parameters: - name: deviceShellScript-id @@ -9943,6 +11191,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_recoverPasscode parameters: - name: deviceShellScript-id @@ -9977,6 +11226,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_remoteLock parameters: - name: deviceShellScript-id @@ -10006,11 +11256,46 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action reprovisionCloudPc + operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_reprovisionCloudPc + parameters: + - name: deviceShellScript-id + in: path + description: 'key: id of deviceShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceShellScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance': post: tags: - deviceManagement.Actions summary: Invoke action requestRemoteAssistance + description: Request remote assistance operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_requestRemoteAssistance parameters: - name: deviceShellScript-id @@ -10045,6 +11330,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action resetPasscode + description: Reset passcode operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_resetPasscode parameters: - name: deviceShellScript-id @@ -10074,11 +11360,59 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action resizeCloudPc + operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_resizeCloudPc + parameters: + - name: deviceShellScript-id + in: path + description: 'key: id of deviceShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceShellScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + targetServicePlanId: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire': post: tags: - deviceManagement.Actions summary: Invoke action retire + description: Retire a device operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_retire parameters: - name: deviceShellScript-id @@ -10113,6 +11447,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_revokeAppleVppLicenses parameters: - name: deviceShellScript-id @@ -10147,6 +11482,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_rotateBitLockerKeys parameters: - name: deviceShellScript-id @@ -10263,6 +11599,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_setDeviceName parameters: - name: deviceShellScript-id @@ -10310,6 +11647,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_shutDown parameters: - name: deviceShellScript-id @@ -10378,6 +11716,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_triggerConfigurationManagerAction parameters: - name: deviceShellScript-id @@ -10551,6 +11890,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_wipe parameters: - name: deviceShellScript-id @@ -10592,6 +11932,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true useProtectedWipe: type: boolean default: false @@ -11254,11 +12598,46 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.activateDeviceEsim': + post: + tags: + - deviceManagement.Actions + summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. + operationId: deviceManagement.managedDevices_activateDeviceEsim + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + carrierUrl: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock': post: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.managedDevices_bypassActivationLock parameters: - name: managedDevice-id @@ -11279,6 +12658,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.managedDevices_cleanWindowsDevice parameters: - name: managedDevice-id @@ -11348,6 +12728,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.managedDevices_deleteUserFromSharedAppleDevice parameters: - name: managedDevice-id @@ -11381,6 +12762,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.managedDevices_disableLostMode parameters: - name: managedDevice-id @@ -11401,6 +12783,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.managedDevices_enableLostMode parameters: - name: managedDevice-id @@ -11440,6 +12823,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.managedDevices_locateDevice parameters: - name: managedDevice-id @@ -11460,6 +12844,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.managedDevices_logoutSharedAppleDeviceActiveUser parameters: - name: managedDevice-id @@ -11515,6 +12900,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Remote lock operationId: deviceManagement.managedDevices_playLostModeSound parameters: - name: managedDevice-id @@ -11535,6 +12921,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.managedDevices_rebootNow parameters: - name: managedDevice-id @@ -11555,6 +12942,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.managedDevices_recoverPasscode parameters: - name: managedDevice-id @@ -11575,6 +12963,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.managedDevices_remoteLock parameters: - name: managedDevice-id @@ -11590,11 +12979,32 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.reprovisionCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action reprovisionCloudPc + operationId: deviceManagement.managedDevices_reprovisionCloudPc + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance': post: tags: - deviceManagement.Actions summary: Invoke action requestRemoteAssistance + description: Request remote assistance operationId: deviceManagement.managedDevices_requestRemoteAssistance parameters: - name: managedDevice-id @@ -11615,6 +13025,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action resetPasscode + description: Reset passcode operationId: deviceManagement.managedDevices_resetPasscode parameters: - name: managedDevice-id @@ -11630,11 +13041,45 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.resizeCloudPc': + post: + tags: + - deviceManagement.Actions + summary: Invoke action resizeCloudPc + operationId: deviceManagement.managedDevices_resizeCloudPc + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + targetServicePlanId: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.retire': post: tags: - deviceManagement.Actions summary: Invoke action retire + description: Retire a device operationId: deviceManagement.managedDevices_retire parameters: - name: managedDevice-id @@ -11655,6 +13100,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device operationId: deviceManagement.managedDevices_revokeAppleVppLicenses parameters: - name: managedDevice-id @@ -11675,6 +13121,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys operationId: deviceManagement.managedDevices_rotateBitLockerKeys parameters: - name: managedDevice-id @@ -11749,6 +13196,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.managedDevices_setDeviceName parameters: - name: managedDevice-id @@ -11782,6 +13230,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.managedDevices_shutDown parameters: - name: managedDevice-id @@ -11822,6 +13271,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.managedDevices_triggerConfigurationManagerAction parameters: - name: managedDevice-id @@ -11939,6 +13389,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.managedDevices_wipe parameters: - name: managedDevice-id @@ -11966,6 +13417,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true useProtectedWipe: type: boolean default: false @@ -11979,6 +13434,33 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + /deviceManagement/managedDevices/microsoft.graph.bulkReprovisionCloudPc: + post: + tags: + - deviceManagement.Actions + summary: Invoke action bulkReprovisionCloudPc + operationId: deviceManagement.managedDevices_bulkReprovisionCloudPc + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + managedDeviceIds: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action /deviceManagement/managedDevices/microsoft.graph.executeAction: post: tags: @@ -12058,6 +13540,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableUnlicensedAdminstrators + description: 'Upon enabling, users assigned as administrators via Role Assignment Memberships will no longer require an assigned Intune license. You are limited to 350 unlicensed direct members for each AAD security group in a role assignment, but you can assign multiple AAD security groups to a role if you need to support more than 350 unlicensed administrators. Licensed administrators will continue to function as-is in that transitive memberships apply and are not subject to the 350 member limit.' operationId: deviceManagement_enableUnlicensedAdminstrators responses: '204': @@ -12175,6 +13658,26 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoft.graph.requestUpgrade': + post: + tags: + - deviceManagement.Actions + summary: Invoke action requestUpgrade + operationId: deviceManagement.microsoftTunnelSites_requestUpgrade + parameters: + - name: microsoftTunnelSite-id + in: path + description: 'key: id of microsoftTunnelSite' + required: true + schema: + type: string + x-ms-docs-key-type: microsoftTunnelSite + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/microsoft.graph.createServerLogCollectionRequest': post: tags: @@ -12362,6 +13865,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action sendTestMessage + description: Sends test message using the specified notificationMessageTemplate in the default locale operationId: deviceManagement.notificationMessageTemplates_sendTestMessage parameters: - name: notificationMessageTemplate-id @@ -12382,6 +13886,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action beginOnboarding + description: A request to start onboarding. Must be coupled with the appropriate TeamViewer account information operationId: deviceManagement.remoteAssistancePartners_beginOnboarding parameters: - name: remoteAssistancePartner-id @@ -12402,6 +13907,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disconnect + description: A request to remove the active TeamViewer connector operationId: deviceManagement.remoteAssistancePartners_disconnect parameters: - name: remoteAssistancePartner-id @@ -12551,6 +14057,73 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + /deviceManagement/reports/microsoft.graph.getAllCertificatesReport: + post: + tags: + - deviceManagement.Actions + summary: Invoke action getAllCertificatesReport + operationId: deviceManagement.reports_getAllCertificatesReport + 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.getAppsInstallSummaryReport: post: tags: @@ -13014,6 +14587,73 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + /deviceManagement/reports/microsoft.graph.getConfigManagerDevicePolicyStatusReport: + post: + tags: + - deviceManagement.Actions + summary: Invoke action getConfigManagerDevicePolicyStatusReport + operationId: deviceManagement.reports_getConfigManagerDevicePolicyStatusReport + 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.getConfigurationPoliciesReportForDevice: post: tags: @@ -13085,8 +14725,209 @@ paths: post: tags: - deviceManagement.Actions - summary: Invoke action getConfigurationPolicyDevicesReport - operationId: deviceManagement.reports_getConfigurationPolicyDevicesReport + summary: Invoke action getConfigurationPolicyDevicesReport + operationId: deviceManagement.reports_getConfigurationPolicyDevicesReport + 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.getConfigurationPolicyDeviceSummaryReport: + post: + tags: + - deviceManagement.Actions + summary: Invoke action getConfigurationPolicyDeviceSummaryReport + operationId: deviceManagement.reports_getConfigurationPolicyDeviceSummaryReport + 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.getConfigurationPolicyNonComplianceReport: + post: + tags: + - deviceManagement.Actions + summary: Invoke action getConfigurationPolicyNonComplianceReport + operationId: deviceManagement.reports_getConfigurationPolicyNonComplianceReport + 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.getConfigurationPolicyNonComplianceSummaryReport: + post: + tags: + - deviceManagement.Actions + summary: Invoke action getConfigurationPolicyNonComplianceSummaryReport + operationId: deviceManagement.reports_getConfigurationPolicyNonComplianceSummaryReport requestBody: description: Action parameters content: @@ -13148,12 +14989,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getConfigurationPolicyDeviceSummaryReport: + /deviceManagement/reports/microsoft.graph.getConfigurationPolicySettingsDeviceSummaryReport: post: tags: - deviceManagement.Actions - summary: Invoke action getConfigurationPolicyDeviceSummaryReport - operationId: deviceManagement.reports_getConfigurationPolicyDeviceSummaryReport + summary: Invoke action getConfigurationPolicySettingsDeviceSummaryReport + operationId: deviceManagement.reports_getConfigurationPolicySettingsDeviceSummaryReport requestBody: description: Action parameters content: @@ -13215,12 +15056,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getConfigurationPolicyNonComplianceReport: + /deviceManagement/reports/microsoft.graph.getConfigurationSettingDetailsReport: post: tags: - deviceManagement.Actions - summary: Invoke action getConfigurationPolicyNonComplianceReport - operationId: deviceManagement.reports_getConfigurationPolicyNonComplianceReport + summary: Invoke action getConfigurationSettingDetailsReport + operationId: deviceManagement.reports_getConfigurationSettingDetailsReport requestBody: description: Action parameters content: @@ -13282,12 +15123,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getConfigurationPolicyNonComplianceSummaryReport: + /deviceManagement/reports/microsoft.graph.getConfigurationSettingNonComplianceReport: post: tags: - deviceManagement.Actions - summary: Invoke action getConfigurationPolicyNonComplianceSummaryReport - operationId: deviceManagement.reports_getConfigurationPolicyNonComplianceSummaryReport + summary: Invoke action getConfigurationSettingNonComplianceReport + operationId: deviceManagement.reports_getConfigurationSettingNonComplianceReport requestBody: description: Action parameters content: @@ -13349,12 +15190,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getConfigurationSettingDetailsReport: + /deviceManagement/reports/microsoft.graph.getConfigurationSettingsReport: post: tags: - deviceManagement.Actions - summary: Invoke action getConfigurationSettingDetailsReport - operationId: deviceManagement.reports_getConfigurationSettingDetailsReport + summary: Invoke action getConfigurationSettingsReport + operationId: deviceManagement.reports_getConfigurationSettingsReport requestBody: description: Action parameters content: @@ -13416,12 +15257,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getConfigurationSettingNonComplianceReport: + /deviceManagement/reports/microsoft.graph.getDeviceInstallStatusReport: post: tags: - deviceManagement.Actions - summary: Invoke action getConfigurationSettingNonComplianceReport - operationId: deviceManagement.reports_getConfigurationSettingNonComplianceReport + summary: Invoke action getDeviceInstallStatusReport + operationId: deviceManagement.reports_getDeviceInstallStatusReport requestBody: description: Action parameters content: @@ -13483,12 +15324,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getConfigurationSettingsReport: + /deviceManagement/reports/microsoft.graph.getDeviceManagementIntentSettingsReport: post: tags: - deviceManagement.Actions - summary: Invoke action getConfigurationSettingsReport - operationId: deviceManagement.reports_getConfigurationSettingsReport + summary: Invoke action getDeviceManagementIntentSettingsReport + operationId: deviceManagement.reports_getDeviceManagementIntentSettingsReport requestBody: description: Action parameters content: @@ -13550,12 +15391,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getDeviceInstallStatusReport: + /deviceManagement/reports/microsoft.graph.getDeviceNonComplianceReport: post: tags: - deviceManagement.Actions - summary: Invoke action getDeviceInstallStatusReport - operationId: deviceManagement.reports_getDeviceInstallStatusReport + summary: Invoke action getDeviceNonComplianceReport + operationId: deviceManagement.reports_getDeviceNonComplianceReport requestBody: description: Action parameters content: @@ -13617,12 +15458,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getDeviceNonComplianceReport: + /deviceManagement/reports/microsoft.graph.getFailedMobileAppsReport: post: tags: - deviceManagement.Actions - summary: Invoke action getDeviceNonComplianceReport - operationId: deviceManagement.reports_getDeviceNonComplianceReport + summary: Invoke action getFailedMobileAppsReport + operationId: deviceManagement.reports_getFailedMobileAppsReport requestBody: description: Action parameters content: @@ -13684,12 +15525,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getFailedMobileAppsReport: + /deviceManagement/reports/microsoft.graph.getFailedMobileAppsSummaryReport: post: tags: - deviceManagement.Actions - summary: Invoke action getFailedMobileAppsReport - operationId: deviceManagement.reports_getFailedMobileAppsReport + summary: Invoke action getFailedMobileAppsSummaryReport + operationId: deviceManagement.reports_getFailedMobileAppsSummaryReport requestBody: description: Action parameters content: @@ -13751,12 +15592,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getFailedMobileAppsSummaryReport: + /deviceManagement/reports/microsoft.graph.getHistoricalReport: post: tags: - deviceManagement.Actions - summary: Invoke action getFailedMobileAppsSummaryReport - operationId: deviceManagement.reports_getFailedMobileAppsSummaryReport + summary: Invoke action getHistoricalReport + operationId: deviceManagement.reports_getHistoricalReport requestBody: description: Action parameters content: @@ -13797,9 +15638,6 @@ paths: type: integer format: int32 nullable: true - sessionId: - type: string - nullable: true filter: type: string nullable: true @@ -13818,12 +15656,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getHistoricalReport: + /deviceManagement/reports/microsoft.graph.getMalwareSummaryReport: post: tags: - deviceManagement.Actions - summary: Invoke action getHistoricalReport - operationId: deviceManagement.reports_getHistoricalReport + summary: Invoke action getMalwareSummaryReport + operationId: deviceManagement.reports_getMalwareSummaryReport requestBody: description: Action parameters content: @@ -13864,6 +15702,9 @@ paths: type: integer format: int32 nullable: true + sessionId: + type: string + nullable: true filter: type: string nullable: true @@ -13882,12 +15723,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getMalwareSummaryReport: + /deviceManagement/reports/microsoft.graph.getPolicyNonComplianceMetadata: post: tags: - deviceManagement.Actions - summary: Invoke action getMalwareSummaryReport - operationId: deviceManagement.reports_getMalwareSummaryReport + summary: Invoke action getPolicyNonComplianceMetadata + operationId: deviceManagement.reports_getPolicyNonComplianceMetadata requestBody: description: Action parameters content: @@ -13949,12 +15790,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getPolicyNonComplianceMetadata: + /deviceManagement/reports/microsoft.graph.getPolicyNonComplianceReport: post: tags: - deviceManagement.Actions - summary: Invoke action getPolicyNonComplianceMetadata - operationId: deviceManagement.reports_getPolicyNonComplianceMetadata + summary: Invoke action getPolicyNonComplianceReport + operationId: deviceManagement.reports_getPolicyNonComplianceReport requestBody: description: Action parameters content: @@ -14016,12 +15857,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getPolicyNonComplianceReport: + /deviceManagement/reports/microsoft.graph.getPolicyNonComplianceSummaryReport: post: tags: - deviceManagement.Actions - summary: Invoke action getPolicyNonComplianceReport - operationId: deviceManagement.reports_getPolicyNonComplianceReport + summary: Invoke action getPolicyNonComplianceSummaryReport + operationId: deviceManagement.reports_getPolicyNonComplianceSummaryReport requestBody: description: Action parameters content: @@ -14083,12 +15924,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - /deviceManagement/reports/microsoft.graph.getPolicyNonComplianceSummaryReport: + /deviceManagement/reports/microsoft.graph.getRelatedAppsStatusReport: post: tags: - deviceManagement.Actions - summary: Invoke action getPolicyNonComplianceSummaryReport - operationId: deviceManagement.reports_getPolicyNonComplianceSummaryReport + summary: Invoke action getRelatedAppsStatusReport + operationId: deviceManagement.reports_getRelatedAppsStatusReport requestBody: description: Action parameters content: @@ -14860,6 +16701,124 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/microsoft.graph.clone': + post: + tags: + - deviceManagement.Actions + summary: Invoke action clone + operationId: deviceManagement.reusablePolicySettings_clone + parameters: + - name: deviceManagementReusablePolicySetting-id + in: path + description: 'key: id of deviceManagementReusablePolicySetting' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementReusablePolicySetting + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.deviceManagementReusablePolicySetting' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/microsoft.graph.assign': + post: + tags: + - deviceManagement.Actions + summary: Invoke action assign + operationId: deviceManagement.reusablePolicySettings.referencingConfigurationPolicies_assign + parameters: + - name: deviceManagementReusablePolicySetting-id + in: path + description: 'key: id of deviceManagementReusablePolicySetting' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementReusablePolicySetting + - name: deviceManagementConfigurationPolicy-id + in: path + description: 'key: id of deviceManagementConfigurationPolicy' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementConfigurationPolicy + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + assignments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/microsoft.graph.createCopy': + post: + tags: + - deviceManagement.Actions + summary: Invoke action createCopy + operationId: deviceManagement.reusablePolicySettings.referencingConfigurationPolicies_createCopy + parameters: + - name: deviceManagementReusablePolicySetting-id + in: path + description: 'key: id of deviceManagementReusablePolicySetting' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementReusablePolicySetting + - name: deviceManagementConfigurationPolicy-id + in: path + description: 'key: id of deviceManagementConfigurationPolicy' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementConfigurationPolicy + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + displayName: + type: string + nullable: true + description: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/microsoft.graph.getRoleScopeTagsById': post: tags: @@ -15230,6 +17189,40 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/microsoft.graph.assign': + post: + tags: + - deviceManagement.Actions + summary: Invoke action assign + operationId: deviceManagement.virtualEndpoint.userSettings_assign + parameters: + - name: cloudPcUserSetting-id + in: path + description: 'key: id of cloudPcUserSetting' + required: true + schema: + type: string + x-ms-docs-key-type: cloudPcUserSetting + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + assignments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcUserSettingAssignment' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/microsoft.graph.assign': post: tags: @@ -15319,6 +17312,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action assignResourceAccountToDevice + description: Assigns resource account to Autopilot devices. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_assignResourceAccountToDevice parameters: - name: windowsAutopilotDeploymentProfile-id @@ -15365,6 +17359,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action assignUserToDevice + description: Assigns user to Autopilot devices. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_assignUserToDevice parameters: - name: windowsAutopilotDeploymentProfile-id @@ -15408,6 +17403,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action unassignResourceAccountFromDevice + description: Unassigns the resource account from an Autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_unassignResourceAccountFromDevice parameters: - name: windowsAutopilotDeploymentProfile-id @@ -15435,6 +17431,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action unassignUserFromDevice + description: Unassigns the user from an Autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_unassignUserFromDevice parameters: - name: windowsAutopilotDeploymentProfile-id @@ -15462,6 +17459,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action updateDeviceProperties + description: Updates properties on Autopilot devices. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_updateDeviceProperties parameters: - name: windowsAutopilotDeploymentProfile-id @@ -15491,59 +17489,18 @@ paths: addressableUserName: type: string nullable: true - groupTag: - type: string - nullable: true - displayName: - type: string - nullable: true - additionalProperties: - type: object - required: true - responses: - '204': - description: Success - 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 + groupTag: + type: string + nullable: true + displayName: + type: string + nullable: true additionalProperties: type: object required: true responses: - '200': + '204': 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 @@ -15690,6 +17647,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action assignResourceAccountToDevice + description: Assigns resource account to Autopilot devices. operationId: deviceManagement.windowsAutopilotDeviceIdentities_assignResourceAccountToDevice parameters: - name: windowsAutopilotDeviceIdentity-id @@ -15729,6 +17687,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action assignUserToDevice + description: Assigns user to Autopilot devices. operationId: deviceManagement.windowsAutopilotDeviceIdentities_assignUserToDevice parameters: - name: windowsAutopilotDeviceIdentity-id @@ -15765,6 +17724,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action unassignResourceAccountFromDevice + description: Unassigns the resource account from an Autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_unassignResourceAccountFromDevice parameters: - name: windowsAutopilotDeviceIdentity-id @@ -15785,6 +17745,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action unassignUserFromDevice + description: Unassigns the user from an Autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_unassignUserFromDevice parameters: - name: windowsAutopilotDeviceIdentity-id @@ -15805,6 +17766,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action updateDeviceProperties + description: Updates properties on Autopilot devices. operationId: deviceManagement.windowsAutopilotDeviceIdentities_updateDeviceProperties parameters: - name: windowsAutopilotDeviceIdentity-id @@ -15842,44 +17804,12 @@ 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: - deviceManagement.Actions summary: Invoke action sync + description: 'Initiates a sync of all AutoPilot registered devices from Store for Business and other portals. If the sync successful, this action returns a 204 No Content response code. If a sync is already in progress, the action returns a 409 Conflict response code. If this sync action is called within 10 minutes of the previous sync, the action returns a 429 Too Many Requests response code.' operationId: deviceManagement.windowsAutopilotSettings_sync responses: '204': @@ -16171,6 +18101,68 @@ components: additionalProperties: type: object description: The DeviceManagementConfigurationPolicyAssignment entity assigns a specific DeviceManagementConfigurationPolicy to an AAD group. + microsoft.graph.deviceManagementConfigurationPolicy: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deviceManagementConfigurationPolicy + 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: Policy creation date and time. This property is read-only. + format: date-time + creationSource: + type: string + description: Policy creation source + nullable: true + description: + type: string + description: Policy description + nullable: true + isAssigned: + type: boolean + description: Policy assignment status. This property is read-only. + 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: Policy last modification date and time. This property is read-only. + format: date-time + name: + type: string + description: Policy name + nullable: true + platforms: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPlatforms' + roleScopeTagIds: + type: array + items: + type: string + nullable: true + description: List of Scope Tags for this Entity instance. + settingCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Number of settings. This property is read-only. + format: int32 + technologies: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationTechnologies' + templateReference: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyTemplateReference' + assignments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' + description: Policy assignments + settings: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' + description: Policy settings + additionalProperties: + type: object + description: Device Management Configuration Policy microsoft.graph.dataSharingConsent: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -16229,7 +18221,7 @@ components: nullable: true isSupervised: type: boolean - description: 'Indicates if the Apple device is supervised. More information is at: https://support.apple.com/HT202837' + description: 'Indicates if the Apple device is supervised. More information is at: https://support.apple.com/en-us/HT202837' lastContactedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -16998,10 +18990,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -17038,6 +19030,55 @@ components: additionalProperties: type: object description: Entity that describes tenant level settings for derived credentials + microsoft.graph.deviceManagementReusablePolicySetting: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deviceManagementReusablePolicySetting + 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: reusable setting creation date and time. This property is read-only. + format: date-time + description: + type: string + description: reusable setting description supplied by user. + nullable: true + displayName: + type: string + description: reusable setting display name supplied by user. + 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: date and time when reusable setting was last modified. This property is read-only. + format: date-time + referencingConfigurationPolicyCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: count of configuration policies referencing the current reusable setting. Valid values 0 to 2147483647. This property is read-only. + format: int32 + settingDefinitionId: + type: string + description: setting definition id associated with this reusable setting. + nullable: true + settingInstance: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingInstance' + version: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: version number for reusable setting. Valid values 0 to 2147483647. This property is read-only. + format: int32 + referencingConfigurationPolicies: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' + description: configuration policies referencing the current reusable setting + additionalProperties: + type: object + description: Graph model for a reusable setting microsoft.graph.roleScopeTag: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -17084,26 +19125,16 @@ 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.cloudPcUserSettingAssignment: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: cloudPcUserSettingAssignment + type: object + properties: + target: + $ref: '#/components/schemas/microsoft.graph.cloudPcManagementAssignmentTarget' + additionalProperties: + type: object microsoft.graph.windowsFeatureUpdateProfileAssignment: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -17184,6 +19215,60 @@ components: additionalProperties: type: object description: Base type for assignment targets. + microsoft.graph.deviceManagementConfigurationPlatforms: + title: deviceManagementConfigurationPlatforms + enum: + - none + - macOS + - windows10X + - windows10 + type: string + microsoft.graph.deviceManagementConfigurationTechnologies: + title: deviceManagementConfigurationTechnologies + enum: + - none + - mdm + - windows10XManagement + - configManager + - microsoftSense + type: string + microsoft.graph.deviceManagementConfigurationPolicyTemplateReference: + title: deviceManagementConfigurationPolicyTemplateReference + type: object + properties: + templateDisplayName: + type: string + description: Template Display Name of the referenced template. This property is read-only. + nullable: true + templateDisplayVersion: + type: string + description: Template Display Version of the referenced Template. This property is read-only. + nullable: true + templateFamily: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationTemplateFamily' + templateId: + type: string + description: Template id + nullable: true + additionalProperties: + type: object + description: Policy template reference information + microsoft.graph.deviceManagementConfigurationSetting: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deviceManagementConfigurationSetting + type: object + properties: + settingInstance: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingInstance' + settingDefinitions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' + description: List of related Setting Definitions + additionalProperties: + type: object + description: Setting instance within policy microsoft.graph.discoverySource: title: discoverySource enum: @@ -17848,19 +19933,23 @@ components: - apply - remove type: string + microsoft.graph.deviceManagementConfigurationSettingInstance: + title: deviceManagementConfigurationSettingInstance + type: object + properties: + settingDefinitionId: + type: string + description: Setting Definition Id + settingInstanceTemplateReference: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingInstanceTemplateReference' + additionalProperties: + type: object + description: Setting instance within policy microsoft.graph.cloudPcManagementAssignmentTarget: title: cloudPcManagementAssignmentTarget type: object additionalProperties: type: object - microsoft.graph.windowsAutopilotDeviceDeletionState: - title: windowsAutopilotDeviceDeletionState - enum: - - unknown - - failed - - accepted - - error - type: string odata.error: required: - error @@ -17877,6 +19966,91 @@ components: - include - exclude type: string + microsoft.graph.deviceManagementConfigurationTemplateFamily: + title: deviceManagementConfigurationTemplateFamily + enum: + - none + - endpointSecurityAntivirus + - endpointSecurityDiskEncryption + - endpointSecurityFirewall + - endpointSecurityEndpointDetectionAndResponse + - endpointSecurityAttackSurfaceReduction + - endpointSecurityAccountProtection + - endpointSecurityApplicationControl + type: string + microsoft.graph.deviceManagementConfigurationSettingDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deviceManagementConfigurationSettingDefinition + type: object + properties: + accessTypes: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingAccessTypes' + applicability: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingApplicability' + baseUri: + type: string + description: Base CSP Path + nullable: true + categoryId: + type: string + description: Specifies the area group under which the setting is configured in a specified configuration service provider (CSP) + nullable: true + description: + type: string + description: Description of the item + nullable: true + displayName: + type: string + description: Display name of the item + nullable: true + helpText: + type: string + description: Help text of the item + nullable: true + infoUrls: + type: array + items: + type: string + nullable: true + description: List of links more info for the setting can be found at + keywords: + type: array + items: + type: string + nullable: true + description: Tokens which to search settings on + name: + type: string + description: Name of the item + nullable: true + occurrence: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingOccurrence' + offsetUri: + type: string + description: Offset CSP Path from Base + nullable: true + referredSettingInformationList: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationReferredSettingInformation' + description: List of referred setting information. + rootDefinitionId: + type: string + description: Root setting definition if the setting is a child setting. + nullable: true + settingUsage: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingUsage' + uxBehavior: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationControlType' + version: + type: string + description: Item Version + nullable: true + visibility: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingVisibility' + additionalProperties: + type: object microsoft.graph.deviceComplianceActionType: title: deviceComplianceActionType enum: @@ -18520,6 +20694,16 @@ components: - failure - notEvaluated type: string + microsoft.graph.deviceManagementConfigurationSettingInstanceTemplateReference: + title: deviceManagementConfigurationSettingInstanceTemplateReference + type: object + properties: + settingInstanceTemplateId: + type: string + description: Setting instance template id + additionalProperties: + type: object + description: Setting instance template reference information odata.error.main: required: - code @@ -18543,6 +20727,88 @@ components: description: The structure of this object is service-specific additionalProperties: type: object + microsoft.graph.deviceManagementConfigurationSettingAccessTypes: + title: deviceManagementConfigurationSettingAccessTypes + enum: + - none + - add + - copy + - delete + - get + - replace + - execute + type: string + microsoft.graph.deviceManagementConfigurationSettingApplicability: + title: deviceManagementConfigurationSettingApplicability + type: object + properties: + description: + type: string + description: description of the setting + nullable: true + deviceMode: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationDeviceMode' + platform: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPlatforms' + technologies: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationTechnologies' + additionalProperties: + type: object + microsoft.graph.deviceManagementConfigurationSettingOccurrence: + title: deviceManagementConfigurationSettingOccurrence + type: object + properties: + maxDeviceOccurrence: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Maximum times setting can be set on device. + format: int32 + nullable: true + minDeviceOccurrence: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Minimum times setting can be set on device. A MinDeviceOccurrence of 0 means setting is optional + format: int32 + nullable: true + additionalProperties: + type: object + microsoft.graph.deviceManagementConfigurationReferredSettingInformation: + title: deviceManagementConfigurationReferredSettingInformation + type: object + properties: + settingDefinitionId: + type: string + description: Setting definition id that is being referred to a setting. Applicable for reusable setting + nullable: true + additionalProperties: + type: object + description: Referred setting information about reusable setting + microsoft.graph.deviceManagementConfigurationSettingUsage: + title: deviceManagementConfigurationSettingUsage + enum: + - none + - configuration + type: string + microsoft.graph.deviceManagementConfigurationControlType: + title: deviceManagementConfigurationControlType + enum: + - default + - dropdown + - smallTextBox + - largeTextBox + - toggle + - multiheaderGrid + - contextPane + type: string + microsoft.graph.deviceManagementConfigurationSettingVisibility: + title: deviceManagementConfigurationSettingVisibility + enum: + - none + - settingsCatalog + - template + type: string microsoft.graph.windows10DeviceModeType: title: windows10DeviceModeType enum: @@ -18646,6 +20912,12 @@ components: type: string additionalProperties: type: object + microsoft.graph.deviceManagementConfigurationDeviceMode: + title: deviceManagementConfigurationDeviceMode + enum: + - none + - kiosk + type: string microsoft.graph.deviceManagementConstraint: title: deviceManagementConstraint type: object diff --git a/openApiDocs/beta/DeviceManagement.Administration.yml b/openApiDocs/beta/DeviceManagement.Administration.yml index 2d794d0eeaa..751c69eb46b 100644 --- a/openApiDocs/beta/DeviceManagement.Administration.yml +++ b/openApiDocs/beta/DeviceManagement.Administration.yml @@ -11,6 +11,7 @@ paths: tags: - deviceManagement.applePushNotificationCertificate summary: Get applePushNotificationCertificate from deviceManagement + description: Apple push notification certificate. operationId: deviceManagement_GetApplePushNotificationCertificate parameters: - name: $select @@ -59,6 +60,7 @@ paths: tags: - deviceManagement.applePushNotificationCertificate summary: Update the navigation property applePushNotificationCertificate in deviceManagement + description: Apple push notification certificate. operationId: deviceManagement_UpdateApplePushNotificationCertificate requestBody: description: New navigation property values @@ -77,6 +79,7 @@ paths: tags: - deviceManagement.applePushNotificationCertificate summary: Delete navigation property applePushNotificationCertificate for deviceManagement + description: Apple push notification certificate. operationId: deviceManagement_DeleteApplePushNotificationCertificate parameters: - name: If-Match @@ -95,6 +98,7 @@ paths: tags: - deviceManagement.auditEvent summary: Get auditEvents from deviceManagement + description: The Audit Events operationId: deviceManagement_ListAuditEvents parameters: - $ref: '#/components/parameters/top' @@ -199,6 +203,7 @@ paths: tags: - deviceManagement.auditEvent summary: Create new navigation property to auditEvents for deviceManagement + description: The Audit Events operationId: deviceManagement_CreateAuditEvents requestBody: description: New navigation property @@ -222,6 +227,7 @@ paths: tags: - deviceManagement.auditEvent summary: Get auditEvents from deviceManagement + description: The Audit Events operationId: deviceManagement_GetAuditEvents parameters: - name: auditEvent-id @@ -280,6 +286,7 @@ paths: tags: - deviceManagement.auditEvent summary: Update the navigation property auditEvents in deviceManagement + description: The Audit Events operationId: deviceManagement_UpdateAuditEvents parameters: - name: auditEvent-id @@ -306,6 +313,7 @@ paths: tags: - deviceManagement.auditEvent summary: Delete navigation property auditEvents for deviceManagement + description: The Audit Events operationId: deviceManagement_DeleteAuditEvents parameters: - name: auditEvent-id @@ -331,6 +339,7 @@ paths: tags: - deviceManagement.cartToClassAssociation summary: Get cartToClassAssociations from deviceManagement + description: The Cart To Class Associations. operationId: deviceManagement_ListCartToClassAssociations parameters: - $ref: '#/components/parameters/top' @@ -423,6 +432,7 @@ paths: tags: - deviceManagement.cartToClassAssociation summary: Create new navigation property to cartToClassAssociations for deviceManagement + description: The Cart To Class Associations. operationId: deviceManagement_CreateCartToClassAssociations requestBody: description: New navigation property @@ -446,6 +456,7 @@ paths: tags: - deviceManagement.cartToClassAssociation summary: Get cartToClassAssociations from deviceManagement + description: The Cart To Class Associations. operationId: deviceManagement_GetCartToClassAssociations parameters: - name: cartToClassAssociation-id @@ -500,6 +511,7 @@ paths: tags: - deviceManagement.cartToClassAssociation summary: Update the navigation property cartToClassAssociations in deviceManagement + description: The Cart To Class Associations. operationId: deviceManagement_UpdateCartToClassAssociations parameters: - name: cartToClassAssociation-id @@ -526,6 +538,7 @@ paths: tags: - deviceManagement.cartToClassAssociation summary: Delete navigation property cartToClassAssociations for deviceManagement + description: The Cart To Class Associations. operationId: deviceManagement_DeleteCartToClassAssociations parameters: - name: cartToClassAssociation-id @@ -551,6 +564,7 @@ paths: tags: - deviceManagement.comanagementEligibleDevice summary: Get comanagementEligibleDevices from deviceManagement + description: The list of co-management eligible devices report operationId: deviceManagement_ListComanagementEligibleDevices parameters: - $ref: '#/components/parameters/top' @@ -679,6 +693,7 @@ paths: tags: - deviceManagement.comanagementEligibleDevice summary: Create new navigation property to comanagementEligibleDevices for deviceManagement + description: The list of co-management eligible devices report operationId: deviceManagement_CreateComanagementEligibleDevices requestBody: description: New navigation property @@ -702,6 +717,7 @@ paths: tags: - deviceManagement.comanagementEligibleDevice summary: Get comanagementEligibleDevices from deviceManagement + description: The list of co-management eligible devices report operationId: deviceManagement_GetComanagementEligibleDevices parameters: - name: comanagementEligibleDevice-id @@ -768,6 +784,7 @@ paths: tags: - deviceManagement.comanagementEligibleDevice summary: Update the navigation property comanagementEligibleDevices in deviceManagement + description: The list of co-management eligible devices report operationId: deviceManagement_UpdateComanagementEligibleDevices parameters: - name: comanagementEligibleDevice-id @@ -794,6 +811,7 @@ paths: tags: - deviceManagement.comanagementEligibleDevice summary: Delete navigation property comanagementEligibleDevices for deviceManagement + description: The list of co-management eligible devices report operationId: deviceManagement_DeleteComanagementEligibleDevices parameters: - name: comanagementEligibleDevice-id @@ -819,6 +837,7 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Get complianceManagementPartners from deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_ListComplianceManagementPartners parameters: - $ref: '#/components/parameters/top' @@ -923,6 +942,7 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Create new navigation property to complianceManagementPartners for deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_CreateComplianceManagementPartners requestBody: description: New navigation property @@ -946,6 +966,7 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Get complianceManagementPartners from deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_GetComplianceManagementPartners parameters: - name: complianceManagementPartner-id @@ -1004,6 +1025,7 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Update the navigation property complianceManagementPartners in deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_UpdateComplianceManagementPartners parameters: - name: complianceManagementPartner-id @@ -1030,6 +1052,7 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Delete navigation property complianceManagementPartners for deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_DeleteComplianceManagementPartners parameters: - name: complianceManagementPartner-id @@ -1055,6 +1078,7 @@ paths: tags: - deviceManagement.restrictedAppsViolation summary: Get deviceConfigurationRestrictedAppsViolations from deviceManagement + description: Restricted apps violations for this account. operationId: deviceManagement_ListDeviceConfigurationRestrictedAppsViolations parameters: - $ref: '#/components/parameters/top' @@ -1153,6 +1177,7 @@ paths: tags: - deviceManagement.restrictedAppsViolation summary: Create new navigation property to deviceConfigurationRestrictedAppsViolations for deviceManagement + description: Restricted apps violations for this account. operationId: deviceManagement_CreateDeviceConfigurationRestrictedAppsViolations requestBody: description: New navigation property @@ -1176,6 +1201,7 @@ paths: tags: - deviceManagement.restrictedAppsViolation summary: Get deviceConfigurationRestrictedAppsViolations from deviceManagement + description: Restricted apps violations for this account. operationId: deviceManagement_GetDeviceConfigurationRestrictedAppsViolations parameters: - name: restrictedAppsViolation-id @@ -1232,6 +1258,7 @@ paths: tags: - deviceManagement.restrictedAppsViolation summary: Update the navigation property deviceConfigurationRestrictedAppsViolations in deviceManagement + description: Restricted apps violations for this account. operationId: deviceManagement_UpdateDeviceConfigurationRestrictedAppsViolations parameters: - name: restrictedAppsViolation-id @@ -1258,6 +1285,7 @@ paths: tags: - deviceManagement.restrictedAppsViolation summary: Delete navigation property deviceConfigurationRestrictedAppsViolations for deviceManagement + description: Restricted apps violations for this account. operationId: deviceManagement_DeleteDeviceConfigurationRestrictedAppsViolations parameters: - name: restrictedAppsViolation-id @@ -1283,6 +1311,7 @@ paths: tags: - deviceManagement.managedAllDeviceCertificateState summary: Get deviceConfigurationsAllManagedDeviceCertificateStates from deviceManagement + description: Summary of all certificates for all devices. operationId: deviceManagement_ListDeviceConfigurationsAllManagedDeviceCertificateStates parameters: - $ref: '#/components/parameters/top' @@ -1390,6 +1419,7 @@ paths: tags: - deviceManagement.managedAllDeviceCertificateState summary: Create new navigation property to deviceConfigurationsAllManagedDeviceCertificateStates for deviceManagement + description: Summary of all certificates for all devices. operationId: deviceManagement_CreateDeviceConfigurationsAllManagedDeviceCertificateStates requestBody: description: New navigation property @@ -1413,6 +1443,7 @@ paths: tags: - deviceManagement.managedAllDeviceCertificateState summary: Get deviceConfigurationsAllManagedDeviceCertificateStates from deviceManagement + description: Summary of all certificates for all devices. operationId: deviceManagement_GetDeviceConfigurationsAllManagedDeviceCertificateStates parameters: - name: managedAllDeviceCertificateState-id @@ -1472,6 +1503,7 @@ paths: tags: - deviceManagement.managedAllDeviceCertificateState summary: Update the navigation property deviceConfigurationsAllManagedDeviceCertificateStates in deviceManagement + description: Summary of all certificates for all devices. operationId: deviceManagement_UpdateDeviceConfigurationsAllManagedDeviceCertificateStates parameters: - name: managedAllDeviceCertificateState-id @@ -1498,6 +1530,7 @@ paths: tags: - deviceManagement.managedAllDeviceCertificateState summary: Delete navigation property deviceConfigurationsAllManagedDeviceCertificateStates for deviceManagement + description: Summary of all certificates for all devices. operationId: deviceManagement_DeleteDeviceConfigurationsAllManagedDeviceCertificateStates parameters: - name: managedAllDeviceCertificateState-id @@ -1523,6 +1556,7 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Get deviceManagementPartners from deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_ListDeviceManagementPartners parameters: - $ref: '#/components/parameters/top' @@ -1627,6 +1661,7 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Create new navigation property to deviceManagementPartners for deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_CreateDeviceManagementPartners requestBody: description: New navigation property @@ -1650,6 +1685,7 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Get deviceManagementPartners from deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_GetDeviceManagementPartners parameters: - name: deviceManagementPartner-id @@ -1708,6 +1744,7 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Update the navigation property deviceManagementPartners in deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_UpdateDeviceManagementPartners parameters: - name: deviceManagementPartner-id @@ -1734,6 +1771,7 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Delete navigation property deviceManagementPartners for deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_DeleteDeviceManagementPartners parameters: - name: deviceManagementPartner-id @@ -1759,6 +1797,7 @@ paths: tags: - deviceManagement.deviceManagementDomainJoinConnector summary: Get domainJoinConnectors from deviceManagement + description: A list of connector objects. operationId: deviceManagement_ListDomainJoinConnectors parameters: - $ref: '#/components/parameters/top' @@ -1842,6 +1881,7 @@ paths: tags: - deviceManagement.deviceManagementDomainJoinConnector summary: Create new navigation property to domainJoinConnectors for deviceManagement + description: A list of connector objects. operationId: deviceManagement_CreateDomainJoinConnectors requestBody: description: New navigation property @@ -1865,6 +1905,7 @@ paths: tags: - deviceManagement.deviceManagementDomainJoinConnector summary: Get domainJoinConnectors from deviceManagement + description: A list of connector objects. operationId: deviceManagement_GetDomainJoinConnectors parameters: - name: deviceManagementDomainJoinConnector-id @@ -1916,6 +1957,7 @@ paths: tags: - deviceManagement.deviceManagementDomainJoinConnector summary: Update the navigation property domainJoinConnectors in deviceManagement + description: A list of connector objects. operationId: deviceManagement_UpdateDomainJoinConnectors parameters: - name: deviceManagementDomainJoinConnector-id @@ -1942,6 +1984,7 @@ paths: tags: - deviceManagement.deviceManagementDomainJoinConnector summary: Delete navigation property domainJoinConnectors for deviceManagement + description: A list of connector objects. operationId: deviceManagement_DeleteDomainJoinConnectors parameters: - name: deviceManagementDomainJoinConnector-id @@ -1967,6 +2010,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Get exchangeConnectors from deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_ListExchangeConnectors parameters: - $ref: '#/components/parameters/top' @@ -2065,6 +2109,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Create new navigation property to exchangeConnectors for deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_CreateExchangeConnectors requestBody: description: New navigation property @@ -2088,6 +2133,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Get exchangeConnectors from deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_GetExchangeConnectors parameters: - name: deviceManagementExchangeConnector-id @@ -2144,6 +2190,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Update the navigation property exchangeConnectors in deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_UpdateExchangeConnectors parameters: - name: deviceManagementExchangeConnector-id @@ -2170,6 +2217,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Delete navigation property exchangeConnectors for deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_DeleteExchangeConnectors parameters: - name: deviceManagementExchangeConnector-id @@ -2195,6 +2243,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Get exchangeOnPremisesPolicies from deviceManagement + description: The list of Exchange On Premisis policies configured by the tenant. operationId: deviceManagement_ListExchangeOnPremisesPolicies parameters: - $ref: '#/components/parameters/top' @@ -2280,6 +2329,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Create new navigation property to exchangeOnPremisesPolicies for deviceManagement + description: The list of Exchange On Premisis policies configured by the tenant. operationId: deviceManagement_CreateExchangeOnPremisesPolicies requestBody: description: New navigation property @@ -2303,6 +2353,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Get exchangeOnPremisesPolicies from deviceManagement + description: The list of Exchange On Premisis policies configured by the tenant. operationId: deviceManagement_GetExchangeOnPremisesPolicies parameters: - name: deviceManagementExchangeOnPremisesPolicy-id @@ -2361,6 +2412,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Update the navigation property exchangeOnPremisesPolicies in deviceManagement + description: The list of Exchange On Premisis policies configured by the tenant. operationId: deviceManagement_UpdateExchangeOnPremisesPolicies parameters: - name: deviceManagementExchangeOnPremisesPolicy-id @@ -2387,6 +2439,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Delete navigation property exchangeOnPremisesPolicies for deviceManagement + description: The list of Exchange On Premisis policies configured by the tenant. operationId: deviceManagement_DeleteExchangeOnPremisesPolicies parameters: - name: deviceManagementExchangeOnPremisesPolicy-id @@ -2412,6 +2465,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Get conditionalAccessSettings from deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement.exchangeOnPremisesPolicies_GetConditionalAccessSettings parameters: - name: deviceManagementExchangeOnPremisesPolicy-id @@ -2463,6 +2517,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Update the navigation property conditionalAccessSettings in deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement.exchangeOnPremisesPolicies_UpdateConditionalAccessSettings parameters: - name: deviceManagementExchangeOnPremisesPolicy-id @@ -2489,6 +2544,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Delete navigation property conditionalAccessSettings for deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement.exchangeOnPremisesPolicies_DeleteConditionalAccessSettings parameters: - name: deviceManagementExchangeOnPremisesPolicy-id @@ -2514,6 +2570,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Get exchangeOnPremisesPolicy from deviceManagement + description: The policy which controls mobile device access to Exchange On Premises operationId: deviceManagement_GetExchangeOnPremisesPolicy parameters: - name: $select @@ -2563,6 +2620,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Update the navigation property exchangeOnPremisesPolicy in deviceManagement + description: The policy which controls mobile device access to Exchange On Premises operationId: deviceManagement_UpdateExchangeOnPremisesPolicy requestBody: description: New navigation property values @@ -2581,6 +2639,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Delete navigation property exchangeOnPremisesPolicy for deviceManagement + description: The policy which controls mobile device access to Exchange On Premises operationId: deviceManagement_DeleteExchangeOnPremisesPolicy parameters: - name: If-Match @@ -2599,6 +2658,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Get conditionalAccessSettings from deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement.exchangeOnPremisesPolicy_GetConditionalAccessSettings parameters: - name: $select @@ -2643,6 +2703,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Update the navigation property conditionalAccessSettings in deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement.exchangeOnPremisesPolicy_UpdateConditionalAccessSettings requestBody: description: New navigation property values @@ -2661,6 +2722,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Delete navigation property conditionalAccessSettings for deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement.exchangeOnPremisesPolicy_DeleteConditionalAccessSettings parameters: - name: If-Match @@ -2679,6 +2741,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get groupPolicyCategories from deviceManagement + description: The available group policy categories for this account. operationId: deviceManagement_ListGroupPolicyCategories parameters: - $ref: '#/components/parameters/top' @@ -2767,6 +2830,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Create new navigation property to groupPolicyCategories for deviceManagement + description: The available group policy categories for this account. operationId: deviceManagement_CreateGroupPolicyCategories requestBody: description: New navigation property @@ -2790,6 +2854,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get groupPolicyCategories from deviceManagement + description: The available group policy categories for this account. operationId: deviceManagement_GetGroupPolicyCategories parameters: - name: groupPolicyCategory-id @@ -2865,6 +2930,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Update the navigation property groupPolicyCategories in deviceManagement + description: The available group policy categories for this account. operationId: deviceManagement_UpdateGroupPolicyCategories parameters: - name: groupPolicyCategory-id @@ -2891,6 +2957,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Delete navigation property groupPolicyCategories for deviceManagement + description: The available group policy categories for this account. operationId: deviceManagement_DeleteGroupPolicyCategories parameters: - name: groupPolicyCategory-id @@ -2916,6 +2983,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get children from deviceManagement + description: The children categories operationId: deviceManagement.groupPolicyCategories_ListChildren parameters: - name: groupPolicyCategory-id @@ -3012,6 +3080,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get ref of children from deviceManagement + description: The children categories operationId: deviceManagement.groupPolicyCategories_ListRefChildren parameters: - name: groupPolicyCategory-id @@ -3072,6 +3141,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Create new navigation property ref to children for deviceManagement + description: The children categories operationId: deviceManagement.groupPolicyCategories_CreateRefChildren parameters: - name: groupPolicyCategory-id @@ -3107,6 +3177,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get definitionFile from deviceManagement + description: The id of the definition file the category came from operationId: deviceManagement.groupPolicyCategories_GetDefinitionFile parameters: - name: groupPolicyCategory-id @@ -3170,6 +3241,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get ref of definitionFile from deviceManagement + description: The id of the definition file the category came from operationId: deviceManagement.groupPolicyCategories_GetRefDefinitionFile parameters: - name: groupPolicyCategory-id @@ -3198,6 +3270,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Update the ref of navigation property definitionFile in deviceManagement + description: The id of the definition file the category came from operationId: deviceManagement.groupPolicyCategories_SetRefDefinitionFile parameters: - name: groupPolicyCategory-id @@ -3226,6 +3299,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Delete ref of navigation property definitionFile for deviceManagement + description: The id of the definition file the category came from operationId: deviceManagement.groupPolicyCategories_DeleteRefDefinitionFile parameters: - name: groupPolicyCategory-id @@ -3251,6 +3325,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get definitions from deviceManagement + description: The immediate GroupPolicyDefinition children of the category operationId: deviceManagement.groupPolicyCategories_ListDefinitions parameters: - name: groupPolicyCategory-id @@ -3360,6 +3435,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get ref of definitions from deviceManagement + description: The immediate GroupPolicyDefinition children of the category operationId: deviceManagement.groupPolicyCategories_ListRefDefinitions parameters: - name: groupPolicyCategory-id @@ -3430,6 +3506,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Create new navigation property ref to definitions for deviceManagement + description: The immediate GroupPolicyDefinition children of the category operationId: deviceManagement.groupPolicyCategories_CreateRefDefinitions parameters: - name: groupPolicyCategory-id @@ -3465,6 +3542,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get parent from deviceManagement + description: The parent category operationId: deviceManagement.groupPolicyCategories_GetParent parameters: - name: groupPolicyCategory-id @@ -3541,6 +3619,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get ref of parent from deviceManagement + description: The parent category operationId: deviceManagement.groupPolicyCategories_GetRefParent parameters: - name: groupPolicyCategory-id @@ -3581,6 +3660,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Update the ref of navigation property parent in deviceManagement + description: The parent category operationId: deviceManagement.groupPolicyCategories_SetRefParent parameters: - name: groupPolicyCategory-id @@ -3609,6 +3689,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Delete ref of navigation property parent for deviceManagement + description: The parent category operationId: deviceManagement.groupPolicyCategories_DeleteRefParent parameters: - name: groupPolicyCategory-id @@ -3634,6 +3715,7 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Get groupPolicyDefinitionFiles from deviceManagement + description: The available group policy definition files for this account. operationId: deviceManagement_ListGroupPolicyDefinitionFiles parameters: - $ref: '#/components/parameters/top' @@ -3731,6 +3813,7 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Create new navigation property to groupPolicyDefinitionFiles for deviceManagement + description: The available group policy definition files for this account. operationId: deviceManagement_CreateGroupPolicyDefinitionFiles requestBody: description: New navigation property @@ -3754,6 +3837,7 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Get groupPolicyDefinitionFiles from deviceManagement + description: The available group policy definition files for this account. operationId: deviceManagement_GetGroupPolicyDefinitionFiles parameters: - name: groupPolicyDefinitionFile-id @@ -3816,6 +3900,7 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Update the navigation property groupPolicyDefinitionFiles in deviceManagement + description: The available group policy definition files for this account. operationId: deviceManagement_UpdateGroupPolicyDefinitionFiles parameters: - name: groupPolicyDefinitionFile-id @@ -3842,6 +3927,7 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Delete navigation property groupPolicyDefinitionFiles for deviceManagement + description: The available group policy definition files for this account. operationId: deviceManagement_DeleteGroupPolicyDefinitionFiles parameters: - name: groupPolicyDefinitionFile-id @@ -3867,6 +3953,7 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Get definitions from deviceManagement + description: The group policy definitions associated with the file. operationId: deviceManagement.groupPolicyDefinitionFiles_ListDefinitions parameters: - name: groupPolicyDefinitionFile-id @@ -3976,6 +4063,7 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Get ref of definitions from deviceManagement + description: The group policy definitions associated with the file. operationId: deviceManagement.groupPolicyDefinitionFiles_ListRefDefinitions parameters: - name: groupPolicyDefinitionFile-id @@ -4046,6 +4134,7 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Create new navigation property ref to definitions for deviceManagement + description: The group policy definitions associated with the file. operationId: deviceManagement.groupPolicyDefinitionFiles_CreateRefDefinitions parameters: - name: groupPolicyDefinitionFile-id @@ -4081,6 +4170,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get groupPolicyDefinitions from deviceManagement + description: The available group policy definitions for this account. operationId: deviceManagement_ListGroupPolicyDefinitions parameters: - $ref: '#/components/parameters/top' @@ -4182,6 +4272,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Create new navigation property to groupPolicyDefinitions for deviceManagement + description: The available group policy definitions for this account. operationId: deviceManagement_CreateGroupPolicyDefinitions requestBody: description: New navigation property @@ -4205,6 +4296,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get groupPolicyDefinitions from deviceManagement + description: The available group policy definitions for this account. operationId: deviceManagement_GetGroupPolicyDefinitions parameters: - name: groupPolicyDefinition-id @@ -4279,6 +4371,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Update the navigation property groupPolicyDefinitions in deviceManagement + description: The available group policy definitions for this account. operationId: deviceManagement_UpdateGroupPolicyDefinitions parameters: - name: groupPolicyDefinition-id @@ -4305,6 +4398,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Delete navigation property groupPolicyDefinitions for deviceManagement + description: The available group policy definitions for this account. operationId: deviceManagement_DeleteGroupPolicyDefinitions parameters: - name: groupPolicyDefinition-id @@ -4330,6 +4424,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get category from deviceManagement + description: The group policy category associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_GetCategory parameters: - name: groupPolicyDefinition-id @@ -4406,6 +4501,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get ref of category from deviceManagement + description: The group policy category associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_GetRefCategory parameters: - name: groupPolicyDefinition-id @@ -4446,6 +4542,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Update the ref of navigation property category in deviceManagement + description: The group policy category associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_SetRefCategory parameters: - name: groupPolicyDefinition-id @@ -4474,6 +4571,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Delete ref of navigation property category for deviceManagement + description: The group policy category associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_DeleteRefCategory parameters: - name: groupPolicyDefinition-id @@ -4499,6 +4597,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definitionFile from deviceManagement + description: The group policy file associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_GetDefinitionFile parameters: - name: groupPolicyDefinition-id @@ -4562,6 +4661,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get ref of definitionFile from deviceManagement + description: The group policy file associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_GetRefDefinitionFile parameters: - name: groupPolicyDefinition-id @@ -4590,6 +4690,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Update the ref of navigation property definitionFile in deviceManagement + description: The group policy file associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_SetRefDefinitionFile parameters: - name: groupPolicyDefinition-id @@ -4618,6 +4719,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Delete ref of navigation property definitionFile for deviceManagement + description: The group policy file associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_DeleteRefDefinitionFile parameters: - name: groupPolicyDefinition-id @@ -4643,6 +4745,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_ListPresentations parameters: - name: groupPolicyDefinition-id @@ -4729,6 +4832,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Create new navigation property to presentations for deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_CreatePresentations parameters: - name: groupPolicyDefinition-id @@ -4760,6 +4864,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_GetPresentations parameters: - name: groupPolicyDefinition-id @@ -4824,6 +4929,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Update the navigation property presentations in deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_UpdatePresentations parameters: - name: groupPolicyDefinition-id @@ -4857,6 +4963,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Delete navigation property presentations for deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_DeletePresentations parameters: - name: groupPolicyDefinition-id @@ -4889,6 +4996,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definition from deviceManagement + description: The group policy definition associated with the presentation. operationId: deviceManagement.groupPolicyDefinitions.presentations_GetDefinition parameters: - name: groupPolicyDefinition-id @@ -4974,6 +5082,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get ref of definition from deviceManagement + description: The group policy definition associated with the presentation. operationId: deviceManagement.groupPolicyDefinitions.presentations_GetRefDefinition parameters: - name: groupPolicyDefinition-id @@ -5020,6 +5129,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Update the ref of navigation property definition in deviceManagement + description: The group policy definition associated with the presentation. operationId: deviceManagement.groupPolicyDefinitions.presentations_SetRefDefinition parameters: - name: groupPolicyDefinition-id @@ -5055,6 +5165,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Delete ref of navigation property definition for deviceManagement + description: The group policy definition associated with the presentation. operationId: deviceManagement.groupPolicyDefinitions.presentations_DeleteRefDefinition parameters: - name: groupPolicyDefinition-id @@ -5087,6 +5198,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get groupPolicyMigrationReports from deviceManagement + description: A list of Group Policy migration reports. operationId: deviceManagement_ListGroupPolicyMigrationReports parameters: - $ref: '#/components/parameters/top' @@ -5198,6 +5310,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Create new navigation property to groupPolicyMigrationReports for deviceManagement + description: A list of Group Policy migration reports. operationId: deviceManagement_CreateGroupPolicyMigrationReports requestBody: description: New navigation property @@ -5221,6 +5334,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get groupPolicyMigrationReports from deviceManagement + description: A list of Group Policy migration reports. operationId: deviceManagement_GetGroupPolicyMigrationReports parameters: - name: groupPolicyMigrationReport-id @@ -5293,6 +5407,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Update the navigation property groupPolicyMigrationReports in deviceManagement + description: A list of Group Policy migration reports. operationId: deviceManagement_UpdateGroupPolicyMigrationReports parameters: - name: groupPolicyMigrationReport-id @@ -5319,6 +5434,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Delete navigation property groupPolicyMigrationReports for deviceManagement + description: A list of Group Policy migration reports. operationId: deviceManagement_DeleteGroupPolicyMigrationReports parameters: - name: groupPolicyMigrationReport-id @@ -5344,6 +5460,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get groupPolicySettingMappings from deviceManagement + description: A list of group policy settings to MDM/Intune mappings. operationId: deviceManagement.groupPolicyMigrationReports_ListGroupPolicySettingMappings parameters: - name: groupPolicyMigrationReport-id @@ -5482,6 +5599,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Create new navigation property to groupPolicySettingMappings for deviceManagement + description: A list of group policy settings to MDM/Intune mappings. operationId: deviceManagement.groupPolicyMigrationReports_CreateGroupPolicySettingMappings parameters: - name: groupPolicyMigrationReport-id @@ -5513,6 +5631,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get groupPolicySettingMappings from deviceManagement + description: A list of group policy settings to MDM/Intune mappings. operationId: deviceManagement.groupPolicyMigrationReports_GetGroupPolicySettingMappings parameters: - name: groupPolicyMigrationReport-id @@ -5587,6 +5706,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Update the navigation property groupPolicySettingMappings in deviceManagement + description: A list of group policy settings to MDM/Intune mappings. operationId: deviceManagement.groupPolicyMigrationReports_UpdateGroupPolicySettingMappings parameters: - name: groupPolicyMigrationReport-id @@ -5620,6 +5740,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Delete navigation property groupPolicySettingMappings for deviceManagement + description: A list of group policy settings to MDM/Intune mappings. operationId: deviceManagement.groupPolicyMigrationReports_DeleteGroupPolicySettingMappings parameters: - name: groupPolicyMigrationReport-id @@ -5652,6 +5773,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get unsupportedGroupPolicyExtensions from deviceManagement + description: A list of unsupported group policy extensions inside the Group Policy Object. operationId: deviceManagement.groupPolicyMigrationReports_ListUnsupportedGroupPolicyExtensions parameters: - name: groupPolicyMigrationReport-id @@ -5742,6 +5864,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Create new navigation property to unsupportedGroupPolicyExtensions for deviceManagement + description: A list of unsupported group policy extensions inside the Group Policy Object. operationId: deviceManagement.groupPolicyMigrationReports_CreateUnsupportedGroupPolicyExtensions parameters: - name: groupPolicyMigrationReport-id @@ -5773,6 +5896,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get unsupportedGroupPolicyExtensions from deviceManagement + description: A list of unsupported group policy extensions inside the Group Policy Object. operationId: deviceManagement.groupPolicyMigrationReports_GetUnsupportedGroupPolicyExtensions parameters: - name: groupPolicyMigrationReport-id @@ -5831,6 +5955,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Update the navigation property unsupportedGroupPolicyExtensions in deviceManagement + description: A list of unsupported group policy extensions inside the Group Policy Object. operationId: deviceManagement.groupPolicyMigrationReports_UpdateUnsupportedGroupPolicyExtensions parameters: - name: groupPolicyMigrationReport-id @@ -5864,6 +5989,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Delete navigation property unsupportedGroupPolicyExtensions for deviceManagement + description: A list of unsupported group policy extensions inside the Group Policy Object. operationId: deviceManagement.groupPolicyMigrationReports_DeleteUnsupportedGroupPolicyExtensions parameters: - name: groupPolicyMigrationReport-id @@ -5896,6 +6022,7 @@ paths: tags: - deviceManagement.groupPolicyObjectFile summary: Get groupPolicyObjectFiles from deviceManagement + description: A list of Group Policy Object files uploaded. operationId: deviceManagement_ListGroupPolicyObjectFiles parameters: - $ref: '#/components/parameters/top' @@ -5982,6 +6109,7 @@ paths: tags: - deviceManagement.groupPolicyObjectFile summary: Create new navigation property to groupPolicyObjectFiles for deviceManagement + description: A list of Group Policy Object files uploaded. operationId: deviceManagement_CreateGroupPolicyObjectFiles requestBody: description: New navigation property @@ -6005,6 +6133,7 @@ paths: tags: - deviceManagement.groupPolicyObjectFile summary: Get groupPolicyObjectFiles from deviceManagement + description: A list of Group Policy Object files uploaded. operationId: deviceManagement_GetGroupPolicyObjectFiles parameters: - name: groupPolicyObjectFile-id @@ -6057,6 +6186,7 @@ paths: tags: - deviceManagement.groupPolicyObjectFile summary: Update the navigation property groupPolicyObjectFiles in deviceManagement + description: A list of Group Policy Object files uploaded. operationId: deviceManagement_UpdateGroupPolicyObjectFiles parameters: - name: groupPolicyObjectFile-id @@ -6083,6 +6213,7 @@ paths: tags: - deviceManagement.groupPolicyObjectFile summary: Delete navigation property groupPolicyObjectFiles for deviceManagement + description: A list of Group Policy Object files uploaded. operationId: deviceManagement_DeleteGroupPolicyObjectFiles parameters: - name: groupPolicyObjectFile-id @@ -6108,6 +6239,7 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Get groupPolicyUploadedDefinitionFiles from deviceManagement + description: The available group policy uploaded definition files for this account. operationId: deviceManagement_ListGroupPolicyUploadedDefinitionFiles parameters: - $ref: '#/components/parameters/top' @@ -6225,6 +6357,7 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Create new navigation property to groupPolicyUploadedDefinitionFiles for deviceManagement + description: The available group policy uploaded definition files for this account. operationId: deviceManagement_CreateGroupPolicyUploadedDefinitionFiles requestBody: description: New navigation property @@ -6248,6 +6381,7 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Get groupPolicyUploadedDefinitionFiles from deviceManagement + description: The available group policy uploaded definition files for this account. operationId: deviceManagement_GetGroupPolicyUploadedDefinitionFiles parameters: - name: groupPolicyUploadedDefinitionFile-id @@ -6322,6 +6456,7 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Update the navigation property groupPolicyUploadedDefinitionFiles in deviceManagement + description: The available group policy uploaded definition files for this account. operationId: deviceManagement_UpdateGroupPolicyUploadedDefinitionFiles parameters: - name: groupPolicyUploadedDefinitionFile-id @@ -6348,6 +6483,7 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Delete navigation property groupPolicyUploadedDefinitionFiles for deviceManagement + description: The available group policy uploaded definition files for this account. operationId: deviceManagement_DeleteGroupPolicyUploadedDefinitionFiles parameters: - name: groupPolicyUploadedDefinitionFile-id @@ -6373,6 +6509,7 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Get groupPolicyOperations from deviceManagement + description: The list of operations on the uploaded ADMX file. operationId: deviceManagement.groupPolicyUploadedDefinitionFiles_ListGroupPolicyOperations parameters: - name: groupPolicyUploadedDefinitionFile-id @@ -6463,6 +6600,7 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Create new navigation property to groupPolicyOperations for deviceManagement + description: The list of operations on the uploaded ADMX file. operationId: deviceManagement.groupPolicyUploadedDefinitionFiles_CreateGroupPolicyOperations parameters: - name: groupPolicyUploadedDefinitionFile-id @@ -6494,6 +6632,7 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Get groupPolicyOperations from deviceManagement + description: The list of operations on the uploaded ADMX file. operationId: deviceManagement.groupPolicyUploadedDefinitionFiles_GetGroupPolicyOperations parameters: - name: groupPolicyUploadedDefinitionFile-id @@ -6552,6 +6691,7 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Update the navigation property groupPolicyOperations in deviceManagement + description: The list of operations on the uploaded ADMX file. operationId: deviceManagement.groupPolicyUploadedDefinitionFiles_UpdateGroupPolicyOperations parameters: - name: groupPolicyUploadedDefinitionFile-id @@ -6585,6 +6725,7 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Delete navigation property groupPolicyOperations for deviceManagement + description: The list of operations on the uploaded ADMX file. operationId: deviceManagement.groupPolicyUploadedDefinitionFiles_DeleteGroupPolicyOperations parameters: - name: groupPolicyUploadedDefinitionFile-id @@ -6617,6 +6758,7 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Get intuneBrandingProfiles from deviceManagement + description: Intune branding profiles targeted to AAD groups operationId: deviceManagement_ListIntuneBrandingProfiles parameters: - $ref: '#/components/parameters/top' @@ -6783,6 +6925,7 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Create new navigation property to intuneBrandingProfiles for deviceManagement + description: Intune branding profiles targeted to AAD groups operationId: deviceManagement_CreateIntuneBrandingProfiles requestBody: description: New navigation property @@ -6806,6 +6949,7 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Get intuneBrandingProfiles from deviceManagement + description: Intune branding profiles targeted to AAD groups operationId: deviceManagement_GetIntuneBrandingProfiles parameters: - name: intuneBrandingProfile-id @@ -6891,6 +7035,7 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Update the navigation property intuneBrandingProfiles in deviceManagement + description: Intune branding profiles targeted to AAD groups operationId: deviceManagement_UpdateIntuneBrandingProfiles parameters: - name: intuneBrandingProfile-id @@ -6917,6 +7062,7 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Delete navigation property intuneBrandingProfiles for deviceManagement + description: Intune branding profiles targeted to AAD groups operationId: deviceManagement_DeleteIntuneBrandingProfiles parameters: - name: intuneBrandingProfile-id @@ -6942,6 +7088,7 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Get assignments from deviceManagement + description: The list of group assignments for the branding profile operationId: deviceManagement.intuneBrandingProfiles_ListAssignments parameters: - name: intuneBrandingProfile-id @@ -7023,6 +7170,7 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Create new navigation property to assignments for deviceManagement + description: The list of group assignments for the branding profile operationId: deviceManagement.intuneBrandingProfiles_CreateAssignments parameters: - name: intuneBrandingProfile-id @@ -7054,6 +7202,7 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Get assignments from deviceManagement + description: The list of group assignments for the branding profile operationId: deviceManagement.intuneBrandingProfiles_GetAssignments parameters: - name: intuneBrandingProfile-id @@ -7109,6 +7258,7 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Update the navigation property assignments in deviceManagement + description: The list of group assignments for the branding profile operationId: deviceManagement.intuneBrandingProfiles_UpdateAssignments parameters: - name: intuneBrandingProfile-id @@ -7142,6 +7292,7 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Delete navigation property assignments for deviceManagement + description: The list of group assignments for the branding profile operationId: deviceManagement.intuneBrandingProfiles_DeleteAssignments parameters: - name: intuneBrandingProfile-id @@ -7174,6 +7325,7 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Get iosUpdateStatuses from deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_ListIosUpdateStatuses parameters: - $ref: '#/components/parameters/top' @@ -7281,6 +7433,7 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Create new navigation property to iosUpdateStatuses for deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_CreateIosUpdateStatuses requestBody: description: New navigation property @@ -7304,6 +7457,7 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Get iosUpdateStatuses from deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_GetIosUpdateStatuses parameters: - name: iosUpdateDeviceStatus-id @@ -7363,6 +7517,7 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Update the navigation property iosUpdateStatuses in deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_UpdateIosUpdateStatuses parameters: - name: iosUpdateDeviceStatus-id @@ -7389,6 +7544,7 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Delete navigation property iosUpdateStatuses for deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_DeleteIosUpdateStatuses parameters: - name: iosUpdateDeviceStatus-id @@ -7414,6 +7570,7 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Get mobileThreatDefenseConnectors from deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_ListMobileThreatDefenseConnectors parameters: - $ref: '#/components/parameters/top' @@ -7530,6 +7687,7 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Create new navigation property to mobileThreatDefenseConnectors for deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_CreateMobileThreatDefenseConnectors requestBody: description: New navigation property @@ -7553,6 +7711,7 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Get mobileThreatDefenseConnectors from deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_GetMobileThreatDefenseConnectors parameters: - name: mobileThreatDefenseConnector-id @@ -7615,6 +7774,7 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Update the navigation property mobileThreatDefenseConnectors in deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_UpdateMobileThreatDefenseConnectors parameters: - name: mobileThreatDefenseConnector-id @@ -7641,6 +7801,7 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Delete navigation property mobileThreatDefenseConnectors for deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_DeleteMobileThreatDefenseConnectors parameters: - name: mobileThreatDefenseConnector-id @@ -7666,6 +7827,7 @@ paths: tags: - deviceManagement.ndesConnector summary: Get ndesConnectors from deviceManagement + description: The collection of Ndes connectors for this account. operationId: deviceManagement_ListNdesConnectors parameters: - $ref: '#/components/parameters/top' @@ -7746,6 +7908,7 @@ paths: tags: - deviceManagement.ndesConnector summary: Create new navigation property to ndesConnectors for deviceManagement + description: The collection of Ndes connectors for this account. operationId: deviceManagement_CreateNdesConnectors requestBody: description: New navigation property @@ -7769,6 +7932,7 @@ paths: tags: - deviceManagement.ndesConnector summary: Get ndesConnectors from deviceManagement + description: The collection of Ndes connectors for this account. operationId: deviceManagement_GetNdesConnectors parameters: - name: ndesConnector-id @@ -7819,6 +7983,7 @@ paths: tags: - deviceManagement.ndesConnector summary: Update the navigation property ndesConnectors in deviceManagement + description: The collection of Ndes connectors for this account. operationId: deviceManagement_UpdateNdesConnectors parameters: - name: ndesConnector-id @@ -7845,6 +8010,7 @@ paths: tags: - deviceManagement.ndesConnector summary: Delete navigation property ndesConnectors for deviceManagement + description: The collection of Ndes connectors for this account. operationId: deviceManagement_DeleteNdesConnectors parameters: - name: ndesConnector-id @@ -7870,6 +8036,7 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Get remoteAssistancePartners from deviceManagement + description: The remote assist partners. operationId: deviceManagement_ListRemoteAssistancePartners parameters: - $ref: '#/components/parameters/top' @@ -7956,6 +8123,7 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Create new navigation property to remoteAssistancePartners for deviceManagement + description: The remote assist partners. operationId: deviceManagement_CreateRemoteAssistancePartners requestBody: description: New navigation property @@ -7979,6 +8147,7 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Get remoteAssistancePartners from deviceManagement + description: The remote assist partners. operationId: deviceManagement_GetRemoteAssistancePartners parameters: - name: remoteAssistancePartner-id @@ -8031,6 +8200,7 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Update the navigation property remoteAssistancePartners in deviceManagement + description: The remote assist partners. operationId: deviceManagement_UpdateRemoteAssistancePartners parameters: - name: remoteAssistancePartner-id @@ -8057,6 +8227,7 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Delete navigation property remoteAssistancePartners for deviceManagement + description: The remote assist partners. operationId: deviceManagement_DeleteRemoteAssistancePartners parameters: - name: remoteAssistancePartner-id @@ -8082,6 +8253,7 @@ paths: tags: - deviceManagement.resourceOperation summary: Get resourceOperations from deviceManagement + description: The Resource Operations. operationId: deviceManagement_ListResourceOperations parameters: - $ref: '#/components/parameters/top' @@ -8168,6 +8340,7 @@ paths: tags: - deviceManagement.resourceOperation summary: Create new navigation property to resourceOperations for deviceManagement + description: The Resource Operations. operationId: deviceManagement_CreateResourceOperations requestBody: description: New navigation property @@ -8191,6 +8364,7 @@ paths: tags: - deviceManagement.resourceOperation summary: Get resourceOperations from deviceManagement + description: The Resource Operations. operationId: deviceManagement_GetResourceOperations parameters: - name: resourceOperation-id @@ -8243,6 +8417,7 @@ paths: tags: - deviceManagement.resourceOperation summary: Update the navigation property resourceOperations in deviceManagement + description: The Resource Operations. operationId: deviceManagement_UpdateResourceOperations parameters: - name: resourceOperation-id @@ -8269,6 +8444,7 @@ paths: tags: - deviceManagement.resourceOperation summary: Delete navigation property resourceOperations for deviceManagement + description: The Resource Operations. operationId: deviceManagement_DeleteResourceOperations parameters: - name: resourceOperation-id @@ -8294,6 +8470,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Get roleAssignments from deviceManagement + description: The Role Assignments. operationId: deviceManagement_ListRoleAssignments parameters: - $ref: '#/components/parameters/top' @@ -8387,6 +8564,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Create new navigation property to roleAssignments for deviceManagement + description: The Role Assignments. operationId: deviceManagement_CreateRoleAssignments requestBody: description: New navigation property @@ -8410,6 +8588,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Get roleAssignments from deviceManagement + description: The Role Assignments. operationId: deviceManagement_GetRoleAssignments parameters: - name: deviceAndAppManagementRoleAssignment-id @@ -8476,6 +8655,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Update the navigation property roleAssignments in deviceManagement + description: The Role Assignments. operationId: deviceManagement_UpdateRoleAssignments parameters: - name: deviceAndAppManagementRoleAssignment-id @@ -8502,6 +8682,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Delete navigation property roleAssignments for deviceManagement + description: The Role Assignments. operationId: deviceManagement_DeleteRoleAssignments parameters: - name: deviceAndAppManagementRoleAssignment-id @@ -8527,6 +8708,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Get roleScopeTags from deviceManagement + description: The set of Role Scope Tags defined on the Role Assignment. operationId: deviceManagement.roleAssignments_ListRoleScopeTags parameters: - name: deviceAndAppManagementRoleAssignment-id @@ -8617,6 +8799,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Get ref of roleScopeTags from deviceManagement + description: The set of Role Scope Tags defined on the Role Assignment. operationId: deviceManagement.roleAssignments_ListRefRoleScopeTags parameters: - name: deviceAndAppManagementRoleAssignment-id @@ -8677,6 +8860,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Create new navigation property ref to roleScopeTags for deviceManagement + description: The set of Role Scope Tags defined on the Role Assignment. operationId: deviceManagement.roleAssignments_CreateRefRoleScopeTags parameters: - name: deviceAndAppManagementRoleAssignment-id @@ -8712,6 +8896,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleDefinitions from deviceManagement + description: The Role Definitions. operationId: deviceManagement_ListRoleDefinitions parameters: - $ref: '#/components/parameters/top' @@ -8806,6 +8991,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Create new navigation property to roleDefinitions for deviceManagement + description: The Role Definitions. operationId: deviceManagement_CreateRoleDefinitions requestBody: description: New navigation property @@ -8829,6 +9015,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleDefinitions from deviceManagement + description: The Role Definitions. operationId: deviceManagement_GetRoleDefinitions parameters: - name: roleDefinition-id @@ -8890,6 +9077,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Update the navigation property roleDefinitions in deviceManagement + description: The Role Definitions. operationId: deviceManagement_UpdateRoleDefinitions parameters: - name: roleDefinition-id @@ -8916,6 +9104,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Delete navigation property roleDefinitions for deviceManagement + description: The Role Definitions. operationId: deviceManagement_DeleteRoleDefinitions parameters: - name: roleDefinition-id @@ -8941,6 +9130,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleAssignments from deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_ListRoleAssignments parameters: - name: roleDefinition-id @@ -9036,6 +9226,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Create new navigation property to roleAssignments for deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_CreateRoleAssignments parameters: - name: roleDefinition-id @@ -9067,6 +9258,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleAssignments from deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_GetRoleAssignments parameters: - name: roleDefinition-id @@ -9134,6 +9326,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Update the navigation property roleAssignments in deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_UpdateRoleAssignments parameters: - name: roleDefinition-id @@ -9167,6 +9360,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Delete navigation property roleAssignments for deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_DeleteRoleAssignments parameters: - name: roleDefinition-id @@ -9199,6 +9393,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleDefinition from deviceManagement + description: Role definition this assignment is part of. operationId: deviceManagement.roleDefinitions.roleAssignments_GetRoleDefinition parameters: - name: roleDefinition-id @@ -9269,6 +9464,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get ref of roleDefinition from deviceManagement + description: Role definition this assignment is part of. operationId: deviceManagement.roleDefinitions.roleAssignments_GetRefRoleDefinition parameters: - name: roleDefinition-id @@ -9305,6 +9501,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Update the ref of navigation property roleDefinition in deviceManagement + description: Role definition this assignment is part of. operationId: deviceManagement.roleDefinitions.roleAssignments_SetRefRoleDefinition parameters: - name: roleDefinition-id @@ -9340,6 +9537,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Delete ref of navigation property roleDefinition for deviceManagement + description: Role definition this assignment is part of. operationId: deviceManagement.roleDefinitions.roleAssignments_DeleteRefRoleDefinition parameters: - name: roleDefinition-id @@ -9372,6 +9570,7 @@ paths: tags: - deviceManagement.roleScopeTag summary: Get roleScopeTags from deviceManagement + description: The Role Scope Tags. operationId: deviceManagement_ListRoleScopeTags parameters: - $ref: '#/components/parameters/top' @@ -9454,6 +9653,7 @@ paths: tags: - deviceManagement.roleScopeTag summary: Create new navigation property to roleScopeTags for deviceManagement + description: The Role Scope Tags. operationId: deviceManagement_CreateRoleScopeTags requestBody: description: New navigation property @@ -9477,6 +9677,7 @@ paths: tags: - deviceManagement.roleScopeTag summary: Get roleScopeTags from deviceManagement + description: The Role Scope Tags. operationId: deviceManagement_GetRoleScopeTags parameters: - name: roleScopeTag-id @@ -9534,6 +9735,7 @@ paths: tags: - deviceManagement.roleScopeTag summary: Update the navigation property roleScopeTags in deviceManagement + description: The Role Scope Tags. operationId: deviceManagement_UpdateRoleScopeTags parameters: - name: roleScopeTag-id @@ -9560,6 +9762,7 @@ paths: tags: - deviceManagement.roleScopeTag summary: Delete navigation property roleScopeTags for deviceManagement + description: The Role Scope Tags. operationId: deviceManagement_DeleteRoleScopeTags parameters: - name: roleScopeTag-id @@ -9585,6 +9788,7 @@ paths: tags: - deviceManagement.roleScopeTag summary: Get assignments from deviceManagement + description: The list of assignments for this Role Scope Tag. operationId: deviceManagement.roleScopeTags_ListAssignments parameters: - name: roleScopeTag-id @@ -9666,6 +9870,7 @@ paths: tags: - deviceManagement.roleScopeTag summary: Create new navigation property to assignments for deviceManagement + description: The list of assignments for this Role Scope Tag. operationId: deviceManagement.roleScopeTags_CreateAssignments parameters: - name: roleScopeTag-id @@ -9697,6 +9902,7 @@ paths: tags: - deviceManagement.roleScopeTag summary: Get assignments from deviceManagement + description: The list of assignments for this Role Scope Tag. operationId: deviceManagement.roleScopeTags_GetAssignments parameters: - name: roleScopeTag-id @@ -9752,6 +9958,7 @@ paths: tags: - deviceManagement.roleScopeTag summary: Update the navigation property assignments in deviceManagement + description: The list of assignments for this Role Scope Tag. operationId: deviceManagement.roleScopeTags_UpdateAssignments parameters: - name: roleScopeTag-id @@ -9785,6 +9992,7 @@ paths: tags: - deviceManagement.roleScopeTag summary: Delete navigation property assignments for deviceManagement + description: The list of assignments for this Role Scope Tag. operationId: deviceManagement.roleScopeTags_DeleteAssignments parameters: - name: roleScopeTag-id @@ -9817,6 +10025,7 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Get telecomExpenseManagementPartners from deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_ListTelecomExpenseManagementPartners parameters: - $ref: '#/components/parameters/top' @@ -9903,6 +10112,7 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Create new navigation property to telecomExpenseManagementPartners for deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_CreateTelecomExpenseManagementPartners requestBody: description: New navigation property @@ -9926,6 +10136,7 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Get telecomExpenseManagementPartners from deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_GetTelecomExpenseManagementPartners parameters: - name: telecomExpenseManagementPartner-id @@ -9978,6 +10189,7 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Update the navigation property telecomExpenseManagementPartners in deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_UpdateTelecomExpenseManagementPartners parameters: - name: telecomExpenseManagementPartner-id @@ -10004,6 +10216,7 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Delete navigation property telecomExpenseManagementPartners for deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_DeleteTelecomExpenseManagementPartners parameters: - name: telecomExpenseManagementPartner-id @@ -10029,6 +10242,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get termsAndConditions from deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_ListTermsAndConditions parameters: - $ref: '#/components/parameters/top' @@ -10136,6 +10350,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Create new navigation property to termsAndConditions for deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_CreateTermsAndConditions requestBody: description: New navigation property @@ -10159,6 +10374,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get termsAndConditions from deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_GetTermsAndConditions parameters: - name: termsAndConditions-id @@ -10235,6 +10451,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Update the navigation property termsAndConditions in deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_UpdateTermsAndConditions parameters: - name: termsAndConditions-id @@ -10261,6 +10478,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Delete navigation property termsAndConditions for deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_DeleteTermsAndConditions parameters: - name: termsAndConditions-id @@ -10286,6 +10504,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get acceptanceStatuses from deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_ListAcceptanceStatuses parameters: - name: termsAndConditions-id @@ -10378,6 +10597,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Create new navigation property to acceptanceStatuses for deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_CreateAcceptanceStatuses parameters: - name: termsAndConditions-id @@ -10409,6 +10629,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get acceptanceStatuses from deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_GetAcceptanceStatuses parameters: - name: termsAndConditions-id @@ -10475,6 +10696,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Update the navigation property acceptanceStatuses in deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_UpdateAcceptanceStatuses parameters: - name: termsAndConditions-id @@ -10508,6 +10730,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Delete navigation property acceptanceStatuses for deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_DeleteAcceptanceStatuses parameters: - name: termsAndConditions-id @@ -10540,6 +10763,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get termsAndConditions from deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.acceptanceStatuses_GetTermsAndConditions parameters: - name: termsAndConditions-id @@ -10627,6 +10851,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get ref of termsAndConditions from deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.acceptanceStatuses_GetRefTermsAndConditions parameters: - name: termsAndConditions-id @@ -10673,6 +10898,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Update the ref of navigation property termsAndConditions in deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.acceptanceStatuses_SetRefTermsAndConditions parameters: - name: termsAndConditions-id @@ -10708,6 +10934,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Delete ref of navigation property termsAndConditions for deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.acceptanceStatuses_DeleteRefTermsAndConditions parameters: - name: termsAndConditions-id @@ -10740,6 +10967,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get assignments from deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_ListAssignments parameters: - name: termsAndConditions-id @@ -10821,6 +11049,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Create new navigation property to assignments for deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_CreateAssignments parameters: - name: termsAndConditions-id @@ -10852,6 +11081,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get assignments from deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_GetAssignments parameters: - name: termsAndConditions-id @@ -10907,6 +11137,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Update the navigation property assignments in deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_UpdateAssignments parameters: - name: termsAndConditions-id @@ -10940,6 +11171,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Delete navigation property assignments for deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_DeleteAssignments parameters: - name: termsAndConditions-id @@ -10972,6 +11204,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get groupAssignments from deviceManagement + description: The list of group assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_ListGroupAssignments parameters: - name: termsAndConditions-id @@ -11055,6 +11288,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Create new navigation property to groupAssignments for deviceManagement + description: The list of group assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_CreateGroupAssignments parameters: - name: termsAndConditions-id @@ -11086,6 +11320,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get groupAssignments from deviceManagement + description: The list of group assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_GetGroupAssignments parameters: - name: termsAndConditions-id @@ -11149,6 +11384,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Update the navigation property groupAssignments in deviceManagement + description: The list of group assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_UpdateGroupAssignments parameters: - name: termsAndConditions-id @@ -11182,6 +11418,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Delete navigation property groupAssignments for deviceManagement + description: The list of group assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_DeleteGroupAssignments parameters: - name: termsAndConditions-id @@ -11214,6 +11451,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get termsAndConditions from deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.groupAssignments_GetTermsAndConditions parameters: - name: termsAndConditions-id @@ -11301,6 +11539,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get ref of termsAndConditions from deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.groupAssignments_GetRefTermsAndConditions parameters: - name: termsAndConditions-id @@ -11347,6 +11586,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Update the ref of navigation property termsAndConditions in deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.groupAssignments_SetRefTermsAndConditions parameters: - name: termsAndConditions-id @@ -11382,6 +11622,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Delete ref of navigation property termsAndConditions for deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.groupAssignments_DeleteRefTermsAndConditions parameters: - name: termsAndConditions-id @@ -11414,6 +11655,7 @@ paths: tags: - deviceManagement.userPFXCertificate summary: Get userPfxCertificates from deviceManagement + description: Collection of PFX certificates associated with a user. operationId: deviceManagement_ListUserPfxCertificates parameters: - $ref: '#/components/parameters/top' @@ -11521,6 +11763,7 @@ paths: tags: - deviceManagement.userPFXCertificate summary: Create new navigation property to userPfxCertificates for deviceManagement + description: Collection of PFX certificates associated with a user. operationId: deviceManagement_CreateUserPfxCertificates requestBody: description: New navigation property @@ -11544,6 +11787,7 @@ paths: tags: - deviceManagement.userPFXCertificate summary: Get userPfxCertificates from deviceManagement + description: Collection of PFX certificates associated with a user. operationId: deviceManagement_GetUserPfxCertificates parameters: - name: userPFXCertificate-id @@ -11603,6 +11847,7 @@ paths: tags: - deviceManagement.userPFXCertificate summary: Update the navigation property userPfxCertificates in deviceManagement + description: Collection of PFX certificates associated with a user. operationId: deviceManagement_UpdateUserPfxCertificates parameters: - name: userPFXCertificate-id @@ -11629,6 +11874,7 @@ paths: tags: - deviceManagement.userPFXCertificate summary: Delete navigation property userPfxCertificates for deviceManagement + description: Collection of PFX certificates associated with a user. operationId: deviceManagement_DeleteUserPfxCertificates parameters: - name: userPFXCertificate-id diff --git a/openApiDocs/beta/DeviceManagement.Enrolment.yml b/openApiDocs/beta/DeviceManagement.Enrolment.yml index 491bfac430a..5203c4bfd02 100644 --- a/openApiDocs/beta/DeviceManagement.Enrolment.yml +++ b/openApiDocs/beta/DeviceManagement.Enrolment.yml @@ -11,6 +11,7 @@ paths: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Get androidDeviceOwnerEnrollmentProfiles from deviceManagement + description: Android device owner enrollment profile entities. operationId: deviceManagement_ListAndroidDeviceOwnerEnrollmentProfiles parameters: - $ref: '#/components/parameters/top' @@ -124,6 +125,7 @@ paths: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Create new navigation property to androidDeviceOwnerEnrollmentProfiles for deviceManagement + description: Android device owner enrollment profile entities. operationId: deviceManagement_CreateAndroidDeviceOwnerEnrollmentProfiles requestBody: description: New navigation property @@ -147,6 +149,7 @@ paths: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Get androidDeviceOwnerEnrollmentProfiles from deviceManagement + description: Android device owner enrollment profile entities. operationId: deviceManagement_GetAndroidDeviceOwnerEnrollmentProfiles parameters: - name: androidDeviceOwnerEnrollmentProfile-id @@ -208,6 +211,7 @@ paths: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Update the navigation property androidDeviceOwnerEnrollmentProfiles in deviceManagement + description: Android device owner enrollment profile entities. operationId: deviceManagement_UpdateAndroidDeviceOwnerEnrollmentProfiles parameters: - name: androidDeviceOwnerEnrollmentProfile-id @@ -234,6 +238,7 @@ paths: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Delete navigation property androidDeviceOwnerEnrollmentProfiles for deviceManagement + description: Android device owner enrollment profile entities. operationId: deviceManagement_DeleteAndroidDeviceOwnerEnrollmentProfiles parameters: - name: androidDeviceOwnerEnrollmentProfile-id @@ -259,6 +264,7 @@ paths: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Get androidForWorkEnrollmentProfiles from deviceManagement + description: Android for Work enrollment profile entities. operationId: deviceManagement_ListAndroidForWorkEnrollmentProfiles parameters: - $ref: '#/components/parameters/top' @@ -360,6 +366,7 @@ paths: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Create new navigation property to androidForWorkEnrollmentProfiles for deviceManagement + description: Android for Work enrollment profile entities. operationId: deviceManagement_CreateAndroidForWorkEnrollmentProfiles requestBody: description: New navigation property @@ -383,6 +390,7 @@ paths: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Get androidForWorkEnrollmentProfiles from deviceManagement + description: Android for Work enrollment profile entities. operationId: deviceManagement_GetAndroidForWorkEnrollmentProfiles parameters: - name: androidForWorkEnrollmentProfile-id @@ -440,6 +448,7 @@ paths: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Update the navigation property androidForWorkEnrollmentProfiles in deviceManagement + description: Android for Work enrollment profile entities. operationId: deviceManagement_UpdateAndroidForWorkEnrollmentProfiles parameters: - name: androidForWorkEnrollmentProfile-id @@ -466,6 +475,7 @@ paths: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Delete navigation property androidForWorkEnrollmentProfiles for deviceManagement + description: Android for Work enrollment profile entities. operationId: deviceManagement_DeleteAndroidForWorkEnrollmentProfiles parameters: - name: androidForWorkEnrollmentProfile-id @@ -491,6 +501,7 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get appleUserInitiatedEnrollmentProfiles from deviceManagement + description: Apple user initiated enrollment profiles operationId: deviceManagement_ListAppleUserInitiatedEnrollmentProfiles parameters: - $ref: '#/components/parameters/top' @@ -588,6 +599,7 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Create new navigation property to appleUserInitiatedEnrollmentProfiles for deviceManagement + description: Apple user initiated enrollment profiles operationId: deviceManagement_CreateAppleUserInitiatedEnrollmentProfiles requestBody: description: New navigation property @@ -611,6 +623,7 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get appleUserInitiatedEnrollmentProfiles from deviceManagement + description: Apple user initiated enrollment profiles operationId: deviceManagement_GetAppleUserInitiatedEnrollmentProfiles parameters: - name: appleUserInitiatedEnrollmentProfile-id @@ -673,6 +686,7 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Update the navigation property appleUserInitiatedEnrollmentProfiles in deviceManagement + description: Apple user initiated enrollment profiles operationId: deviceManagement_UpdateAppleUserInitiatedEnrollmentProfiles parameters: - name: appleUserInitiatedEnrollmentProfile-id @@ -699,6 +713,7 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Delete navigation property appleUserInitiatedEnrollmentProfiles for deviceManagement + description: Apple user initiated enrollment profiles operationId: deviceManagement_DeleteAppleUserInitiatedEnrollmentProfiles parameters: - name: appleUserInitiatedEnrollmentProfile-id @@ -724,6 +739,7 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get assignments from deviceManagement + description: The list of assignments for this profile. operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles_ListAssignments parameters: - name: appleUserInitiatedEnrollmentProfile-id @@ -805,6 +821,7 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Create new navigation property to assignments for deviceManagement + description: The list of assignments for this profile. operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles_CreateAssignments parameters: - name: appleUserInitiatedEnrollmentProfile-id @@ -836,6 +853,7 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get assignments from deviceManagement + description: The list of assignments for this profile. operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles_GetAssignments parameters: - name: appleUserInitiatedEnrollmentProfile-id @@ -891,6 +909,7 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Update the navigation property assignments in deviceManagement + description: The list of assignments for this profile. operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles_UpdateAssignments parameters: - name: appleUserInitiatedEnrollmentProfile-id @@ -924,6 +943,7 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Delete navigation property assignments for deviceManagement + description: The list of assignments for this profile. operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles_DeleteAssignments parameters: - name: appleUserInitiatedEnrollmentProfile-id @@ -956,6 +976,7 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Get autopilotEvents from deviceManagement + description: The list of autopilot events for the tenant. operationId: deviceManagement_ListAutopilotEvents parameters: - $ref: '#/components/parameters/top' @@ -1107,6 +1128,7 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Create new navigation property to autopilotEvents for deviceManagement + description: The list of autopilot events for the tenant. operationId: deviceManagement_CreateAutopilotEvents requestBody: description: New navigation property @@ -1130,6 +1152,7 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Get autopilotEvents from deviceManagement + description: The list of autopilot events for the tenant. operationId: deviceManagement_GetAutopilotEvents parameters: - name: deviceManagementAutopilotEvent-id @@ -1210,6 +1233,7 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Update the navigation property autopilotEvents in deviceManagement + description: The list of autopilot events for the tenant. operationId: deviceManagement_UpdateAutopilotEvents parameters: - name: deviceManagementAutopilotEvent-id @@ -1236,6 +1260,7 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Delete navigation property autopilotEvents for deviceManagement + description: The list of autopilot events for the tenant. operationId: deviceManagement_DeleteAutopilotEvents parameters: - name: deviceManagementAutopilotEvent-id @@ -1261,6 +1286,7 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Get policyStatusDetails from deviceManagement + description: Policy and application status details for this device. operationId: deviceManagement.autopilotEvents_ListPolicyStatusDetails parameters: - name: deviceManagementAutopilotEvent-id @@ -1357,6 +1383,7 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Create new navigation property to policyStatusDetails for deviceManagement + description: Policy and application status details for this device. operationId: deviceManagement.autopilotEvents_CreatePolicyStatusDetails parameters: - name: deviceManagementAutopilotEvent-id @@ -1388,6 +1415,7 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Get policyStatusDetails from deviceManagement + description: Policy and application status details for this device. operationId: deviceManagement.autopilotEvents_GetPolicyStatusDetails parameters: - name: deviceManagementAutopilotEvent-id @@ -1448,6 +1476,7 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Update the navigation property policyStatusDetails in deviceManagement + description: Policy and application status details for this device. operationId: deviceManagement.autopilotEvents_UpdatePolicyStatusDetails parameters: - name: deviceManagementAutopilotEvent-id @@ -1481,6 +1510,7 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Delete navigation property policyStatusDetails for deviceManagement + description: Policy and application status details for this device. operationId: deviceManagement.autopilotEvents_DeletePolicyStatusDetails parameters: - name: deviceManagementAutopilotEvent-id @@ -1513,6 +1543,7 @@ paths: tags: - deviceManagement.onPremisesConditionalAccessSettings summary: Get conditionalAccessSettings from deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement_GetConditionalAccessSettings parameters: - name: $select @@ -1557,6 +1588,7 @@ paths: tags: - deviceManagement.onPremisesConditionalAccessSettings summary: Update the navigation property conditionalAccessSettings in deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement_UpdateConditionalAccessSettings requestBody: description: New navigation property values @@ -1575,6 +1607,7 @@ paths: tags: - deviceManagement.onPremisesConditionalAccessSettings summary: Delete navigation property conditionalAccessSettings for deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement_DeleteConditionalAccessSettings parameters: - name: If-Match @@ -1593,6 +1626,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get depOnboardingSettings from deviceManagement + description: This collections of multiple DEP tokens per-tenant. operationId: deviceManagement_ListDepOnboardingSettings parameters: - $ref: '#/components/parameters/top' @@ -1708,6 +1742,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Create new navigation property to depOnboardingSettings for deviceManagement + description: This collections of multiple DEP tokens per-tenant. operationId: deviceManagement_CreateDepOnboardingSettings requestBody: description: New navigation property @@ -1731,6 +1766,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get depOnboardingSettings from deviceManagement + description: This collections of multiple DEP tokens per-tenant. operationId: deviceManagement_GetDepOnboardingSettings parameters: - name: depOnboardingSetting-id @@ -1815,6 +1851,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Update the navigation property depOnboardingSettings in deviceManagement + description: This collections of multiple DEP tokens per-tenant. operationId: deviceManagement_UpdateDepOnboardingSettings parameters: - name: depOnboardingSetting-id @@ -1841,6 +1878,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Delete navigation property depOnboardingSettings for deviceManagement + description: This collections of multiple DEP tokens per-tenant. operationId: deviceManagement_DeleteDepOnboardingSettings parameters: - name: depOnboardingSetting-id @@ -1866,6 +1904,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get defaultIosEnrollmentProfile from deviceManagement + description: Default iOS Enrollment Profile operationId: deviceManagement.depOnboardingSettings_GetDefaultIosEnrollmentProfile parameters: - name: depOnboardingSetting-id @@ -1962,6 +2001,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get ref of defaultIosEnrollmentProfile from deviceManagement + description: Default iOS Enrollment Profile operationId: deviceManagement.depOnboardingSettings_GetRefDefaultIosEnrollmentProfile parameters: - name: depOnboardingSetting-id @@ -1985,6 +2025,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Update the ref of navigation property defaultIosEnrollmentProfile in deviceManagement + description: Default iOS Enrollment Profile operationId: deviceManagement.depOnboardingSettings_SetRefDefaultIosEnrollmentProfile parameters: - name: depOnboardingSetting-id @@ -2013,6 +2054,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Delete ref of navigation property defaultIosEnrollmentProfile for deviceManagement + description: Default iOS Enrollment Profile operationId: deviceManagement.depOnboardingSettings_DeleteRefDefaultIosEnrollmentProfile parameters: - name: depOnboardingSetting-id @@ -2038,6 +2080,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get defaultMacOsEnrollmentProfile from deviceManagement + description: Default MacOs Enrollment Profile operationId: deviceManagement.depOnboardingSettings_GetDefaultMacOsEnrollmentProfile parameters: - name: depOnboardingSetting-id @@ -2119,6 +2162,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get ref of defaultMacOsEnrollmentProfile from deviceManagement + description: Default MacOs Enrollment Profile operationId: deviceManagement.depOnboardingSettings_GetRefDefaultMacOsEnrollmentProfile parameters: - name: depOnboardingSetting-id @@ -2142,6 +2186,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Update the ref of navigation property defaultMacOsEnrollmentProfile in deviceManagement + description: Default MacOs Enrollment Profile operationId: deviceManagement.depOnboardingSettings_SetRefDefaultMacOsEnrollmentProfile parameters: - name: depOnboardingSetting-id @@ -2170,6 +2215,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Delete ref of navigation property defaultMacOsEnrollmentProfile for deviceManagement + description: Default MacOs Enrollment Profile operationId: deviceManagement.depOnboardingSettings_DeleteRefDefaultMacOsEnrollmentProfile parameters: - name: depOnboardingSetting-id @@ -2195,6 +2241,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get enrollmentProfiles from deviceManagement + description: The enrollment profiles. operationId: deviceManagement.depOnboardingSettings_ListEnrollmentProfiles parameters: - name: depOnboardingSetting-id @@ -2291,6 +2338,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Create new navigation property to enrollmentProfiles for deviceManagement + description: The enrollment profiles. operationId: deviceManagement.depOnboardingSettings_CreateEnrollmentProfiles parameters: - name: depOnboardingSetting-id @@ -2322,6 +2370,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get enrollmentProfiles from deviceManagement + description: The enrollment profiles. operationId: deviceManagement.depOnboardingSettings_GetEnrollmentProfiles parameters: - name: depOnboardingSetting-id @@ -2382,6 +2431,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Update the navigation property enrollmentProfiles in deviceManagement + description: The enrollment profiles. operationId: deviceManagement.depOnboardingSettings_UpdateEnrollmentProfiles parameters: - name: depOnboardingSetting-id @@ -2415,6 +2465,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Delete navigation property enrollmentProfiles for deviceManagement + description: The enrollment profiles. operationId: deviceManagement.depOnboardingSettings_DeleteEnrollmentProfiles parameters: - name: depOnboardingSetting-id @@ -2447,6 +2498,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get importedAppleDeviceIdentities from deviceManagement + description: The imported Apple device identities. operationId: deviceManagement.depOnboardingSettings_ListImportedAppleDeviceIdentities parameters: - name: depOnboardingSetting-id @@ -2558,6 +2610,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Create new navigation property to importedAppleDeviceIdentities for deviceManagement + description: The imported Apple device identities. operationId: deviceManagement.depOnboardingSettings_CreateImportedAppleDeviceIdentities parameters: - name: depOnboardingSetting-id @@ -2589,6 +2642,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get importedAppleDeviceIdentities from deviceManagement + description: The imported Apple device identities. operationId: deviceManagement.depOnboardingSettings_GetImportedAppleDeviceIdentities parameters: - name: depOnboardingSetting-id @@ -2654,6 +2708,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Update the navigation property importedAppleDeviceIdentities in deviceManagement + description: The imported Apple device identities. operationId: deviceManagement.depOnboardingSettings_UpdateImportedAppleDeviceIdentities parameters: - name: depOnboardingSetting-id @@ -2687,6 +2742,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Delete navigation property importedAppleDeviceIdentities for deviceManagement + description: The imported Apple device identities. operationId: deviceManagement.depOnboardingSettings_DeleteImportedAppleDeviceIdentities parameters: - name: depOnboardingSetting-id @@ -2719,6 +2775,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get deviceEnrollmentConfigurations from deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_ListDeviceEnrollmentConfigurations parameters: - $ref: '#/components/parameters/top' @@ -2813,6 +2870,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Create new navigation property to deviceEnrollmentConfigurations for deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_CreateDeviceEnrollmentConfigurations requestBody: description: New navigation property @@ -2836,6 +2894,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get deviceEnrollmentConfigurations from deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_GetDeviceEnrollmentConfigurations parameters: - name: deviceEnrollmentConfiguration-id @@ -2897,6 +2956,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Update the navigation property deviceEnrollmentConfigurations in deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_UpdateDeviceEnrollmentConfigurations parameters: - name: deviceEnrollmentConfiguration-id @@ -2923,6 +2983,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Delete navigation property deviceEnrollmentConfigurations for deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_DeleteDeviceEnrollmentConfigurations parameters: - name: deviceEnrollmentConfiguration-id @@ -2948,6 +3009,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get assignments from deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_ListAssignments parameters: - name: deviceEnrollmentConfiguration-id @@ -3035,6 +3097,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Create new navigation property to assignments for deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_CreateAssignments parameters: - name: deviceEnrollmentConfiguration-id @@ -3066,6 +3129,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get assignments from deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_GetAssignments parameters: - name: deviceEnrollmentConfiguration-id @@ -3123,6 +3187,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Update the navigation property assignments in deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_UpdateAssignments parameters: - name: deviceEnrollmentConfiguration-id @@ -3156,6 +3221,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Delete navigation property assignments for deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_DeleteAssignments parameters: - name: deviceEnrollmentConfiguration-id @@ -3188,6 +3254,7 @@ paths: tags: - deviceManagement.importedDeviceIdentity summary: Get importedDeviceIdentities from deviceManagement + description: The imported device identities. operationId: deviceManagement_ListImportedDeviceIdentities parameters: - $ref: '#/components/parameters/top' @@ -3283,6 +3350,7 @@ paths: tags: - deviceManagement.importedDeviceIdentity summary: Create new navigation property to importedDeviceIdentities for deviceManagement + description: The imported device identities. operationId: deviceManagement_CreateImportedDeviceIdentities requestBody: description: New navigation property @@ -3306,6 +3374,7 @@ paths: tags: - deviceManagement.importedDeviceIdentity summary: Get importedDeviceIdentities from deviceManagement + description: The imported device identities. operationId: deviceManagement_GetImportedDeviceIdentities parameters: - name: importedDeviceIdentity-id @@ -3361,6 +3430,7 @@ paths: tags: - deviceManagement.importedDeviceIdentity summary: Update the navigation property importedDeviceIdentities in deviceManagement + description: The imported device identities. operationId: deviceManagement_UpdateImportedDeviceIdentities parameters: - name: importedDeviceIdentity-id @@ -3387,6 +3457,7 @@ paths: tags: - deviceManagement.importedDeviceIdentity summary: Delete navigation property importedDeviceIdentities for deviceManagement + description: The imported device identities. operationId: deviceManagement_DeleteImportedDeviceIdentities parameters: - name: importedDeviceIdentity-id @@ -3412,6 +3483,7 @@ paths: tags: - deviceManagement.importedWindowsAutopilotDeviceIdentity summary: Get importedWindowsAutopilotDeviceIdentities from deviceManagement + description: Collection of imported Windows autopilot devices. operationId: deviceManagement_ListImportedWindowsAutopilotDeviceIdentities parameters: - $ref: '#/components/parameters/top' @@ -3504,6 +3576,7 @@ paths: tags: - deviceManagement.importedWindowsAutopilotDeviceIdentity summary: Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement + description: Collection of imported Windows autopilot devices. operationId: deviceManagement_CreateImportedWindowsAutopilotDeviceIdentities requestBody: description: New navigation property @@ -3527,6 +3600,7 @@ paths: tags: - deviceManagement.importedWindowsAutopilotDeviceIdentity summary: Get importedWindowsAutopilotDeviceIdentities from deviceManagement + description: Collection of imported Windows autopilot devices. operationId: deviceManagement_GetImportedWindowsAutopilotDeviceIdentities parameters: - name: importedWindowsAutopilotDeviceIdentity-id @@ -3581,6 +3655,7 @@ paths: tags: - deviceManagement.importedWindowsAutopilotDeviceIdentity summary: Update the navigation property importedWindowsAutopilotDeviceIdentities in deviceManagement + description: Collection of imported Windows autopilot devices. operationId: deviceManagement_UpdateImportedWindowsAutopilotDeviceIdentities parameters: - name: importedWindowsAutopilotDeviceIdentity-id @@ -3607,6 +3682,7 @@ paths: tags: - deviceManagement.importedWindowsAutopilotDeviceIdentity summary: Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement + description: Collection of imported Windows autopilot devices. operationId: deviceManagement_DeleteImportedWindowsAutopilotDeviceIdentities parameters: - name: importedWindowsAutopilotDeviceIdentity-id @@ -3632,6 +3708,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_ListUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - $ref: '#/components/parameters/top' @@ -3730,6 +3807,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Create new navigation property to userExperienceAnalyticsNotAutopilotReadyDevice for deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_CreateUserExperienceAnalyticsNotAutopilotReadyDevice requestBody: description: New navigation property @@ -3753,6 +3831,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_GetUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - name: userExperienceAnalyticsNotAutopilotReadyDevice-id @@ -3809,6 +3888,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Update the navigation property userExperienceAnalyticsNotAutopilotReadyDevice in deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_UpdateUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - name: userExperienceAnalyticsNotAutopilotReadyDevice-id @@ -3835,6 +3915,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Delete navigation property userExperienceAnalyticsNotAutopilotReadyDevice for deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_DeleteUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - name: userExperienceAnalyticsNotAutopilotReadyDevice-id @@ -3860,6 +3941,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get windowsAutopilotDeploymentProfiles from deviceManagement + description: Windows auto pilot deployment profiles operationId: deviceManagement_ListWindowsAutopilotDeploymentProfiles parameters: - $ref: '#/components/parameters/top' @@ -3971,6 +4053,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Create new navigation property to windowsAutopilotDeploymentProfiles for deviceManagement + description: Windows auto pilot deployment profiles operationId: deviceManagement_CreateWindowsAutopilotDeploymentProfiles requestBody: description: New navigation property @@ -3994,6 +4077,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get windowsAutopilotDeploymentProfiles from deviceManagement + description: Windows auto pilot deployment profiles operationId: deviceManagement_GetWindowsAutopilotDeploymentProfiles parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4066,6 +4150,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Update the navigation property windowsAutopilotDeploymentProfiles in deviceManagement + description: Windows auto pilot deployment profiles operationId: deviceManagement_UpdateWindowsAutopilotDeploymentProfiles parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4092,6 +4177,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Delete navigation property windowsAutopilotDeploymentProfiles for deviceManagement + description: Windows auto pilot deployment profiles operationId: deviceManagement_DeleteWindowsAutopilotDeploymentProfiles parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4117,6 +4203,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get assignedDevices from deviceManagement + description: The list of assigned devices for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_ListAssignedDevices parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4259,6 +4346,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Create new navigation property to assignedDevices for deviceManagement + description: The list of assigned devices for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_CreateAssignedDevices parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4290,6 +4378,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get assignedDevices from deviceManagement + description: The list of assigned devices for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_GetAssignedDevices parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4379,6 +4468,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Update the navigation property assignedDevices in deviceManagement + description: The list of assigned devices for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_UpdateAssignedDevices parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4412,6 +4502,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Delete navigation property assignedDevices for deviceManagement + description: The list of assigned devices for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_DeleteAssignedDevices parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4444,6 +4535,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get deploymentProfile from deviceManagement + description: Deployment profile currently assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_GetDeploymentProfile parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4526,6 +4618,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get ref of deploymentProfile from deviceManagement + description: Deployment profile currently assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_GetRefDeploymentProfile parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4567,6 +4660,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Update the ref of navigation property deploymentProfile in deviceManagement + description: Deployment profile currently assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_SetRefDeploymentProfile parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4602,6 +4696,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Delete ref of navigation property deploymentProfile for deviceManagement + description: Deployment profile currently assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_DeleteRefDeploymentProfile parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4634,6 +4729,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get intendedDeploymentProfile from deviceManagement + description: Deployment profile intended to be assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_GetIntendedDeploymentProfile parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4716,6 +4812,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get ref of intendedDeploymentProfile from deviceManagement + description: Deployment profile intended to be assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_GetRefIntendedDeploymentProfile parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4757,6 +4854,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Update the ref of navigation property intendedDeploymentProfile in deviceManagement + description: Deployment profile intended to be assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_SetRefIntendedDeploymentProfile parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4792,6 +4890,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Delete ref of navigation property intendedDeploymentProfile for deviceManagement + description: Deployment profile intended to be assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_DeleteRefIntendedDeploymentProfile parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4824,6 +4923,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get assignments from deviceManagement + description: The list of group assignments for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_ListAssignments parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4911,6 +5011,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Create new navigation property to assignments for deviceManagement + description: The list of group assignments for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_CreateAssignments parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4942,6 +5043,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get assignments from deviceManagement + description: The list of group assignments for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_GetAssignments parameters: - name: windowsAutopilotDeploymentProfile-id @@ -4999,6 +5101,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Update the navigation property assignments in deviceManagement + description: The list of group assignments for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_UpdateAssignments parameters: - name: windowsAutopilotDeploymentProfile-id @@ -5032,6 +5135,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Delete navigation property assignments for deviceManagement + description: The list of group assignments for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_DeleteAssignments parameters: - name: windowsAutopilotDeploymentProfile-id @@ -5064,6 +5168,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Get windowsAutopilotDeviceIdentities from deviceManagement + description: The Windows autopilot device identities contained collection. operationId: deviceManagement_ListWindowsAutopilotDeviceIdentities parameters: - $ref: '#/components/parameters/top' @@ -5199,6 +5304,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement + description: The Windows autopilot device identities contained collection. operationId: deviceManagement_CreateWindowsAutopilotDeviceIdentities requestBody: description: New navigation property @@ -5222,6 +5328,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Get windowsAutopilotDeviceIdentities from deviceManagement + description: The Windows autopilot device identities contained collection. operationId: deviceManagement_GetWindowsAutopilotDeviceIdentities parameters: - name: windowsAutopilotDeviceIdentity-id @@ -5302,6 +5409,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Update the navigation property windowsAutopilotDeviceIdentities in deviceManagement + description: The Windows autopilot device identities contained collection. operationId: deviceManagement_UpdateWindowsAutopilotDeviceIdentities parameters: - name: windowsAutopilotDeviceIdentity-id @@ -5328,6 +5436,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement + description: The Windows autopilot device identities contained collection. operationId: deviceManagement_DeleteWindowsAutopilotDeviceIdentities parameters: - name: windowsAutopilotDeviceIdentity-id @@ -5353,6 +5462,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Get deploymentProfile from deviceManagement + description: Deployment profile currently assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_GetDeploymentProfile parameters: - name: windowsAutopilotDeviceIdentity-id @@ -5426,6 +5536,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Get ref of deploymentProfile from deviceManagement + description: Deployment profile currently assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_GetRefDeploymentProfile parameters: - name: windowsAutopilotDeviceIdentity-id @@ -5458,6 +5569,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Update the ref of navigation property deploymentProfile in deviceManagement + description: Deployment profile currently assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_SetRefDeploymentProfile parameters: - name: windowsAutopilotDeviceIdentity-id @@ -5486,6 +5598,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Delete ref of navigation property deploymentProfile for deviceManagement + description: Deployment profile currently assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_DeleteRefDeploymentProfile parameters: - name: windowsAutopilotDeviceIdentity-id @@ -5511,6 +5624,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Get intendedDeploymentProfile from deviceManagement + description: Deployment profile intended to be assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_GetIntendedDeploymentProfile parameters: - name: windowsAutopilotDeviceIdentity-id @@ -5584,6 +5698,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Get ref of intendedDeploymentProfile from deviceManagement + description: Deployment profile intended to be assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_GetRefIntendedDeploymentProfile parameters: - name: windowsAutopilotDeviceIdentity-id @@ -5616,6 +5731,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Update the ref of navigation property intendedDeploymentProfile in deviceManagement + description: Deployment profile intended to be assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_SetRefIntendedDeploymentProfile parameters: - name: windowsAutopilotDeviceIdentity-id @@ -5644,6 +5760,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Delete ref of navigation property intendedDeploymentProfile for deviceManagement + description: Deployment profile intended to be assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_DeleteRefIntendedDeploymentProfile parameters: - name: windowsAutopilotDeviceIdentity-id @@ -5669,6 +5786,7 @@ paths: tags: - deviceManagement.windowsAutopilotSettings summary: Get windowsAutopilotSettings from deviceManagement + description: The Windows autopilot account settings. operationId: deviceManagement_GetWindowsAutopilotSettings parameters: - name: $select @@ -5712,6 +5830,7 @@ paths: tags: - deviceManagement.windowsAutopilotSettings summary: Update the navigation property windowsAutopilotSettings in deviceManagement + description: The Windows autopilot account settings. operationId: deviceManagement_UpdateWindowsAutopilotSettings requestBody: description: New navigation property values @@ -5730,6 +5849,7 @@ paths: tags: - deviceManagement.windowsAutopilotSettings summary: Delete navigation property windowsAutopilotSettings for deviceManagement + description: The Windows autopilot account settings. operationId: deviceManagement_DeleteWindowsAutopilotSettings parameters: - name: If-Match @@ -5748,6 +5868,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Get windowsFeatureUpdateProfiles from deviceManagement + description: A collection of windows feature update profiles operationId: deviceManagement_ListWindowsFeatureUpdateProfiles parameters: - $ref: '#/components/parameters/top' @@ -5775,6 +5896,8 @@ paths: - description desc - displayName - displayName desc + - endOfSupportDate + - endOfSupportDate desc - featureUpdateVersion - featureUpdateVersion desc - lastModifiedDateTime @@ -5797,6 +5920,7 @@ paths: - deployableContentDisplayName - description - displayName + - endOfSupportDate - featureUpdateVersion - lastModifiedDateTime - roleScopeTagIds @@ -5844,6 +5968,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Create new navigation property to windowsFeatureUpdateProfiles for deviceManagement + description: A collection of windows feature update profiles operationId: deviceManagement_CreateWindowsFeatureUpdateProfiles requestBody: description: New navigation property @@ -5867,6 +5992,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Get windowsFeatureUpdateProfiles from deviceManagement + description: A collection of windows feature update profiles operationId: deviceManagement_GetWindowsFeatureUpdateProfiles parameters: - name: windowsFeatureUpdateProfile-id @@ -5891,6 +6017,7 @@ paths: - deployableContentDisplayName - description - displayName + - endOfSupportDate - featureUpdateVersion - lastModifiedDateTime - roleScopeTagIds @@ -5934,6 +6061,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Update the navigation property windowsFeatureUpdateProfiles in deviceManagement + description: A collection of windows feature update profiles operationId: deviceManagement_UpdateWindowsFeatureUpdateProfiles parameters: - name: windowsFeatureUpdateProfile-id @@ -5960,6 +6088,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Delete navigation property windowsFeatureUpdateProfiles for deviceManagement + description: A collection of windows feature update profiles operationId: deviceManagement_DeleteWindowsFeatureUpdateProfiles parameters: - name: windowsFeatureUpdateProfile-id @@ -5985,6 +6114,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Get assignments from deviceManagement + description: The list of group assignments of the profile. operationId: deviceManagement.windowsFeatureUpdateProfiles_ListAssignments parameters: - name: windowsFeatureUpdateProfile-id @@ -6066,6 +6196,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Create new navigation property to assignments for deviceManagement + description: The list of group assignments of the profile. operationId: deviceManagement.windowsFeatureUpdateProfiles_CreateAssignments parameters: - name: windowsFeatureUpdateProfile-id @@ -6097,6 +6228,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Get assignments from deviceManagement + description: The list of group assignments of the profile. operationId: deviceManagement.windowsFeatureUpdateProfiles_GetAssignments parameters: - name: windowsFeatureUpdateProfile-id @@ -6152,6 +6284,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Update the navigation property assignments in deviceManagement + description: The list of group assignments of the profile. operationId: deviceManagement.windowsFeatureUpdateProfiles_UpdateAssignments parameters: - name: windowsFeatureUpdateProfile-id @@ -6185,6 +6318,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Delete navigation property assignments for deviceManagement + description: The list of group assignments of the profile. operationId: deviceManagement.windowsFeatureUpdateProfiles_DeleteAssignments parameters: - name: windowsFeatureUpdateProfile-id @@ -6217,6 +6351,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Get deviceUpdateStates from deviceManagement + description: The list of device states this profile targeted to operationId: deviceManagement.windowsFeatureUpdateProfiles_ListDeviceUpdateStates parameters: - name: windowsFeatureUpdateProfile-id @@ -6322,6 +6457,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Create new navigation property to deviceUpdateStates for deviceManagement + description: The list of device states this profile targeted to operationId: deviceManagement.windowsFeatureUpdateProfiles_CreateDeviceUpdateStates parameters: - name: windowsFeatureUpdateProfile-id @@ -6353,6 +6489,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Get deviceUpdateStates from deviceManagement + description: The list of device states this profile targeted to operationId: deviceManagement.windowsFeatureUpdateProfiles_GetDeviceUpdateStates parameters: - name: windowsFeatureUpdateProfile-id @@ -6416,6 +6553,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Update the navigation property deviceUpdateStates in deviceManagement + description: The list of device states this profile targeted to operationId: deviceManagement.windowsFeatureUpdateProfiles_UpdateDeviceUpdateStates parameters: - name: windowsFeatureUpdateProfile-id @@ -6449,6 +6587,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Delete navigation property deviceUpdateStates for deviceManagement + description: The list of device states this profile targeted to operationId: deviceManagement.windowsFeatureUpdateProfiles_DeleteDeviceUpdateStates parameters: - name: windowsFeatureUpdateProfile-id @@ -6494,6 +6633,7 @@ paths: items: enum: - directory + - cloudPC - entitlementManagement - deviceManagement type: string @@ -6509,6 +6649,7 @@ paths: enum: - '*' - directory + - cloudPC - entitlementManagement - deviceManagement type: string @@ -6522,6 +6663,8 @@ paths: links: directory: operationId: roleManagement.GetDirectory + cloudPC: + operationId: roleManagement.GetCloudPC entitlementManagement: operationId: roleManagement.GetEntitlementManagement deviceManagement: @@ -6547,12 +6690,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /roleManagement/deviceManagement: + /roleManagement/cloudPC: get: tags: - roleManagement.rbacApplicationMultiple - summary: Get deviceManagement from roleManagement - operationId: roleManagement_GetDeviceManagement + summary: Get cloudPC from roleManagement + operationId: roleManagement_GetCloudPC parameters: - name: $select in: query @@ -6593,19 +6736,19 @@ paths: $ref: '#/components/schemas/microsoft.graph.rbacApplicationMultiple' links: resourceNamespaces: - operationId: roleManagement.DeviceManagement.ListResourceNamespaces + operationId: roleManagement.CloudPC.ListResourceNamespaces roleAssignments: - operationId: roleManagement.DeviceManagement.ListRoleAssignments + operationId: roleManagement.CloudPC.ListRoleAssignments roleDefinitions: - operationId: roleManagement.DeviceManagement.ListRoleDefinitions + operationId: roleManagement.CloudPC.ListRoleDefinitions default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - roleManagement.rbacApplicationMultiple - summary: Update the navigation property deviceManagement in roleManagement - operationId: roleManagement_UpdateDeviceManagement + summary: Update the navigation property cloudPC in roleManagement + operationId: roleManagement_UpdateCloudPC requestBody: description: New navigation property values content: @@ -6622,8 +6765,8 @@ paths: delete: tags: - roleManagement.rbacApplicationMultiple - summary: Delete navigation property deviceManagement for roleManagement - operationId: roleManagement_DeleteDeviceManagement + summary: Delete navigation property cloudPC for roleManagement + operationId: roleManagement_DeleteCloudPC parameters: - name: If-Match in: header @@ -6636,12 +6779,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /roleManagement/deviceManagement/resourceNamespaces: + /roleManagement/cloudPC/resourceNamespaces: get: tags: - roleManagement.rbacApplicationMultiple summary: Get resourceNamespaces from roleManagement - operationId: roleManagement.deviceManagement_ListResourceNamespaces + operationId: roleManagement.cloudPC_ListResourceNamespaces parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -6717,7 +6860,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Create new navigation property to resourceNamespaces for roleManagement - operationId: roleManagement.deviceManagement_CreateResourceNamespaces + operationId: roleManagement.cloudPC_CreateResourceNamespaces requestBody: description: New navigation property content: @@ -6735,12 +6878,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}': + '/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}': get: tags: - roleManagement.rbacApplicationMultiple summary: Get resourceNamespaces from roleManagement - operationId: roleManagement.deviceManagement_GetResourceNamespaces + operationId: roleManagement.cloudPC_GetResourceNamespaces parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -6785,7 +6928,7 @@ paths: $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace' links: resourceActions: - operationId: roleManagement.deviceManagement.ResourceNamespaces.ListResourceActions + operationId: roleManagement.cloudPC.ResourceNamespaces.ListResourceActions parameters: unifiedRbacResourceNamespace-id: $request.path.unifiedRbacResourceNamespace-id default: @@ -6795,7 +6938,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Update the navigation property resourceNamespaces in roleManagement - operationId: roleManagement.deviceManagement_UpdateResourceNamespaces + operationId: roleManagement.cloudPC_UpdateResourceNamespaces parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -6821,7 +6964,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Delete navigation property resourceNamespaces for roleManagement - operationId: roleManagement.deviceManagement_DeleteResourceNamespaces + operationId: roleManagement.cloudPC_DeleteResourceNamespaces parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -6841,12 +6984,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions': + '/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions': post: tags: - roleManagement.Actions summary: Invoke action importResourceActions - operationId: roleManagement.deviceManagement.resourceNamespaces_importResourceActions + operationId: roleManagement.cloudPC.resourceNamespaces_importResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -6882,12 +7025,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions': + '/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions': get: tags: - roleManagement.rbacApplicationMultiple summary: Get resourceActions from roleManagement - operationId: roleManagement.deviceManagement.resourceNamespaces_ListResourceActions + operationId: roleManagement.cloudPC.resourceNamespaces_ListResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -6979,7 +7122,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Create new navigation property to resourceActions for roleManagement - operationId: roleManagement.deviceManagement.resourceNamespaces_CreateResourceActions + operationId: roleManagement.cloudPC.resourceNamespaces_CreateResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -7005,12 +7148,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}': + '/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}': get: tags: - roleManagement.rbacApplicationMultiple summary: Get resourceActions from roleManagement - operationId: roleManagement.deviceManagement.resourceNamespaces_GetResourceActions + operationId: roleManagement.cloudPC.resourceNamespaces_GetResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -7065,7 +7208,7 @@ paths: $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction' links: resourceScope: - operationId: roleManagement.deviceManagement.resourceNamespaces.ResourceActions.GetResourceScope + operationId: roleManagement.cloudPC.resourceNamespaces.ResourceActions.GetResourceScope parameters: unifiedRbacResourceNamespace-id: $request.path.unifiedRbacResourceNamespace-id unifiedRbacResourceAction-id: $request.path.unifiedRbacResourceAction-id @@ -7076,7 +7219,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Update the navigation property resourceActions in roleManagement - operationId: roleManagement.deviceManagement.resourceNamespaces_UpdateResourceActions + operationId: roleManagement.cloudPC.resourceNamespaces_UpdateResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -7109,7 +7252,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Delete navigation property resourceActions for roleManagement - operationId: roleManagement.deviceManagement.resourceNamespaces_DeleteResourceActions + operationId: roleManagement.cloudPC.resourceNamespaces_DeleteResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -7136,12 +7279,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope': + '/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope': get: tags: - roleManagement.rbacApplicationMultiple summary: Get resourceScope from roleManagement - operationId: roleManagement.deviceManagement.resourceNamespaces.resourceActions_GetResourceScope + operationId: roleManagement.cloudPC.resourceNamespaces.resourceActions_GetResourceScope parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -7198,7 +7341,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Update the navigation property resourceScope in roleManagement - operationId: roleManagement.deviceManagement.resourceNamespaces.resourceActions_UpdateResourceScope + operationId: roleManagement.cloudPC.resourceNamespaces.resourceActions_UpdateResourceScope parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -7231,7 +7374,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Delete navigation property resourceScope for roleManagement - operationId: roleManagement.deviceManagement.resourceNamespaces.resourceActions_DeleteResourceScope + operationId: roleManagement.cloudPC.resourceNamespaces.resourceActions_DeleteResourceScope parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -7258,12 +7401,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /roleManagement/deviceManagement/roleAssignments: + /roleManagement/cloudPC/roleAssignments: get: tags: - roleManagement.rbacApplicationMultiple summary: Get roleAssignments from roleManagement - operationId: roleManagement.deviceManagement_ListRoleAssignments + operationId: roleManagement.cloudPC_ListRoleAssignments parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -7363,7 +7506,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Create new navigation property to roleAssignments for roleManagement - operationId: roleManagement.deviceManagement_CreateRoleAssignments + operationId: roleManagement.cloudPC_CreateRoleAssignments requestBody: description: New navigation property content: @@ -7381,12 +7524,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}': + '/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}': get: tags: - roleManagement.rbacApplicationMultiple summary: Get roleAssignments from roleManagement - operationId: roleManagement.deviceManagement_GetRoleAssignments + operationId: roleManagement.cloudPC_GetRoleAssignments parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -7443,19 +7586,19 @@ paths: $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentMultiple' links: appScopes: - operationId: roleManagement.deviceManagement.RoleAssignments.ListAppScopes + operationId: roleManagement.cloudPC.RoleAssignments.ListAppScopes parameters: unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id directoryScopes: - operationId: roleManagement.deviceManagement.RoleAssignments.ListDirectoryScopes + operationId: roleManagement.cloudPC.RoleAssignments.ListDirectoryScopes parameters: unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id principals: - operationId: roleManagement.deviceManagement.RoleAssignments.ListPrincipals + operationId: roleManagement.cloudPC.RoleAssignments.ListPrincipals parameters: unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id roleDefinition: - operationId: roleManagement.deviceManagement.RoleAssignments.GetRoleDefinition + operationId: roleManagement.cloudPC.RoleAssignments.GetRoleDefinition parameters: unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id default: @@ -7465,7 +7608,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Update the navigation property roleAssignments in roleManagement - operationId: roleManagement.deviceManagement_UpdateRoleAssignments + operationId: roleManagement.cloudPC_UpdateRoleAssignments parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -7491,7 +7634,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Delete navigation property roleAssignments for roleManagement - operationId: roleManagement.deviceManagement_DeleteRoleAssignments + operationId: roleManagement.cloudPC_DeleteRoleAssignments parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -7511,12 +7654,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes': + '/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes': get: tags: - roleManagement.rbacApplicationMultiple summary: Get appScopes from roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_ListAppScopes + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. + operationId: roleManagement.cloudPC.roleAssignments_ListAppScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -7600,7 +7744,8 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Create new navigation property to appScopes for roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_CreateAppScopes + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. + operationId: roleManagement.cloudPC.roleAssignments_CreateAppScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -7626,12 +7771,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}': + '/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}': get: tags: - roleManagement.rbacApplicationMultiple summary: Get appScopes from roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_GetAppScopes + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. + operationId: roleManagement.cloudPC.roleAssignments_GetAppScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -7687,7 +7833,8 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Update the navigation property appScopes in roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_UpdateAppScopes + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. + operationId: roleManagement.cloudPC.roleAssignments_UpdateAppScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -7720,7 +7867,8 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Delete navigation property appScopes for roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_DeleteAppScopes + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. + operationId: roleManagement.cloudPC.roleAssignments_DeleteAppScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -7747,12 +7895,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes': + '/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes': get: tags: - roleManagement.rbacApplicationMultiple summary: Get directoryScopes from roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_ListDirectoryScopes + description: Read-only collection referencing the directory objects that are scope of the assignment. Provided so that callers can get the directory objects using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.cloudPC.roleAssignments_ListDirectoryScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -7829,12 +7978,13 @@ paths: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$ref': + '/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$ref': get: tags: - roleManagement.rbacApplicationMultiple summary: Get ref of directoryScopes from roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_ListRefDirectoryScopes + description: Read-only collection referencing the directory objects that are scope of the assignment. Provided so that callers can get the directory objects using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.cloudPC.roleAssignments_ListRefDirectoryScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -7890,7 +8040,8 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Create new navigation property ref to directoryScopes for roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_CreateRefDirectoryScopes + description: Read-only collection referencing the directory objects that are scope of the assignment. Provided so that callers can get the directory objects using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.cloudPC.roleAssignments_CreateRefDirectoryScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -7920,12 +8071,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals': + '/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals': get: tags: - roleManagement.rbacApplicationMultiple summary: Get principals from roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_ListPrincipals + description: Read-only collection referencing the assigned principals. Provided so that callers can get the principals using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.cloudPC.roleAssignments_ListPrincipals parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -8002,12 +8154,13 @@ paths: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$ref': + '/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$ref': get: tags: - roleManagement.rbacApplicationMultiple summary: Get ref of principals from roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_ListRefPrincipals + description: Read-only collection referencing the assigned principals. Provided so that callers can get the principals using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.cloudPC.roleAssignments_ListRefPrincipals parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -8063,7 +8216,8 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Create new navigation property ref to principals for roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_CreateRefPrincipals + description: Read-only collection referencing the assigned principals. Provided so that callers can get the principals using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.cloudPC.roleAssignments_CreateRefPrincipals parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -8093,12 +8247,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition': + '/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition': get: tags: - roleManagement.rbacApplicationMultiple summary: Get roleDefinition from roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_GetRoleDefinition + description: 'Specifies the roleDefinition that the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. Supports $filter (eq operator on id, isBuiltIn, and displayName, and startsWith operator on displayName) and $expand.' + operationId: roleManagement.cloudPC.roleAssignments_GetRoleDefinition parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -8150,18 +8305,19 @@ paths: $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' links: inheritsPermissionsFrom: - operationId: roleManagement.deviceManagement.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom + operationId: roleManagement.cloudPC.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom parameters: unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref': + '/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref': get: tags: - roleManagement.rbacApplicationMultiple summary: Get ref of roleDefinition from roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_GetRefRoleDefinition + description: 'Specifies the roleDefinition that the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. Supports $filter (eq operator on id, isBuiltIn, and displayName, and startsWith operator on displayName) and $expand.' + operationId: roleManagement.cloudPC.roleAssignments_GetRefRoleDefinition parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -8179,7 +8335,7 @@ paths: type: string links: inheritsPermissionsFrom: - operationId: roleManagement.deviceManagement.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom + operationId: roleManagement.cloudPC.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom parameters: unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id default: @@ -8189,7 +8345,8 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Update the ref of navigation property roleDefinition in roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_SetRefRoleDefinition + description: 'Specifies the roleDefinition that the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. Supports $filter (eq operator on id, isBuiltIn, and displayName, and startsWith operator on displayName) and $expand.' + operationId: roleManagement.cloudPC.roleAssignments_SetRefRoleDefinition parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -8217,7 +8374,8 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Delete ref of navigation property roleDefinition for roleManagement - operationId: roleManagement.deviceManagement.roleAssignments_DeleteRefRoleDefinition + description: 'Specifies the roleDefinition that the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. Supports $filter (eq operator on id, isBuiltIn, and displayName, and startsWith operator on displayName) and $expand.' + operationId: roleManagement.cloudPC.roleAssignments_DeleteRefRoleDefinition parameters: - name: unifiedRoleAssignmentMultiple-id in: path @@ -8237,12 +8395,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /roleManagement/deviceManagement/roleDefinitions: + /roleManagement/cloudPC/roleDefinitions: get: tags: - roleManagement.rbacApplicationMultiple summary: Get roleDefinitions from roleManagement - operationId: roleManagement.deviceManagement_ListRoleDefinitions + operationId: roleManagement.cloudPC_ListRoleDefinitions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -8339,7 +8497,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Create new navigation property to roleDefinitions for roleManagement - operationId: roleManagement.deviceManagement_CreateRoleDefinitions + operationId: roleManagement.cloudPC_CreateRoleDefinitions requestBody: description: New navigation property content: @@ -8357,12 +8515,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}': + '/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}': get: tags: - roleManagement.rbacApplicationMultiple summary: Get roleDefinitions from roleManagement - operationId: roleManagement.deviceManagement_GetRoleDefinitions + operationId: roleManagement.cloudPC_GetRoleDefinitions parameters: - name: unifiedRoleDefinition-id in: path @@ -8414,7 +8572,7 @@ paths: $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' links: inheritsPermissionsFrom: - operationId: roleManagement.deviceManagement.RoleDefinitions.ListInheritsPermissionsFrom + operationId: roleManagement.cloudPC.RoleDefinitions.ListInheritsPermissionsFrom parameters: unifiedRoleDefinition-id: $request.path.unifiedRoleDefinition-id default: @@ -8424,7 +8582,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Update the navigation property roleDefinitions in roleManagement - operationId: roleManagement.deviceManagement_UpdateRoleDefinitions + operationId: roleManagement.cloudPC_UpdateRoleDefinitions parameters: - name: unifiedRoleDefinition-id in: path @@ -8450,7 +8608,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Delete navigation property roleDefinitions for roleManagement - operationId: roleManagement.deviceManagement_DeleteRoleDefinitions + operationId: roleManagement.cloudPC_DeleteRoleDefinitions parameters: - name: unifiedRoleDefinition-id in: path @@ -8470,12 +8628,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom': + '/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom': get: tags: - roleManagement.rbacApplicationMultiple summary: Get inheritsPermissionsFrom from roleManagement - operationId: roleManagement.deviceManagement.roleDefinitions_ListInheritsPermissionsFrom + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.cloudPC.roleDefinitions_ListInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path @@ -8579,7 +8738,8 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Create new navigation property to inheritsPermissionsFrom for roleManagement - operationId: roleManagement.deviceManagement.roleDefinitions_CreateInheritsPermissionsFrom + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.cloudPC.roleDefinitions_CreateInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path @@ -8605,12 +8765,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}': + '/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}': get: tags: - roleManagement.rbacApplicationMultiple summary: Get inheritsPermissionsFrom from roleManagement - operationId: roleManagement.deviceManagement.roleDefinitions_GetInheritsPermissionsFrom + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.cloudPC.roleDefinitions_GetInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path @@ -8669,7 +8830,7 @@ paths: $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' links: inheritsPermissionsFrom: - operationId: roleManagement.deviceManagement.roleDefinitions.InheritsPermissionsFrom.ListInheritsPermissionsFrom + operationId: roleManagement.cloudPC.roleDefinitions.InheritsPermissionsFrom.ListInheritsPermissionsFrom parameters: unifiedRoleDefinition-id: $request.path.unifiedRoleDefinition-id unifiedRoleDefinition-id1: $request.path.unifiedRoleDefinition-id1 @@ -8680,7 +8841,8 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Update the navigation property inheritsPermissionsFrom in roleManagement - operationId: roleManagement.deviceManagement.roleDefinitions_UpdateInheritsPermissionsFrom + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.cloudPC.roleDefinitions_UpdateInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path @@ -8713,7 +8875,8 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Delete navigation property inheritsPermissionsFrom for roleManagement - operationId: roleManagement.deviceManagement.roleDefinitions_DeleteInheritsPermissionsFrom + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.cloudPC.roleDefinitions_DeleteInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path @@ -8740,12 +8903,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /roleManagement/directory: + /roleManagement/deviceManagement: get: tags: - - roleManagement.rbacApplication - summary: Get directory from roleManagement - operationId: roleManagement_GetDirectory + - roleManagement.rbacApplicationMultiple + summary: Get deviceManagement from roleManagement + description: The RbacApplication for Device Management + operationId: roleManagement_GetDeviceManagement parameters: - name: $select in: query @@ -8761,13 +8925,6 @@ paths: - resourceNamespaces - roleAssignments - roleDefinitions - - roleAssignmentApprovals - - roleAssignmentRequests - - roleAssignmentScheduleInstances - - roleAssignmentSchedules - - roleEligibilityRequests - - roleEligibilityScheduleInstances - - roleEligibilitySchedules type: string - name: $expand in: query @@ -8783,13 +8940,6 @@ paths: - resourceNamespaces - roleAssignments - roleDefinitions - - roleAssignmentApprovals - - roleAssignmentRequests - - roleAssignmentScheduleInstances - - roleAssignmentSchedules - - roleEligibilityRequests - - roleEligibilityScheduleInstances - - roleEligibilitySchedules type: string responses: '200': @@ -8797,42 +8947,29 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.rbacApplication' + $ref: '#/components/schemas/microsoft.graph.rbacApplicationMultiple' links: resourceNamespaces: - operationId: roleManagement.Directory.ListResourceNamespaces + operationId: roleManagement.DeviceManagement.ListResourceNamespaces roleAssignments: - operationId: roleManagement.Directory.ListRoleAssignments + operationId: roleManagement.DeviceManagement.ListRoleAssignments roleDefinitions: - operationId: roleManagement.Directory.ListRoleDefinitions - roleAssignmentApprovals: - operationId: roleManagement.Directory.ListRoleAssignmentApprovals - roleAssignmentRequests: - operationId: roleManagement.Directory.ListRoleAssignmentRequests - roleAssignmentScheduleInstances: - operationId: roleManagement.Directory.ListRoleAssignmentScheduleInstances - roleAssignmentSchedules: - operationId: roleManagement.Directory.ListRoleAssignmentSchedules - roleEligibilityRequests: - operationId: roleManagement.Directory.ListRoleEligibilityRequests - roleEligibilityScheduleInstances: - operationId: roleManagement.Directory.ListRoleEligibilityScheduleInstances - roleEligibilitySchedules: - operationId: roleManagement.Directory.ListRoleEligibilitySchedules + operationId: roleManagement.DeviceManagement.ListRoleDefinitions default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - roleManagement.rbacApplication - summary: Update the navigation property directory in roleManagement - operationId: roleManagement_UpdateDirectory + - roleManagement.rbacApplicationMultiple + summary: Update the navigation property deviceManagement in roleManagement + description: The RbacApplication for Device Management + operationId: roleManagement_UpdateDeviceManagement requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.rbacApplication' + $ref: '#/components/schemas/microsoft.graph.rbacApplicationMultiple' required: true responses: '204': @@ -8842,9 +8979,10 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - roleManagement.rbacApplication - summary: Delete navigation property directory for roleManagement - operationId: roleManagement_DeleteDirectory + - roleManagement.rbacApplicationMultiple + summary: Delete navigation property deviceManagement for roleManagement + description: The RbacApplication for Device Management + operationId: roleManagement_DeleteDeviceManagement parameters: - name: If-Match in: header @@ -8857,106 +8995,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/microsoft.graph.roleScheduleInstances(directoryScopeId=''{directoryScopeId}'',appScopeId=''{appScopeId}'',principalId=''{principalId}'',roleDefinitionId=''{roleDefinitionId}'')': - get: - tags: - - roleManagement.Functions - summary: Invoke function roleScheduleInstances - operationId: roleManagement.directory_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/directory/microsoft.graph.roleSchedules(directoryScopeId=''{directoryScopeId}'',appScopeId=''{appScopeId}'',principalId=''{principalId}'',roleDefinitionId=''{roleDefinitionId}'')': - get: - tags: - - roleManagement.Functions - summary: Invoke function roleSchedules - operationId: roleManagement.directory_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/directory/resourceNamespaces: + /roleManagement/deviceManagement/resourceNamespaces: get: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Get resourceNamespaces from roleManagement - operationId: roleManagement.directory_ListResourceNamespaces + operationId: roleManagement.deviceManagement_ListResourceNamespaces parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -9030,9 +9074,9 @@ paths: x-ms-docs-operation-type: operation post: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Create new navigation property to resourceNamespaces for roleManagement - operationId: roleManagement.directory_CreateResourceNamespaces + operationId: roleManagement.deviceManagement_CreateResourceNamespaces requestBody: description: New navigation property content: @@ -9050,12 +9094,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}': + '/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}': get: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Get resourceNamespaces from roleManagement - operationId: roleManagement.directory_GetResourceNamespaces + operationId: roleManagement.deviceManagement_GetResourceNamespaces parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9100,7 +9144,7 @@ paths: $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace' links: resourceActions: - operationId: roleManagement.directory.ResourceNamespaces.ListResourceActions + operationId: roleManagement.deviceManagement.ResourceNamespaces.ListResourceActions parameters: unifiedRbacResourceNamespace-id: $request.path.unifiedRbacResourceNamespace-id default: @@ -9108,9 +9152,9 @@ paths: x-ms-docs-operation-type: operation patch: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Update the navigation property resourceNamespaces in roleManagement - operationId: roleManagement.directory_UpdateResourceNamespaces + operationId: roleManagement.deviceManagement_UpdateResourceNamespaces parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9134,9 +9178,9 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Delete navigation property resourceNamespaces for roleManagement - operationId: roleManagement.directory_DeleteResourceNamespaces + operationId: roleManagement.deviceManagement_DeleteResourceNamespaces parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9156,12 +9200,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions': + '/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions': post: tags: - roleManagement.Actions summary: Invoke action importResourceActions - operationId: roleManagement.directory.resourceNamespaces_importResourceActions + operationId: roleManagement.deviceManagement.resourceNamespaces_importResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9197,12 +9241,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions': + '/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions': get: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Get resourceActions from roleManagement - operationId: roleManagement.directory.resourceNamespaces_ListResourceActions + operationId: roleManagement.deviceManagement.resourceNamespaces_ListResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9292,9 +9336,9 @@ paths: x-ms-docs-operation-type: operation post: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Create new navigation property to resourceActions for roleManagement - operationId: roleManagement.directory.resourceNamespaces_CreateResourceActions + operationId: roleManagement.deviceManagement.resourceNamespaces_CreateResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9320,12 +9364,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}': + '/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}': get: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Get resourceActions from roleManagement - operationId: roleManagement.directory.resourceNamespaces_GetResourceActions + operationId: roleManagement.deviceManagement.resourceNamespaces_GetResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9380,7 +9424,7 @@ paths: $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction' links: resourceScope: - operationId: roleManagement.directory.resourceNamespaces.ResourceActions.GetResourceScope + operationId: roleManagement.deviceManagement.resourceNamespaces.ResourceActions.GetResourceScope parameters: unifiedRbacResourceNamespace-id: $request.path.unifiedRbacResourceNamespace-id unifiedRbacResourceAction-id: $request.path.unifiedRbacResourceAction-id @@ -9389,9 +9433,9 @@ paths: x-ms-docs-operation-type: operation patch: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Update the navigation property resourceActions in roleManagement - operationId: roleManagement.directory.resourceNamespaces_UpdateResourceActions + operationId: roleManagement.deviceManagement.resourceNamespaces_UpdateResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9422,9 +9466,9 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Delete navigation property resourceActions for roleManagement - operationId: roleManagement.directory.resourceNamespaces_DeleteResourceActions + operationId: roleManagement.deviceManagement.resourceNamespaces_DeleteResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9451,12 +9495,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope': + '/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope': get: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Get resourceScope from roleManagement - operationId: roleManagement.directory.resourceNamespaces.resourceActions_GetResourceScope + operationId: roleManagement.deviceManagement.resourceNamespaces.resourceActions_GetResourceScope parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9511,9 +9555,9 @@ paths: x-ms-docs-operation-type: operation patch: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Update the navigation property resourceScope in roleManagement - operationId: roleManagement.directory.resourceNamespaces.resourceActions_UpdateResourceScope + operationId: roleManagement.deviceManagement.resourceNamespaces.resourceActions_UpdateResourceScope parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9544,9 +9588,9 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - roleManagement.rbacApplication + - roleManagement.rbacApplicationMultiple summary: Delete navigation property resourceScope for roleManagement - operationId: roleManagement.directory.resourceNamespaces.resourceActions_DeleteResourceScope + operationId: roleManagement.deviceManagement.resourceNamespaces.resourceActions_DeleteResourceScope parameters: - name: unifiedRbacResourceNamespace-id in: path @@ -9573,12 +9617,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /roleManagement/directory/roleAssignmentApprovals: + /roleManagement/deviceManagement/roleAssignments: get: tags: - - roleManagement.rbacApplication - summary: Get roleAssignmentApprovals from roleManagement - operationId: roleManagement.directory_ListRoleAssignmentApprovals + - roleManagement.rbacApplicationMultiple + summary: Get roleAssignments from roleManagement + operationId: roleManagement.deviceManagement_ListRoleAssignments parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -9597,6 +9641,20 @@ paths: enum: - id - id desc + - appScopeIds + - appScopeIds desc + - condition + - condition desc + - description + - description desc + - directoryScopeIds + - directoryScopeIds desc + - displayName + - displayName desc + - principalIds + - principalIds desc + - roleDefinitionId + - roleDefinitionId desc type: string - name: $select in: query @@ -9609,7 +9667,17 @@ paths: items: enum: - id - - steps + - appScopeIds + - condition + - description + - directoryScopeIds + - displayName + - principalIds + - roleDefinitionId + - appScopes + - directoryScopes + - principals + - roleDefinition type: string - name: $expand in: query @@ -9622,7 +9690,10 @@ paths: items: enum: - '*' - - steps + - appScopes + - directoryScopes + - principals + - roleDefinition type: string responses: '200': @@ -9630,13 +9701,13 @@ paths: content: application/json: schema: - title: Collection of approval + title: Collection of unifiedRoleAssignmentMultiple type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.approval' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentMultiple' '@odata.nextLink': type: string additionalProperties: @@ -9649,15 +9720,15 @@ paths: x-ms-docs-operation-type: operation post: tags: - - roleManagement.rbacApplication - summary: Create new navigation property to roleAssignmentApprovals for roleManagement - operationId: roleManagement.directory_CreateRoleAssignmentApprovals + - roleManagement.rbacApplicationMultiple + summary: Create new navigation property to roleAssignments for roleManagement + operationId: roleManagement.deviceManagement_CreateRoleAssignments requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.approval' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentMultiple' required: true responses: '201': @@ -9665,24 +9736,24 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.approval' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentMultiple' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentApprovals/{approval-id}': + '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}': get: tags: - - roleManagement.rbacApplication - summary: Get roleAssignmentApprovals from roleManagement - operationId: roleManagement.directory_GetRoleAssignmentApprovals + - roleManagement.rbacApplicationMultiple + summary: Get roleAssignments from roleManagement + operationId: roleManagement.deviceManagement_GetRoleAssignments parameters: - - name: approval-id + - name: unifiedRoleAssignmentMultiple-id in: path - description: 'key: id of approval' + description: 'key: id of unifiedRoleAssignmentMultiple' required: true schema: type: string - x-ms-docs-key-type: approval + x-ms-docs-key-type: unifiedRoleAssignmentMultiple - name: $select in: query description: Select properties to be returned @@ -9694,7 +9765,17 @@ paths: items: enum: - id - - steps + - appScopeIds + - condition + - description + - directoryScopeIds + - displayName + - principalIds + - roleDefinitionId + - appScopes + - directoryScopes + - principals + - roleDefinition type: string - name: $expand in: query @@ -9707,7 +9788,10 @@ paths: items: enum: - '*' - - steps + - appScopes + - directoryScopes + - principals + - roleDefinition type: string responses: '200': @@ -9715,34 +9799,46 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.approval' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentMultiple' links: - steps: - operationId: roleManagement.directory.RoleAssignmentApprovals.ListSteps + appScopes: + operationId: roleManagement.deviceManagement.RoleAssignments.ListAppScopes parameters: - approval-id: $request.path.approval-id + unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id + directoryScopes: + operationId: roleManagement.deviceManagement.RoleAssignments.ListDirectoryScopes + parameters: + unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id + principals: + operationId: roleManagement.deviceManagement.RoleAssignments.ListPrincipals + parameters: + unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id + roleDefinition: + operationId: roleManagement.deviceManagement.RoleAssignments.GetRoleDefinition + parameters: + unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - roleManagement.rbacApplication - summary: Update the navigation property roleAssignmentApprovals in roleManagement - operationId: roleManagement.directory_UpdateRoleAssignmentApprovals + - roleManagement.rbacApplicationMultiple + summary: Update the navigation property roleAssignments in roleManagement + operationId: roleManagement.deviceManagement_UpdateRoleAssignments parameters: - - name: approval-id + - name: unifiedRoleAssignmentMultiple-id in: path - description: 'key: id of approval' + description: 'key: id of unifiedRoleAssignmentMultiple' required: true schema: type: string - x-ms-docs-key-type: approval + x-ms-docs-key-type: unifiedRoleAssignmentMultiple requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.approval' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentMultiple' required: true responses: '204': @@ -9752,17 +9848,17 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - roleManagement.rbacApplication - summary: Delete navigation property roleAssignmentApprovals for roleManagement - operationId: roleManagement.directory_DeleteRoleAssignmentApprovals + - roleManagement.rbacApplicationMultiple + summary: Delete navigation property roleAssignments for roleManagement + operationId: roleManagement.deviceManagement_DeleteRoleAssignments parameters: - - name: approval-id + - name: unifiedRoleAssignmentMultiple-id in: path - description: 'key: id of approval' + description: 'key: id of unifiedRoleAssignmentMultiple' required: true schema: type: string - x-ms-docs-key-type: approval + x-ms-docs-key-type: unifiedRoleAssignmentMultiple - name: If-Match in: header description: ETag @@ -9774,20 +9870,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps': + '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes': get: tags: - - roleManagement.rbacApplication - summary: Get steps from roleManagement - operationId: roleManagement.directory.roleAssignmentApprovals_ListSteps + - roleManagement.rbacApplicationMultiple + summary: Get appScopes from roleManagement + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. + operationId: roleManagement.deviceManagement.roleAssignments_ListAppScopes parameters: - - name: approval-id + - name: unifiedRoleAssignmentMultiple-id in: path - description: 'key: id of approval' + description: 'key: id of unifiedRoleAssignmentMultiple' required: true schema: type: string - x-ms-docs-key-type: approval + x-ms-docs-key-type: unifiedRoleAssignmentMultiple - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -9805,20 +9902,10 @@ paths: 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 + - type desc type: string - name: $select in: query @@ -9831,13 +9918,8 @@ paths: items: enum: - id - - assignedToMe - displayName - - justification - - reviewedBy - - reviewedDateTime - - reviewResult - - status + - type type: string - name: $expand in: query @@ -9857,13 +9939,13 @@ paths: content: application/json: schema: - title: Collection of approvalStep + title: Collection of appScope type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.approvalStep' + $ref: '#/components/schemas/microsoft.graph.appScope' '@odata.nextLink': type: string additionalProperties: @@ -9876,23 +9958,24 @@ paths: x-ms-docs-operation-type: operation post: tags: - - roleManagement.rbacApplication - summary: Create new navigation property to steps for roleManagement - operationId: roleManagement.directory.roleAssignmentApprovals_CreateSteps + - roleManagement.rbacApplicationMultiple + summary: Create new navigation property to appScopes for roleManagement + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. + operationId: roleManagement.deviceManagement.roleAssignments_CreateAppScopes parameters: - - name: approval-id + - name: unifiedRoleAssignmentMultiple-id in: path - description: 'key: id of approval' + description: 'key: id of unifiedRoleAssignmentMultiple' required: true schema: type: string - x-ms-docs-key-type: approval + x-ms-docs-key-type: unifiedRoleAssignmentMultiple requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.approvalStep' + $ref: '#/components/schemas/microsoft.graph.appScope' required: true responses: '201': @@ -9900,31 +9983,32 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.approvalStep' + $ref: '#/components/schemas/microsoft.graph.appScope' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}': + '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}': get: tags: - - roleManagement.rbacApplication - summary: Get steps from roleManagement - operationId: roleManagement.directory.roleAssignmentApprovals_GetSteps + - roleManagement.rbacApplicationMultiple + summary: Get appScopes from roleManagement + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. + operationId: roleManagement.deviceManagement.roleAssignments_GetAppScopes parameters: - - name: approval-id + - name: unifiedRoleAssignmentMultiple-id in: path - description: 'key: id of approval' + description: 'key: id of unifiedRoleAssignmentMultiple' required: true schema: type: string - x-ms-docs-key-type: approval - - name: approvalStep-id + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + - name: appScope-id in: path - description: 'key: id of approvalStep' + description: 'key: id of appScope' required: true schema: type: string - x-ms-docs-key-type: approvalStep + x-ms-docs-key-type: appScope - name: $select in: query description: Select properties to be returned @@ -9936,13 +10020,8 @@ paths: items: enum: - id - - assignedToMe - displayName - - justification - - reviewedBy - - reviewedDateTime - - reviewResult - - status + - type type: string - name: $expand in: query @@ -9962,7 +10041,2307 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.approvalStep' + $ref: '#/components/schemas/microsoft.graph.appScope' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - roleManagement.rbacApplicationMultiple + summary: Update the navigation property appScopes in roleManagement + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. + operationId: roleManagement.deviceManagement.roleAssignments_UpdateAppScopes + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + - name: appScope-id + in: path + description: 'key: id of appScope' + required: true + schema: + type: string + x-ms-docs-key-type: appScope + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.appScope' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - roleManagement.rbacApplicationMultiple + summary: Delete navigation property appScopes for roleManagement + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. + operationId: roleManagement.deviceManagement.roleAssignments_DeleteAppScopes + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + - name: appScope-id + in: path + description: 'key: id of appScope' + required: true + schema: + type: string + x-ms-docs-key-type: appScope + - 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/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes': + get: + tags: + - roleManagement.rbacApplicationMultiple + summary: Get directoryScopes from roleManagement + description: Read-only collection referencing the directory objects that are scope of the assignment. Provided so that callers can get the directory objects using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.deviceManagement.roleAssignments_ListDirectoryScopes + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + - $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 + 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 + 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 directoryObject + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + '@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/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$ref': + get: + tags: + - roleManagement.rbacApplicationMultiple + summary: Get ref of directoryScopes from roleManagement + description: Read-only collection referencing the directory objects that are scope of the assignment. Provided so that callers can get the directory objects using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.deviceManagement.roleAssignments_ListRefDirectoryScopes + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + - $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 + type: string + responses: + '200': + description: Retrieved navigation property links + content: + application/json: + schema: + title: Collection of links of directoryObject + 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: + - roleManagement.rbacApplicationMultiple + summary: Create new navigation property ref to directoryScopes for roleManagement + description: Read-only collection referencing the directory objects that are scope of the assignment. Provided so that callers can get the directory objects using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.deviceManagement.roleAssignments_CreateRefDirectoryScopes + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + 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 + '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals': + get: + tags: + - roleManagement.rbacApplicationMultiple + summary: Get principals from roleManagement + description: Read-only collection referencing the assigned principals. Provided so that callers can get the principals using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.deviceManagement.roleAssignments_ListPrincipals + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + - $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 + 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 + 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 directoryObject + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + '@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/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$ref': + get: + tags: + - roleManagement.rbacApplicationMultiple + summary: Get ref of principals from roleManagement + description: Read-only collection referencing the assigned principals. Provided so that callers can get the principals using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.deviceManagement.roleAssignments_ListRefPrincipals + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + - $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 + type: string + responses: + '200': + description: Retrieved navigation property links + content: + application/json: + schema: + title: Collection of links of directoryObject + 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: + - roleManagement.rbacApplicationMultiple + summary: Create new navigation property ref to principals for roleManagement + description: Read-only collection referencing the assigned principals. Provided so that callers can get the principals using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.deviceManagement.roleAssignments_CreateRefPrincipals + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + 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 + '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition': + get: + tags: + - roleManagement.rbacApplicationMultiple + summary: Get roleDefinition from roleManagement + description: 'Specifies the roleDefinition that the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. Supports $filter (eq operator on id, isBuiltIn, and displayName, and startsWith operator on displayName) and $expand.' + operationId: roleManagement.deviceManagement.roleAssignments_GetRoleDefinition + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + - 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.deviceManagement.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom + parameters: + unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref': + get: + tags: + - roleManagement.rbacApplicationMultiple + summary: Get ref of roleDefinition from roleManagement + description: 'Specifies the roleDefinition that the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. Supports $filter (eq operator on id, isBuiltIn, and displayName, and startsWith operator on displayName) and $expand.' + operationId: roleManagement.deviceManagement.roleAssignments_GetRefRoleDefinition + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + responses: + '200': + description: Retrieved navigation property link + content: + application/json: + schema: + type: string + links: + inheritsPermissionsFrom: + operationId: roleManagement.deviceManagement.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom + parameters: + unifiedRoleAssignmentMultiple-id: $request.path.unifiedRoleAssignmentMultiple-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + put: + tags: + - roleManagement.rbacApplicationMultiple + summary: Update the ref of navigation property roleDefinition in roleManagement + description: 'Specifies the roleDefinition that the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. Supports $filter (eq operator on id, isBuiltIn, and displayName, and startsWith operator on displayName) and $expand.' + operationId: roleManagement.deviceManagement.roleAssignments_SetRefRoleDefinition + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + 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.rbacApplicationMultiple + summary: Delete ref of navigation property roleDefinition for roleManagement + description: 'Specifies the roleDefinition that the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. Supports $filter (eq operator on id, isBuiltIn, and displayName, and startsWith operator on displayName) and $expand.' + operationId: roleManagement.deviceManagement.roleAssignments_DeleteRefRoleDefinition + parameters: + - name: unifiedRoleAssignmentMultiple-id + in: path + description: 'key: id of unifiedRoleAssignmentMultiple' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentMultiple + - 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/deviceManagement/roleDefinitions: + get: + tags: + - roleManagement.rbacApplicationMultiple + summary: Get roleDefinitions from roleManagement + operationId: roleManagement.deviceManagement_ListRoleDefinitions + 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 + - isBuiltIn + - isBuiltIn desc + - isEnabled + - isEnabled desc + - resourceScopes + - resourceScopes desc + - rolePermissions + - rolePermissions desc + - templateId + - templateId desc + - version + - version 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 + - 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: + title: Collection of unifiedRoleDefinition + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + '@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.rbacApplicationMultiple + summary: Create new navigation property to roleDefinitions for roleManagement + operationId: roleManagement.deviceManagement_CreateRoleDefinitions + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}': + get: + tags: + - roleManagement.rbacApplicationMultiple + summary: Get roleDefinitions from roleManagement + operationId: roleManagement.deviceManagement_GetRoleDefinitions + parameters: + - name: unifiedRoleDefinition-id + 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 + 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.deviceManagement.RoleDefinitions.ListInheritsPermissionsFrom + parameters: + unifiedRoleDefinition-id: $request.path.unifiedRoleDefinition-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - roleManagement.rbacApplicationMultiple + summary: Update the navigation property roleDefinitions in roleManagement + operationId: roleManagement.deviceManagement_UpdateRoleDefinitions + 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 values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - roleManagement.rbacApplicationMultiple + summary: Delete navigation property roleDefinitions for roleManagement + operationId: roleManagement.deviceManagement_DeleteRoleDefinitions + parameters: + - name: unifiedRoleDefinition-id + 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 + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom': + get: + tags: + - roleManagement.rbacApplicationMultiple + summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.deviceManagement.roleDefinitions_ListInheritsPermissionsFrom + parameters: + - 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' + - 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 + - isBuiltIn + - isBuiltIn desc + - isEnabled + - isEnabled desc + - resourceScopes + - resourceScopes desc + - rolePermissions + - rolePermissions desc + - templateId + - templateId desc + - version + - version 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 + - 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: + title: Collection of unifiedRoleDefinition + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + '@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.rbacApplicationMultiple + summary: Create new navigation property to inheritsPermissionsFrom for roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.deviceManagement.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.unifiedRoleDefinition' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}': + get: + tags: + - roleManagement.rbacApplicationMultiple + summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.deviceManagement.roleDefinitions_GetInheritsPermissionsFrom + parameters: + - name: unifiedRoleDefinition-id + in: path + description: 'key: id of unifiedRoleDefinition' + required: true + 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 + 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.deviceManagement.roleDefinitions.InheritsPermissionsFrom.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.rbacApplicationMultiple + summary: Update the navigation property inheritsPermissionsFrom in roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.deviceManagement.roleDefinitions_UpdateInheritsPermissionsFrom + parameters: + - name: unifiedRoleDefinition-id + in: path + description: 'key: id of unifiedRoleDefinition' + required: true + 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: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - roleManagement.rbacApplicationMultiple + summary: Delete navigation property inheritsPermissionsFrom for roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.deviceManagement.roleDefinitions_DeleteInheritsPermissionsFrom + parameters: + - name: unifiedRoleDefinition-id + in: path + description: 'key: id of unifiedRoleDefinition' + required: true + 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 + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /roleManagement/directory: + get: + tags: + - roleManagement.rbacApplication + summary: Get directory from roleManagement + operationId: roleManagement_GetDirectory + 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 + - roleAssignmentScheduleInstances + - roleAssignmentScheduleRequests + - roleAssignmentSchedules + - roleEligibilityScheduleInstances + - roleEligibilityScheduleRequests + - 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 + - roleAssignmentScheduleInstances + - roleAssignmentScheduleRequests + - roleAssignmentSchedules + - roleEligibilityScheduleInstances + - roleEligibilityScheduleRequests + - roleEligibilitySchedules + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.rbacApplication' + links: + resourceNamespaces: + operationId: roleManagement.Directory.ListResourceNamespaces + roleAssignments: + operationId: roleManagement.Directory.ListRoleAssignments + roleDefinitions: + operationId: roleManagement.Directory.ListRoleDefinitions + roleAssignmentApprovals: + operationId: roleManagement.Directory.ListRoleAssignmentApprovals + roleAssignmentScheduleInstances: + operationId: roleManagement.Directory.ListRoleAssignmentScheduleInstances + roleAssignmentScheduleRequests: + operationId: roleManagement.Directory.ListRoleAssignmentScheduleRequests + roleAssignmentSchedules: + operationId: roleManagement.Directory.ListRoleAssignmentSchedules + roleEligibilityScheduleInstances: + operationId: roleManagement.Directory.ListRoleEligibilityScheduleInstances + roleEligibilityScheduleRequests: + operationId: roleManagement.Directory.ListRoleEligibilityScheduleRequests + roleEligibilitySchedules: + operationId: roleManagement.Directory.ListRoleEligibilitySchedules + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - roleManagement.rbacApplication + summary: Update the navigation property directory in roleManagement + operationId: roleManagement_UpdateDirectory + 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 directory for roleManagement + operationId: roleManagement_DeleteDirectory + 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/directory/microsoft.graph.roleScheduleInstances(directoryScopeId=''{directoryScopeId}'',appScopeId=''{appScopeId}'',principalId=''{principalId}'',roleDefinitionId=''{roleDefinitionId}'')': + get: + tags: + - roleManagement.Functions + summary: Invoke function roleScheduleInstances + operationId: roleManagement.directory_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/directory/microsoft.graph.roleSchedules(directoryScopeId=''{directoryScopeId}'',appScopeId=''{appScopeId}'',principalId=''{principalId}'',roleDefinitionId=''{roleDefinitionId}'')': + get: + tags: + - roleManagement.Functions + summary: Invoke function roleSchedules + operationId: roleManagement.directory_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/directory/resourceNamespaces: + get: + tags: + - roleManagement.rbacApplication + summary: Get resourceNamespaces from roleManagement + operationId: roleManagement.directory_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 + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - name + - resourceActions + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resourceActions + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of unifiedRbacResourceNamespace + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace' + '@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 resourceNamespaces for roleManagement + operationId: roleManagement.directory_CreateResourceNamespaces + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}': + get: + tags: + - roleManagement.rbacApplication + summary: Get resourceNamespaces from roleManagement + operationId: roleManagement.directory_GetResourceNamespaces + parameters: + - name: unifiedRbacResourceNamespace-id + in: path + description: 'key: id of unifiedRbacResourceNamespace' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRbacResourceNamespace + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - name + - resourceActions + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resourceActions + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace' + links: + resourceActions: + operationId: roleManagement.directory.ResourceNamespaces.ListResourceActions + parameters: + 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 resourceNamespaces in roleManagement + operationId: roleManagement.directory_UpdateResourceNamespaces + 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 values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace' + 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 resourceNamespaces for roleManagement + operationId: roleManagement.directory_DeleteResourceNamespaces + parameters: + - name: unifiedRbacResourceNamespace-id + in: path + description: 'key: id of unifiedRbacResourceNamespace' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRbacResourceNamespace + - 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/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions': + post: + tags: + - roleManagement.Actions + summary: Invoke action importResourceActions + operationId: roleManagement.directory.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/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions': + get: + tags: + - roleManagement.rbacApplication + summary: Get resourceActions from roleManagement + operationId: roleManagement.directory.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' + - $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.directory.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/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}': + get: + tags: + - roleManagement.rbacApplication + summary: Get resourceActions from roleManagement + operationId: roleManagement.directory.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 + schema: + type: string + x-ms-docs-key-type: unifiedRbacResourceAction + - 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: + $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction' + links: + resourceScope: + operationId: roleManagement.directory.resourceNamespaces.ResourceActions.GetResourceScope + parameters: + 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 resourceActions in roleManagement + operationId: roleManagement.directory.resourceNamespaces_UpdateResourceActions + 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 + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction' + 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.directory.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 + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope': + get: + tags: + - roleManagement.rbacApplication + summary: Get resourceScope from roleManagement + operationId: roleManagement.directory.resourceNamespaces.resourceActions_GetResourceScope + 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: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - scope + - type + 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.unifiedRbacResourceScope' + 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.directory.resourceNamespaces.resourceActions_UpdateResourceScope + 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 + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceScope' + 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 resourceScope for roleManagement + operationId: roleManagement.directory.resourceNamespaces.resourceActions_DeleteResourceScope + 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 + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /roleManagement/directory/roleAssignmentApprovals: + get: + tags: + - roleManagement.rbacApplication + summary: Get roleAssignmentApprovals from roleManagement + operationId: roleManagement.directory_ListRoleAssignmentApprovals + 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 + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - steps + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - steps + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of approval + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.approval' + '@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 roleAssignmentApprovals for roleManagement + operationId: roleManagement.directory_CreateRoleAssignmentApprovals + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.approval' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.approval' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/roleManagement/directory/roleAssignmentApprovals/{approval-id}': + get: + tags: + - roleManagement.rbacApplication + summary: Get roleAssignmentApprovals from roleManagement + operationId: roleManagement.directory_GetRoleAssignmentApprovals + parameters: + - name: approval-id + in: path + description: 'key: id of approval' + required: true + schema: + type: string + x-ms-docs-key-type: approval + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - steps + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - steps + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.approval' + links: + steps: + operationId: roleManagement.directory.RoleAssignmentApprovals.ListSteps + parameters: + 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 roleAssignmentApprovals in roleManagement + operationId: roleManagement.directory_UpdateRoleAssignmentApprovals + parameters: + - name: approval-id + in: path + description: 'key: id of approval' + required: true + schema: + type: string + x-ms-docs-key-type: approval + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.approval' + 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 roleAssignmentApprovals for roleManagement + operationId: roleManagement.directory_DeleteRoleAssignmentApprovals + parameters: + - name: approval-id + in: path + description: 'key: id of approval' + required: true + schema: + type: string + x-ms-docs-key-type: approval + - 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/roleAssignmentApprovals/{approval-id}/steps': + get: + tags: + - roleManagement.rbacApplication + summary: Get steps from roleManagement + operationId: roleManagement.directory.roleAssignmentApprovals_ListSteps + parameters: + - name: approval-id + in: path + description: 'key: id of approval' + required: true + schema: + type: string + 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 + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignedToMe + - displayName + - justification + - reviewedBy + - reviewedDateTime + - reviewResult + - status + 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 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 + post: + tags: + - roleManagement.rbacApplication + summary: Create new navigation property to steps for roleManagement + operationId: roleManagement.directory.roleAssignmentApprovals_CreateSteps + parameters: + - name: approval-id + in: path + description: 'key: id of approval' + required: true + schema: + type: string + x-ms-docs-key-type: approval + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.approvalStep' + required: true + responses: + '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/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}': + get: + tags: + - roleManagement.rbacApplication + summary: Get steps from roleManagement + operationId: roleManagement.directory.roleAssignmentApprovals_GetSteps + parameters: + - name: approval-id + in: path + description: 'key: id of approval' + required: true + schema: + type: string + 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: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignedToMe + - displayName + - justification + - reviewedBy + - reviewedDateTime + - reviewResult + - status + 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.approvalStep' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation @@ -10055,12 +12434,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function - /roleManagement/directory/roleAssignmentRequests: + /roleManagement/directory/roleAssignments: get: tags: - roleManagement.rbacApplication - summary: Get roleAssignmentRequests from roleManagement - operationId: roleManagement.directory_ListRoleAssignmentRequests + summary: Get roleAssignments from roleManagement + operationId: roleManagement.directory_ListRoleAssignments parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -10069,48 +12448,28 @@ paths: - $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 + 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 - - isValidationOnly - - isValidationOnly desc - - justification - - justification desc - principalId - principalId desc + - resourceScope + - resourceScope desc - roleDefinitionId - roleDefinitionId desc - - scheduleInfo - - scheduleInfo desc - - targetScheduleId - - targetScheduleId desc - - ticketInfo - - ticketInfo desc type: string - name: $select in: query @@ -10123,28 +12482,16 @@ paths: items: enum: - id - - approvalId - - completedDateTime - - createdBy - - createdDateTime - - customData - - status - - action - appScopeId + - condition - directoryScopeId - - isValidationOnly - - justification - principalId + - resourceScope - roleDefinitionId - - scheduleInfo - - targetScheduleId - - ticketInfo - - activatedUsing - appScope - directoryScope - principal - roleDefinition - - targetSchedule type: string - name: $expand in: query @@ -10157,12 +12504,10 @@ paths: items: enum: - '*' - - activatedUsing - appScope - directoryScope - principal - roleDefinition - - targetSchedule type: string responses: '200': @@ -10170,13 +12515,13 @@ paths: content: application/json: schema: - title: Collection of unifiedRoleAssignmentRequest + title: Collection of unifiedRoleAssignment type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' '@odata.nextLink': type: string additionalProperties: @@ -10190,14 +12535,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 roleAssignments for roleManagement + operationId: roleManagement.directory_CreateRoleAssignments requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' required: true responses: '201': @@ -10205,24 +12550,24 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}': + '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}': get: tags: - roleManagement.rbacApplication - summary: Get roleAssignmentRequests from roleManagement - operationId: roleManagement.directory_GetRoleAssignmentRequests + summary: Get roleAssignments from roleManagement + operationId: roleManagement.directory_GetRoleAssignments parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: $select in: query description: Select properties to be returned @@ -10234,28 +12579,16 @@ paths: items: enum: - id - - approvalId - - completedDateTime - - createdBy - - createdDateTime - - customData - - status - - action - appScopeId + - condition - directoryScopeId - - isValidationOnly - - justification - principalId + - resourceScope - roleDefinitionId - - scheduleInfo - - targetScheduleId - - ticketInfo - - activatedUsing - appScope - directoryScope - principal - roleDefinition - - targetSchedule type: string - name: $expand in: query @@ -10268,12 +12601,10 @@ paths: items: enum: - '*' - - activatedUsing - appScope - directoryScope - principal - roleDefinition - - targetSchedule type: string responses: '200': @@ -10281,54 +12612,46 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' links: - activatedUsing: - operationId: roleManagement.directory.RoleAssignmentRequests.GetActivatedUsing - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id appScope: - operationId: roleManagement.directory.RoleAssignmentRequests.GetAppScope + operationId: roleManagement.directory.RoleAssignments.GetAppScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id directoryScope: - operationId: roleManagement.directory.RoleAssignmentRequests.GetDirectoryScope + operationId: roleManagement.directory.RoleAssignments.GetDirectoryScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id principal: - operationId: roleManagement.directory.RoleAssignmentRequests.GetPrincipal + operationId: roleManagement.directory.RoleAssignments.GetPrincipal parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id roleDefinition: - operationId: roleManagement.directory.RoleAssignmentRequests.GetRoleDefinition - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - targetSchedule: - operationId: roleManagement.directory.RoleAssignmentRequests.GetTargetSchedule + operationId: roleManagement.directory.RoleAssignments.GetRoleDefinition parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + 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 roleAssignmentRequests in roleManagement - operationId: roleManagement.directory_UpdateRoleAssignmentRequests + summary: Update the navigation property roleAssignments in roleManagement + operationId: roleManagement.directory_UpdateRoleAssignments parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' required: true responses: '204': @@ -10339,16 +12662,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property roleAssignmentRequests for roleManagement - operationId: roleManagement.directory_DeleteRoleAssignmentRequests + summary: Delete navigation property roleAssignments for roleManagement + operationId: roleManagement.directory_DeleteRoleAssignments parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag @@ -10360,20 +12683,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing': + '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope': get: tags: - roleManagement.rbacApplication - summary: Get activatedUsing from roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_GetActivatedUsing + summary: Get appScope from roleManagement + description: Details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.directory.roleAssignments_GetAppScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: $select in: query description: Select properties to be returned @@ -10385,20 +12709,8 @@ paths: items: enum: - id - - appScopeId - - createdDateTime - - createdUsing - - directoryScopeId - - modifiedDateTime - - principalId - - roleDefinitionId - - status - - memberType - - scheduleInfo - - appScope - - directoryScope - - principal - - roleDefinition + - displayName + - type type: string - name: $expand in: query @@ -10411,10 +12723,6 @@ paths: items: enum: - '*' - - appScope - - directoryScope - - principal - - roleDefinition type: string responses: '200': @@ -10422,89 +12730,30 @@ 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 + $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 activatedUsing in roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_SetRefActivatedUsing + summary: Update the navigation property appScope in roleManagement + description: Details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.directory.roleAssignments_UpdateAppScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + 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': @@ -10515,16 +12764,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property activatedUsing for roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefActivatedUsing + summary: Delete navigation property appScope for roleManagement + description: Details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.directory.roleAssignments_DeleteAppScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag @@ -10536,20 +12786,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope': + '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope': get: tags: - roleManagement.rbacApplication - summary: Get appScope from roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_GetAppScope + summary: Get directoryScope from roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.directory.roleAssignments_GetDirectoryScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: $select in: query description: Select properties to be returned @@ -10561,8 +12812,7 @@ paths: items: enum: - id - - displayName - - type + - deletedDateTime type: string - name: $expand in: query @@ -10582,24 +12832,25 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.appScope' + $ref: '#/components/schemas/microsoft.graph.directoryObject' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope/$ref': + '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of appScope from roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_GetRefAppScope + summary: Get ref of directoryScope from roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.directory.roleAssignments_GetRefDirectoryScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment responses: '200': description: Retrieved navigation property link @@ -10613,16 +12864,17 @@ paths: put: tags: - roleManagement.rbacApplication - summary: Update the ref of navigation property appScope in roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_SetRefAppScope + summary: Update the ref of navigation property directoryScope in roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.directory.roleAssignments_SetRefDirectoryScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment requestBody: description: New navigation property ref values content: @@ -10641,16 +12893,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property appScope for roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefAppScope + summary: Delete ref of navigation property directoryScope for roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.directory.roleAssignments_DeleteRefDirectoryScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag @@ -10662,20 +12915,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope': + '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal': get: tags: - roleManagement.rbacApplication - summary: Get directoryScope from roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_GetDirectoryScope + summary: Get principal from roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.directory.roleAssignments_GetPrincipal parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: $select in: query description: Select properties to be returned @@ -10711,20 +12965,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope/$ref': + '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of directoryScope from roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_GetRefDirectoryScope + summary: Get ref of principal from roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.directory.roleAssignments_GetRefPrincipal parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment responses: '200': description: Retrieved navigation property link @@ -10738,16 +12993,17 @@ paths: put: tags: - roleManagement.rbacApplication - summary: Update the ref of navigation property directoryScope in roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_SetRefDirectoryScope + summary: Update the ref of navigation property principal in roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.directory.roleAssignments_SetRefPrincipal parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment requestBody: description: New navigation property ref values content: @@ -10766,16 +13022,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property directoryScope for roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefDirectoryScope + summary: Delete ref of navigation property principal for roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.directory.roleAssignments_DeleteRefPrincipal parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag @@ -10787,40 +13044,21 @@ 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/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition': get: tags: - roleManagement.rbacApplication - summary: Get principal from roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_GetPrincipal + summary: Get roleDefinition from roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. + operationId: roleManagement.directory.roleAssignments_GetRoleDefinition parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: $select in: query description: Select properties to be returned @@ -10832,7 +13070,15 @@ paths: items: enum: - id - - deletedDateTime + - description + - displayName + - isBuiltIn + - isEnabled + - resourceScopes + - rolePermissions + - templateId + - version + - inheritsPermissionsFrom type: string - name: $expand in: query @@ -10845,6 +13091,7 @@ paths: items: enum: - '*' + - inheritsPermissionsFrom type: string responses: '200': @@ -10852,24 +13099,30 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.directoryObject' + $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/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal/$ref': + '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of principal from roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_GetRefPrincipal + summary: Get ref of roleDefinition from roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. + operationId: roleManagement.directory.roleAssignments_GetRefRoleDefinition parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment responses: '200': description: Retrieved navigation property link @@ -10877,22 +13130,28 @@ paths: 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 principal in roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_SetRefPrincipal + summary: Update the ref of navigation property roleDefinition in roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. + operationId: roleManagement.directory.roleAssignments_SetRefRoleDefinition parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment requestBody: description: New navigation property ref values content: @@ -10911,16 +13170,17 @@ 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 roleDefinition for roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. + operationId: roleManagement.directory.roleAssignments_DeleteRefRoleDefinition parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag @@ -10932,20 +13192,51 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition': + /roleManagement/directory/roleAssignmentScheduleInstances: get: tags: - roleManagement.rbacApplication - summary: Get roleDefinition from roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_GetRoleDefinition + summary: Get roleAssignmentScheduleInstances from roleManagement + operationId: roleManagement.directory_ListRoleAssignmentScheduleInstances parameters: - - name: unifiedRoleAssignmentRequest-id - in: path - description: 'key: id of unifiedRoleAssignmentRequest' - required: true + - $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: - type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + 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 - name: $select in: query description: Select properties to be returned @@ -10957,15 +13248,21 @@ paths: items: enum: - id - - description - - displayName - - isBuiltIn - - isEnabled - - resourceScopes - - rolePermissions - - templateId - - version - - inheritsPermissionsFrom + - appScopeId + - directoryScopeId + - principalId + - roleDefinitionId + - assignmentType + - endDateTime + - memberType + - roleAssignmentOriginId + - roleAssignmentScheduleId + - startDateTime + - appScope + - directoryScope + - principal + - roleDefinition + - activatedUsing type: string - name: $expand in: query @@ -10978,7 +13275,11 @@ paths: items: enum: - '*' - - inheritsPermissionsFrom + - appScope + - directoryScope + - principal + - roleDefinition + - activatedUsing type: string responses: '200': @@ -10986,65 +13287,153 @@ 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 + 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' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition/$ref': + '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}': get: tags: - roleManagement.rbacApplication - summary: Get ref of roleDefinition from roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_GetRefRoleDefinition + summary: Get roleAssignmentScheduleInstances from roleManagement + operationId: roleManagement.directory_GetRoleAssignmentScheduleInstances parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + 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 responses: '200': - description: Retrieved navigation property link + description: Retrieved navigation property content: application/json: schema: - type: string + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' links: - inheritsPermissionsFrom: - operationId: roleManagement.directory.roleAssignmentRequests.RoleDefinition.ListInheritsPermissionsFrom + 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: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id 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.roleAssignmentRequests_SetRefRoleDefinition + summary: Update the navigation property roleAssignmentScheduleInstances in roleManagement + operationId: roleManagement.directory_UpdateRoleAssignmentScheduleInstances parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance 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.unifiedRoleAssignmentScheduleInstance' required: true responses: '204': @@ -11055,16 +13444,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property roleDefinition for roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefRoleDefinition + summary: Delete navigation property roleAssignmentScheduleInstances for roleManagement + operationId: roleManagement.directory_DeleteRoleAssignmentScheduleInstances parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance - name: If-Match in: header description: ETag @@ -11076,20 +13465,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule': + '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing': get: tags: - roleManagement.rbacApplication - summary: Get targetSchedule from roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_GetTargetSchedule + summary: Get activatedUsing from roleManagement + description: 'If the roleAssignmentScheduleInstance is activated by a roleEligibilityScheduleRequest, this is the link to the related schedule instance.' + operationId: roleManagement.directory.roleAssignmentScheduleInstances_GetActivatedUsing parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance - name: $select in: query description: Select properties to be returned @@ -11102,21 +13492,17 @@ paths: enum: - id - appScopeId - - createdDateTime - - createdUsing - directoryScopeId - - modifiedDateTime - principalId - roleDefinitionId - - status - - assignmentType + - endDateTime - memberType - - scheduleInfo + - roleEligibilityScheduleId + - startDateTime - appScope - directoryScope - principal - roleDefinition - - activatedUsing type: string - name: $expand in: query @@ -11133,7 +13519,6 @@ paths: - directoryScope - principal - roleDefinition - - activatedUsing type: string responses: '200': @@ -11141,45 +13526,42 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' links: appScope: - operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetAppScope + operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id directoryScope: - operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetDirectoryScope + operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id principal: - operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetPrincipal + operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id roleDefinition: - operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetRoleDefinition - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - activatedUsing: - operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetActivatedUsing + operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule/$ref': + '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of targetSchedule from roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_GetRefTargetSchedule + summary: Get ref of activatedUsing from roleManagement + description: 'If the roleAssignmentScheduleInstance is activated by a roleEligibilityScheduleRequest, this is the link to the related schedule instance.' + operationId: roleManagement.directory.roleAssignmentScheduleInstances_GetRefActivatedUsing parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance responses: '200': description: Retrieved navigation property link @@ -11189,41 +13571,38 @@ paths: type: string links: appScope: - operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetAppScope + operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id directoryScope: - operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetDirectoryScope + operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id principal: - operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetPrincipal + operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id roleDefinition: - operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetRoleDefinition - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - activatedUsing: - operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetActivatedUsing + operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + 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 targetSchedule in roleManagement - operationId: roleManagement.directory.roleAssignmentRequests_SetRefTargetSchedule + summary: Update the ref of navigation property activatedUsing in roleManagement + description: 'If the roleAssignmentScheduleInstance is activated by a roleEligibilityScheduleRequest, this is the link to the related schedule instance.' + operationId: roleManagement.directory.roleAssignmentScheduleInstances_SetRefActivatedUsing parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance requestBody: description: New navigation property ref values content: @@ -11242,16 +13621,17 @@ 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 activatedUsing for roleManagement + description: 'If the roleAssignmentScheduleInstance is activated by a roleEligibilityScheduleRequest, this is the link to the related schedule instance.' + operationId: roleManagement.directory.roleAssignmentScheduleInstances_DeleteRefActivatedUsing parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance - name: If-Match in: header description: ETag @@ -11263,19 +13643,19 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})': + '/roleManagement/directory/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})': get: tags: - roleManagement.Functions summary: Invoke function filterByCurrentUser - operationId: roleManagement.directory.roleAssignmentRequests_filterByCurrentUser + operationId: roleManagement.directory.roleAssignmentScheduleInstances_filterByCurrentUser parameters: - name: on in: path description: 'Usage: on={on}' required: true schema: - $ref: '#/components/schemas/microsoft.graph.roleAssignmentRequestFilterByCurrentUserOptions' + $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleInstanceFilterByCurrentUserOptions' responses: '200': description: Success @@ -11284,16 +13664,16 @@ paths: schema: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function - /roleManagement/directory/roleAssignments: + /roleManagement/directory/roleAssignmentScheduleRequests: get: tags: - roleManagement.rbacApplication - summary: Get roleAssignments from roleManagement - operationId: roleManagement.directory_ListRoleAssignments + summary: Get roleAssignmentScheduleRequests from roleManagement + operationId: roleManagement.directory_ListRoleAssignmentScheduleRequests parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -11312,18 +13692,38 @@ 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 - - condition - - condition desc - directoryScopeId - directoryScopeId desc + - isValidationOnly + - isValidationOnly desc + - justification + - justification desc - principalId - principalId desc - - resourceScope - - resourceScope desc - roleDefinitionId - roleDefinitionId desc + - scheduleInfo + - scheduleInfo desc + - targetScheduleId + - targetScheduleId desc + - ticketInfo + - ticketInfo desc type: string - name: $select in: query @@ -11336,16 +13736,28 @@ paths: items: enum: - id + - approvalId + - completedDateTime + - createdBy + - createdDateTime + - customData + - status + - action - appScopeId - - condition - directoryScopeId + - isValidationOnly + - justification - principalId - - resourceScope - roleDefinitionId + - scheduleInfo + - targetScheduleId + - ticketInfo + - activatedUsing - appScope - directoryScope - principal - roleDefinition + - targetSchedule type: string - name: $expand in: query @@ -11358,10 +13770,12 @@ paths: items: enum: - '*' + - activatedUsing - appScope - directoryScope - principal - roleDefinition + - targetSchedule type: string responses: '200': @@ -11369,13 +13783,13 @@ paths: content: application/json: schema: - title: Collection of unifiedRoleAssignment + title: Collection of unifiedRoleAssignmentScheduleRequest type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' '@odata.nextLink': type: string additionalProperties: @@ -11389,14 +13803,14 @@ paths: post: tags: - roleManagement.rbacApplication - summary: Create new navigation property to roleAssignments for roleManagement - operationId: roleManagement.directory_CreateRoleAssignments + summary: Create new navigation property to roleAssignmentScheduleRequests for roleManagement + operationId: roleManagement.directory_CreateRoleAssignmentScheduleRequests requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' required: true responses: '201': @@ -11404,153 +13818,24 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}': - get: - tags: - - roleManagement.rbacApplication - 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 - description: 'key: id of unifiedRoleAssignment' - 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.unifiedRoleAssignment' - 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 roleAssignments for roleManagement - operationId: roleManagement.directory_DeleteRoleAssignments - 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 + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope': + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}': get: tags: - roleManagement.rbacApplication - summary: Get appScope from roleManagement - operationId: roleManagement.directory.roleAssignments_GetAppScope + summary: Get roleAssignmentScheduleRequests from roleManagement + operationId: roleManagement.directory_GetRoleAssignmentScheduleRequests parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -11562,8 +13847,28 @@ paths: items: enum: - id - - displayName - - type + - 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 @@ -11576,6 +13881,12 @@ paths: items: enum: - '*' + - activatedUsing + - appScope + - directoryScope + - principal + - roleDefinition + - targetSchedule type: string responses: '200': @@ -11583,29 +13894,54 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.appScope' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' + links: + activatedUsing: + operationId: roleManagement.directory.RoleAssignmentScheduleRequests.GetActivatedUsing + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + appScope: + operationId: roleManagement.directory.RoleAssignmentScheduleRequests.GetAppScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + directoryScope: + operationId: roleManagement.directory.RoleAssignmentScheduleRequests.GetDirectoryScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + principal: + operationId: roleManagement.directory.RoleAssignmentScheduleRequests.GetPrincipal + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + roleDefinition: + operationId: roleManagement.directory.RoleAssignmentScheduleRequests.GetRoleDefinition + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + targetSchedule: + operationId: roleManagement.directory.RoleAssignmentScheduleRequests.GetTargetSchedule + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - roleManagement.rbacApplication - summary: Update the navigation property appScope in roleManagement - operationId: roleManagement.directory.roleAssignments_UpdateAppScope + summary: Update the navigation property roleAssignmentScheduleRequests in roleManagement + operationId: roleManagement.directory_UpdateRoleAssignmentScheduleRequests parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.appScope' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' required: true responses: '204': @@ -11616,16 +13952,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property appScope for roleManagement - operationId: roleManagement.directory.roleAssignments_DeleteAppScope + summary: Delete navigation property roleAssignmentScheduleRequests for roleManagement + operationId: roleManagement.directory_DeleteRoleAssignmentScheduleRequests parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -11637,20 +13973,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope': + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing': get: tags: - roleManagement.rbacApplication - summary: Get directoryScope from roleManagement - operationId: roleManagement.directory.roleAssignments_GetDirectoryScope + summary: Get activatedUsing from roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation.' + operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetActivatedUsing parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -11662,7 +13999,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 @@ -11675,6 +14025,10 @@ paths: items: enum: - '*' + - appScope + - directoryScope + - principal + - roleDefinition type: string responses: '200': @@ -11682,24 +14036,42 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.directoryObject' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' + links: + appScope: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.ActivatedUsing.GetAppScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + directoryScope: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.ActivatedUsing.GetDirectoryScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + principal: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.ActivatedUsing.GetPrincipal + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + roleDefinition: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.ActivatedUsing.GetRoleDefinition + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref': + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of directoryScope from roleManagement - operationId: roleManagement.directory.roleAssignments_GetRefDirectoryScope + summary: Get ref of activatedUsing from roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation.' + operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetRefActivatedUsing parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest responses: '200': description: Retrieved navigation property link @@ -11707,22 +14079,40 @@ paths: application/json: schema: type: string + links: + appScope: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.ActivatedUsing.GetAppScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + directoryScope: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.ActivatedUsing.GetDirectoryScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + principal: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.ActivatedUsing.GetPrincipal + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + roleDefinition: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.ActivatedUsing.GetRoleDefinition + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-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 activatedUsing in roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation.' + operationId: roleManagement.directory.roleAssignmentScheduleRequests_SetRefActivatedUsing parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: description: New navigation property ref values content: @@ -11741,16 +14131,17 @@ 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 activatedUsing for roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation.' + operationId: roleManagement.directory.roleAssignmentScheduleRequests_DeleteRefActivatedUsing parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -11762,20 +14153,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal': + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope': get: tags: - roleManagement.rbacApplication - summary: Get principal from roleManagement - operationId: roleManagement.directory.roleAssignments_GetPrincipal + summary: Get appScope from roleManagement + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetAppScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -11787,7 +14179,8 @@ paths: items: enum: - id - - deletedDateTime + - displayName + - type type: string - name: $expand in: query @@ -11807,24 +14200,25 @@ 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/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref': + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of principal from roleManagement - operationId: roleManagement.directory.roleAssignments_GetRefPrincipal + summary: Get ref of appScope from roleManagement + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetRefAppScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest responses: '200': description: Retrieved navigation property link @@ -11838,16 +14232,17 @@ paths: put: tags: - roleManagement.rbacApplication - summary: Update the ref of navigation property principal in roleManagement - operationId: roleManagement.directory.roleAssignments_SetRefPrincipal + summary: Update the ref of navigation property appScope in roleManagement + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_SetRefAppScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: description: New navigation property ref values content: @@ -11866,16 +14261,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property principal for roleManagement - operationId: roleManagement.directory.roleAssignments_DeleteRefPrincipal + summary: Delete ref of navigation property appScope for roleManagement + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_DeleteRefAppScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -11887,20 +14283,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition': + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope': get: tags: - roleManagement.rbacApplication - summary: Get roleDefinition from roleManagement - operationId: roleManagement.directory.roleAssignments_GetRoleDefinition + summary: Get directoryScope from roleManagement + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetDirectoryScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -11912,15 +14309,7 @@ paths: items: enum: - id - - description - - displayName - - isBuiltIn - - isEnabled - - resourceScopes - - rolePermissions - - templateId - - version - - inheritsPermissionsFrom + - deletedDateTime type: string - name: $expand in: query @@ -11933,7 +14322,6 @@ paths: items: enum: - '*' - - inheritsPermissionsFrom type: string responses: '200': @@ -11941,29 +14329,25 @@ 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 + $ref: '#/components/schemas/microsoft.graph.directoryObject' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref': + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of roleDefinition from roleManagement - operationId: roleManagement.directory.roleAssignments_GetRefRoleDefinition + summary: Get ref of directoryScope from roleManagement + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetRefDirectoryScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest responses: '200': description: Retrieved navigation property link @@ -11971,27 +14355,23 @@ paths: 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 + summary: Update the ref of navigation property directoryScope in roleManagement + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_SetRefDirectoryScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: description: New navigation property ref values content: @@ -12010,16 +14390,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property roleDefinition for roleManagement - operationId: roleManagement.directory.roleAssignments_DeleteRefRoleDefinition + summary: Delete ref of navigation property directoryScope for roleManagement + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_DeleteRefDirectoryScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -12031,51 +14412,41 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /roleManagement/directory/roleAssignmentScheduleInstances: + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/microsoft.graph.cancel': + post: + tags: + - roleManagement.Actions + summary: Invoke action cancel + operationId: roleManagement.directory.roleAssignmentScheduleRequests_cancel + parameters: + - name: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal': get: tags: - roleManagement.rbacApplication - summary: Get roleAssignmentScheduleInstances from roleManagement - operationId: roleManagement.directory_ListRoleAssignmentScheduleInstances + summary: Get principal from roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_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 - 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 + - name: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -12087,21 +14458,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 @@ -12114,11 +14471,6 @@ paths: items: enum: - '*' - - appScope - - directoryScope - - principal - - roleDefinition - - activatedUsing type: string responses: '200': @@ -12126,59 +14478,104 @@ 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 + $ref: '#/components/schemas/microsoft.graph.directoryObject' default: $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore x-ms-docs-operation-type: operation - post: + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref': + get: tags: - roleManagement.rbacApplication - summary: Create new navigation property to roleAssignmentScheduleInstances for roleManagement - operationId: roleManagement.directory_CreateRoleAssignmentScheduleInstances + summary: Get ref of principal from roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetRefPrincipal + parameters: + - name: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest + 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 principal in roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_SetRefPrincipal + parameters: + - name: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: - description: New navigation property + description: New navigation property ref values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' + type: object + additionalProperties: + type: object required: true responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' + '204': + description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}': + delete: + tags: + - roleManagement.rbacApplication + summary: Delete ref of navigation property principal for roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_DeleteRefPrincipal + parameters: + - name: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest + - 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/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition': get: tags: - roleManagement.rbacApplication - summary: Get roleAssignmentScheduleInstances from roleManagement - operationId: roleManagement.directory_GetRoleAssignmentScheduleInstances + summary: Get roleDefinition from roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetRoleDefinition parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -12190,21 +14587,15 @@ paths: items: enum: - id - - appScopeId - - directoryScopeId - - principalId - - roleDefinitionId - - assignmentType - - endDateTime - - memberType - - roleAssignmentOriginId - - roleAssignmentScheduleId - - startDateTime - - appScope - - directoryScope - - principal - - roleDefinition - - activatedUsing + - description + - displayName + - isBuiltIn + - isEnabled + - resourceScopes + - rolePermissions + - templateId + - version + - inheritsPermissionsFrom type: string - name: $expand in: query @@ -12217,11 +14608,7 @@ paths: items: enum: - '*' - - appScope - - directoryScope - - principal - - roleDefinition - - activatedUsing + - inheritsPermissionsFrom type: string responses: '200': @@ -12229,50 +14616,67 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' 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 + inheritsPermissionsFrom: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.RoleDefinition.ListInheritsPermissionsFrom parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id - activatedUsing: - operationId: roleManagement.directory.RoleAssignmentScheduleInstances.GetActivatedUsing + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref': + get: + tags: + - roleManagement.rbacApplication + summary: Get ref of roleDefinition from roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetRefRoleDefinition + parameters: + - name: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest + responses: + '200': + description: Retrieved navigation property link + content: + application/json: + schema: + type: string + links: + inheritsPermissionsFrom: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.RoleDefinition.ListInheritsPermissionsFrom parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id 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 roleDefinition in roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_SetRefRoleDefinition parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest 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': @@ -12283,16 +14687,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property roleAssignmentScheduleInstances for roleManagement - operationId: roleManagement.directory_DeleteRoleAssignmentScheduleInstances + summary: Delete ref of navigation property roleDefinition for roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded. + operationId: roleManagement.directory.roleAssignmentScheduleRequests_DeleteRefRoleDefinition parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -12304,20 +14709,20 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing': + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule': get: tags: - roleManagement.rbacApplication - summary: Get activatedUsing from roleManagement - operationId: roleManagement.directory.roleAssignmentScheduleInstances_GetActivatedUsing + summary: Get targetSchedule from roleManagement + operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetTargetSchedule parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -12330,17 +14735,21 @@ paths: enum: - id - appScopeId + - createdDateTime + - createdUsing - directoryScopeId + - modifiedDateTime - principalId - roleDefinitionId - - endDateTime + - status + - assignmentType - memberType - - roleEligibilityScheduleId - - startDateTime + - scheduleInfo - appScope - directoryScope - principal - roleDefinition + - activatedUsing type: string - name: $expand in: query @@ -12357,6 +14766,7 @@ paths: - directoryScope - principal - roleDefinition + - activatedUsing type: string responses: '200': @@ -12364,41 +14774,45 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule' links: appScope: - operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope + operationId: roleManagement.directory.roleAssignmentScheduleRequests.TargetSchedule.GetAppScope parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id directoryScope: - operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope + operationId: roleManagement.directory.roleAssignmentScheduleRequests.TargetSchedule.GetDirectoryScope parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id principal: - operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal + operationId: roleManagement.directory.roleAssignmentScheduleRequests.TargetSchedule.GetPrincipal parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id roleDefinition: - operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition + operationId: roleManagement.directory.roleAssignmentScheduleRequests.TargetSchedule.GetRoleDefinition parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + activatedUsing: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.TargetSchedule.GetActivatedUsing + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref': + '/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of activatedUsing from roleManagement - operationId: roleManagement.directory.roleAssignmentScheduleInstances_GetRefActivatedUsing + summary: Get ref of targetSchedule from roleManagement + operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetRefTargetSchedule parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest responses: '200': description: Retrieved navigation property link @@ -12408,37 +14822,41 @@ paths: type: string links: appScope: - operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope + operationId: roleManagement.directory.roleAssignmentScheduleRequests.TargetSchedule.GetAppScope parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id directoryScope: - operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope + operationId: roleManagement.directory.roleAssignmentScheduleRequests.TargetSchedule.GetDirectoryScope parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id principal: - operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal + operationId: roleManagement.directory.roleAssignmentScheduleRequests.TargetSchedule.GetPrincipal parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id roleDefinition: - operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition + operationId: roleManagement.directory.roleAssignmentScheduleRequests.TargetSchedule.GetRoleDefinition parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + activatedUsing: + operationId: roleManagement.directory.roleAssignmentScheduleRequests.TargetSchedule.GetActivatedUsing + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-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 targetSchedule in roleManagement + operationId: roleManagement.directory.roleAssignmentScheduleRequests_SetRefTargetSchedule parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: description: New navigation property ref values content: @@ -12456,17 +14874,17 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - roleManagement.rbacApplication - summary: Delete ref of navigation property activatedUsing for roleManagement - operationId: roleManagement.directory.roleAssignmentScheduleInstances_DeleteRefActivatedUsing + - roleManagement.rbacApplication + summary: Delete ref of navigation property targetSchedule for roleManagement + operationId: roleManagement.directory.roleAssignmentScheduleRequests_DeleteRefTargetSchedule parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -12478,19 +14896,19 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})': + '/roleManagement/directory/roleAssignmentScheduleRequests/microsoft.graph.filterByCurrentUser(on={on})': get: tags: - roleManagement.Functions summary: Invoke function filterByCurrentUser - operationId: roleManagement.directory.roleAssignmentScheduleInstances_filterByCurrentUser + operationId: roleManagement.directory.roleAssignmentScheduleRequests_filterByCurrentUser parameters: - name: on in: path description: 'Usage: on={on}' required: true schema: - $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleInstanceFilterByCurrentUserOptions' + $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleRequestFilterByCurrentUserOptions' responses: '200': description: Success @@ -12499,7 +14917,7 @@ paths: schema: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function @@ -12785,6 +15203,7 @@ paths: tags: - roleManagement.rbacApplication summary: Get activatedUsing from roleManagement + description: 'If the roleAssignmentSchedule is activated by a roleEligibilitySchedule, this is the link to that schedule.' operationId: roleManagement.directory.roleAssignmentSchedules_GetActivatedUsing parameters: - name: unifiedRoleAssignmentSchedule-id @@ -12868,6 +15287,7 @@ paths: tags: - roleManagement.rbacApplication summary: Get ref of activatedUsing from roleManagement + description: 'If the roleAssignmentSchedule is activated by a roleEligibilitySchedule, this is the link to that schedule.' operationId: roleManagement.directory.roleAssignmentSchedules_GetRefActivatedUsing parameters: - name: unifiedRoleAssignmentSchedule-id @@ -12875,56 +15295,316 @@ paths: description: 'key: id of unifiedRoleAssignmentSchedule' required: true schema: - type: string - x-ms-docs-key-type: unifiedRoleAssignmentSchedule + 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 + description: 'If the roleAssignmentSchedule is activated by a roleEligibilitySchedule, this is the link to that schedule.' + 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 + description: 'If the roleAssignmentSchedule is activated by a roleEligibilitySchedule, this is the link to that schedule.' + 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' + - $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 + - isBuiltIn + - isBuiltIn desc + - isEnabled + - isEnabled desc + - resourceScopes + - resourceScopes desc + - rolePermissions + - rolePermissions desc + - templateId + - templateId desc + - version + - version 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 + - 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: + title: Collection of unifiedRoleDefinition + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + '@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 roleDefinitions for roleManagement + operationId: roleManagement.directory_CreateRoleDefinitions + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}': + get: + tags: + - roleManagement.rbacApplication + summary: Get roleDefinitions from roleManagement + operationId: roleManagement.directory_GetRoleDefinitions + parameters: + - name: unifiedRoleDefinition-id + 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 + 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 link + description: Retrieved navigation property content: application/json: schema: - type: string + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' 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 + inheritsPermissionsFrom: + operationId: roleManagement.directory.RoleDefinitions.ListInheritsPermissionsFrom parameters: - unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id + unifiedRoleDefinition-id: $request.path.unifiedRoleDefinition-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - put: + patch: tags: - roleManagement.rbacApplication - summary: Update the ref of navigation property activatedUsing in roleManagement - operationId: roleManagement.directory.roleAssignmentSchedules_SetRefActivatedUsing + summary: Update the navigation property roleDefinitions in roleManagement + operationId: roleManagement.directory_UpdateRoleDefinitions parameters: - - name: unifiedRoleAssignmentSchedule-id + - name: unifiedRoleDefinition-id in: path - description: 'key: id of unifiedRoleAssignmentSchedule' + description: 'key: id of unifiedRoleDefinition' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentSchedule + x-ms-docs-key-type: unifiedRoleDefinition 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.unifiedRoleDefinition' required: true responses: '204': @@ -12935,16 +15615,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property activatedUsing for roleManagement - operationId: roleManagement.directory.roleAssignmentSchedules_DeleteRefActivatedUsing + summary: Delete navigation property roleDefinitions for roleManagement + operationId: roleManagement.directory_DeleteRoleDefinitions parameters: - - name: unifiedRoleAssignmentSchedule-id + - name: unifiedRoleDefinition-id in: path - description: 'key: id of unifiedRoleAssignmentSchedule' + description: 'key: id of unifiedRoleDefinition' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentSchedule + x-ms-docs-key-type: unifiedRoleDefinition - name: If-Match in: header description: ETag @@ -12956,38 +15636,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleAssignmentSchedules/microsoft.graph.filterByCurrentUser(on={on})': + '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom': get: tags: - - roleManagement.Functions - summary: Invoke function filterByCurrentUser - operationId: roleManagement.directory.roleAssignmentSchedules_filterByCurrentUser + - roleManagement.rbacApplication + summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.directory.roleDefinitions_ListInheritsPermissionsFrom parameters: - - name: on + - name: unifiedRoleDefinition-id in: path - description: 'Usage: on={on}' + description: 'key: id of unifiedRoleDefinition' 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: + type: string + x-ms-docs-key-type: unifiedRoleDefinition - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -13082,8 +15745,17 @@ paths: post: tags: - roleManagement.rbacApplication - summary: Create new navigation property to roleDefinitions for roleManagement - operationId: roleManagement.directory_CreateRoleDefinitions + summary: Create new navigation property to inheritsPermissionsFrom for roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + 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: @@ -13101,12 +15773,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}': + '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}': get: tags: - roleManagement.rbacApplication - summary: Get roleDefinitions from roleManagement - operationId: roleManagement.directory_GetRoleDefinitions + summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.directory.roleDefinitions_GetInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path @@ -13115,6 +15788,13 @@ 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 @@ -13158,17 +15838,19 @@ paths: $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' links: inheritsPermissionsFrom: - operationId: roleManagement.directory.RoleDefinitions.ListInheritsPermissionsFrom + operationId: roleManagement.directory.roleDefinitions.InheritsPermissionsFrom.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 roleDefinitions in roleManagement - operationId: roleManagement.directory_UpdateRoleDefinitions + summary: Update the navigation property inheritsPermissionsFrom in roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.directory.roleDefinitions_UpdateInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path @@ -13177,6 +15859,13 @@ 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: @@ -13193,8 +15882,9 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property roleDefinitions for roleManagement - operationId: roleManagement.directory_DeleteRoleDefinitions + summary: Delete navigation property inheritsPermissionsFrom for roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.directory.roleDefinitions_DeleteInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path @@ -13203,6 +15893,13 @@ 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 @@ -13214,20 +15911,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom': + /roleManagement/directory/roleEligibilityScheduleInstances: get: tags: - roleManagement.rbacApplication - summary: Get inheritsPermissionsFrom from roleManagement - operationId: roleManagement.directory.roleDefinitions_ListInheritsPermissionsFrom + summary: Get roleEligibilityScheduleInstances from roleManagement + operationId: roleManagement.directory_ListRoleEligibilityScheduleInstances parameters: - - 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' @@ -13245,22 +15935,22 @@ 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 + - 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 @@ -13273,15 +15963,18 @@ paths: items: enum: - id - - description - - displayName - - isBuiltIn - - isEnabled - - resourceScopes - - rolePermissions - - templateId - - version - - inheritsPermissionsFrom + - appScopeId + - directoryScopeId + - principalId + - roleDefinitionId + - endDateTime + - memberType + - roleEligibilityScheduleId + - startDateTime + - appScope + - directoryScope + - principal + - roleDefinition type: string - name: $expand in: query @@ -13294,7 +15987,10 @@ paths: items: enum: - '*' - - inheritsPermissionsFrom + - appScope + - directoryScope + - principal + - roleDefinition type: string responses: '200': @@ -13302,13 +15998,13 @@ paths: content: application/json: schema: - title: Collection of unifiedRoleDefinition + title: Collection of unifiedRoleEligibilityScheduleInstance type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' '@odata.nextLink': type: string additionalProperties: @@ -13322,22 +16018,14 @@ 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 roleEligibilityScheduleInstances for roleManagement + operationId: roleManagement.directory_CreateRoleEligibilityScheduleInstances requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' required: true responses: '201': @@ -13345,31 +16033,24 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}': + '/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}': get: tags: - roleManagement.rbacApplication - summary: Get inheritsPermissionsFrom from roleManagement - operationId: roleManagement.directory.roleDefinitions_GetInheritsPermissionsFrom + summary: Get roleEligibilityScheduleInstances from roleManagement + operationId: roleManagement.directory_GetRoleEligibilityScheduleInstances parameters: - - name: unifiedRoleDefinition-id - in: path - description: 'key: id of unifiedRoleDefinition' - required: true - schema: - type: string - x-ms-docs-key-type: unifiedRoleDefinition - - name: unifiedRoleDefinition-id1 + - name: unifiedRoleEligibilityScheduleInstance-id in: path - description: 'key: id of unifiedRoleDefinition' + description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleDefinition + x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance - name: $select in: query description: Select properties to be returned @@ -13381,15 +16062,18 @@ paths: items: enum: - id - - description - - displayName - - isBuiltIn - - isEnabled - - resourceScopes - - rolePermissions - - templateId - - version - - inheritsPermissionsFrom + - appScopeId + - directoryScopeId + - principalId + - roleDefinitionId + - endDateTime + - memberType + - roleEligibilityScheduleId + - startDateTime + - appScope + - directoryScope + - principal + - roleDefinition type: string - name: $expand in: query @@ -13402,7 +16086,10 @@ paths: items: enum: - '*' - - inheritsPermissionsFrom + - appScope + - directoryScope + - principal + - roleDefinition type: string responses: '200': @@ -13410,42 +16097,46 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' links: - inheritsPermissionsFrom: - operationId: roleManagement.directory.roleDefinitions.InheritsPermissionsFrom.ListInheritsPermissionsFrom + appScope: + operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetAppScope parameters: - unifiedRoleDefinition-id: $request.path.unifiedRoleDefinition-id - unifiedRoleDefinition-id1: $request.path.unifiedRoleDefinition-id1 + 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 inheritsPermissionsFrom in roleManagement - operationId: roleManagement.directory.roleDefinitions_UpdateInheritsPermissionsFrom + summary: Update the navigation property roleEligibilityScheduleInstances in roleManagement + operationId: roleManagement.directory_UpdateRoleEligibilityScheduleInstances parameters: - - name: unifiedRoleDefinition-id - in: path - description: 'key: id of unifiedRoleDefinition' - required: true - schema: - type: string - x-ms-docs-key-type: unifiedRoleDefinition - - name: unifiedRoleDefinition-id1 + - name: unifiedRoleEligibilityScheduleInstance-id in: path - description: 'key: id of unifiedRoleDefinition' + description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleDefinition + x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' required: true responses: '204': @@ -13456,23 +16147,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property inheritsPermissionsFrom for roleManagement - operationId: roleManagement.directory.roleDefinitions_DeleteInheritsPermissionsFrom + summary: Delete navigation property roleEligibilityScheduleInstances for roleManagement + operationId: roleManagement.directory_DeleteRoleEligibilityScheduleInstances parameters: - - name: unifiedRoleDefinition-id - in: path - description: 'key: id of unifiedRoleDefinition' - required: true - schema: - type: string - x-ms-docs-key-type: unifiedRoleDefinition - - name: unifiedRoleDefinition-id1 + - name: unifiedRoleEligibilityScheduleInstance-id in: path - description: 'key: id of unifiedRoleDefinition' + description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleDefinition + x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance - name: If-Match in: header description: ETag @@ -13484,12 +16168,37 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /roleManagement/directory/roleEligibilityRequests: + '/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/roleEligibilityScheduleRequests: get: tags: - roleManagement.rbacApplication - summary: Get roleEligibilityRequests from roleManagement - operationId: roleManagement.directory_ListRoleEligibilityRequests + summary: Get roleEligibilityScheduleRequests from roleManagement + operationId: roleManagement.directory_ListRoleEligibilityScheduleRequests parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -13597,13 +16306,13 @@ paths: content: application/json: schema: - title: Collection of unifiedRoleEligibilityRequest + title: Collection of unifiedRoleEligibilityScheduleRequest type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' '@odata.nextLink': type: string additionalProperties: @@ -13617,14 +16326,14 @@ paths: post: tags: - roleManagement.rbacApplication - summary: Create new navigation property to roleEligibilityRequests for roleManagement - operationId: roleManagement.directory_CreateRoleEligibilityRequests + summary: Create new navigation property to roleEligibilityScheduleRequests for roleManagement + operationId: roleManagement.directory_CreateRoleEligibilityScheduleRequests requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' required: true responses: '201': @@ -13632,24 +16341,24 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}': get: tags: - roleManagement.rbacApplication - summary: Get roleEligibilityRequests from roleManagement - operationId: roleManagement.directory_GetRoleEligibilityRequests + summary: Get roleEligibilityScheduleRequests from roleManagement + operationId: roleManagement.directory_GetRoleEligibilityScheduleRequests parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -13706,50 +16415,50 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' links: appScope: - operationId: roleManagement.directory.RoleEligibilityRequests.GetAppScope + operationId: roleManagement.directory.RoleEligibilityScheduleRequests.GetAppScope parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id directoryScope: - operationId: roleManagement.directory.RoleEligibilityRequests.GetDirectoryScope + operationId: roleManagement.directory.RoleEligibilityScheduleRequests.GetDirectoryScope parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id principal: - operationId: roleManagement.directory.RoleEligibilityRequests.GetPrincipal + operationId: roleManagement.directory.RoleEligibilityScheduleRequests.GetPrincipal parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id roleDefinition: - operationId: roleManagement.directory.RoleEligibilityRequests.GetRoleDefinition + operationId: roleManagement.directory.RoleEligibilityScheduleRequests.GetRoleDefinition parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id targetSchedule: - operationId: roleManagement.directory.RoleEligibilityRequests.GetTargetSchedule + operationId: roleManagement.directory.RoleEligibilityScheduleRequests.GetTargetSchedule parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id 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 roleEligibilityScheduleRequests in roleManagement + operationId: roleManagement.directory_UpdateRoleEligibilityScheduleRequests parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' required: true responses: '204': @@ -13760,16 +16469,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property roleEligibilityRequests for roleManagement - operationId: roleManagement.directory_DeleteRoleEligibilityRequests + summary: Delete navigation property roleEligibilityScheduleRequests for roleManagement + operationId: roleManagement.directory_DeleteRoleEligibilityScheduleRequests parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -13781,20 +16490,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope': get: tags: - roleManagement.rbacApplication summary: Get appScope from roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_GetAppScope + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetAppScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -13831,20 +16541,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope/$ref': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref': get: tags: - roleManagement.rbacApplication summary: Get ref of appScope from roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_GetRefAppScope + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetRefAppScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest responses: '200': description: Retrieved navigation property link @@ -13859,15 +16570,16 @@ paths: tags: - roleManagement.rbacApplication summary: Update the ref of navigation property appScope in roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_SetRefAppScope + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_SetRefAppScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: description: New navigation property ref values content: @@ -13887,15 +16599,16 @@ paths: tags: - roleManagement.rbacApplication summary: Delete ref of navigation property appScope for roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_DeleteRefAppScope + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_DeleteRefAppScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -13907,20 +16620,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope': get: tags: - roleManagement.rbacApplication summary: Get directoryScope from roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_GetDirectoryScope + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetDirectoryScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -13956,20 +16670,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope/$ref': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref': get: tags: - roleManagement.rbacApplication summary: Get ref of directoryScope from roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_GetRefDirectoryScope + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetRefDirectoryScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest responses: '200': description: Retrieved navigation property link @@ -13984,15 +16699,16 @@ paths: tags: - roleManagement.rbacApplication summary: Update the ref of navigation property directoryScope in roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_SetRefDirectoryScope + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_SetRefDirectoryScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: description: New navigation property ref values content: @@ -14012,15 +16728,16 @@ paths: tags: - roleManagement.rbacApplication summary: Delete ref of navigation property directoryScope for roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_DeleteRefDirectoryScope + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_DeleteRefDirectoryScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -14032,40 +16749,41 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/microsoft.graph.cancel': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/microsoft.graph.cancel': post: tags: - roleManagement.Actions summary: Invoke action cancel - operationId: roleManagement.directory.roleEligibilityRequests_cancel + operationId: roleManagement.directory.roleEligibilityScheduleRequests_cancel parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest responses: '204': description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal': get: tags: - roleManagement.rbacApplication summary: Get principal from roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_GetPrincipal + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetPrincipal parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -14101,20 +16819,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal/$ref': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref': get: tags: - roleManagement.rbacApplication summary: Get ref of principal from roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_GetRefPrincipal + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetRefPrincipal parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest responses: '200': description: Retrieved navigation property link @@ -14129,15 +16848,16 @@ paths: tags: - roleManagement.rbacApplication summary: Update the ref of navigation property principal in roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_SetRefPrincipal + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_SetRefPrincipal parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: description: New navigation property ref values content: @@ -14157,15 +16877,16 @@ paths: tags: - roleManagement.rbacApplication summary: Delete ref of navigation property principal for roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_DeleteRefPrincipal + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.directory.roleEligibilityScheduleRequests_DeleteRefPrincipal parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -14177,20 +16898,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition': get: tags: - roleManagement.rbacApplication summary: Get roleDefinition from roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_GetRoleDefinition + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded + operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetRoleDefinition parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -14207,159 +16929,10 @@ paths: - 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.roleEligibilityRequests.RoleDefinition.ListInheritsPermissionsFrom - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition/$ref': - get: - tags: - - roleManagement.rbacApplication - summary: Get ref of roleDefinition from roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_GetRefRoleDefinition - 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 - links: - inheritsPermissionsFrom: - operationId: roleManagement.directory.roleEligibilityRequests.RoleDefinition.ListInheritsPermissionsFrom - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-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.roleEligibilityRequests_SetRefRoleDefinition - 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 roleDefinition for roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_DeleteRefRoleDefinition - 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}/targetSchedule': - get: - tags: - - roleManagement.rbacApplication - summary: Get targetSchedule from roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_GetTargetSchedule - parameters: - - name: unifiedRoleEligibilityRequest-id - in: path - description: 'key: id of unifiedRoleEligibilityRequest' - required: true - 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 - - appScopeId - - createdDateTime - - createdUsing - - directoryScopeId - - modifiedDateTime - - principalId - - roleDefinitionId - - status - - memberType - - scheduleInfo - - appScope - - directoryScope - - principal - - roleDefinition + - rolePermissions + - templateId + - version + - inheritsPermissionsFrom type: string - name: $expand in: query @@ -14372,10 +16945,7 @@ paths: items: enum: - '*' - - appScope - - directoryScope - - principal - - roleDefinition + - inheritsPermissionsFrom type: string responses: '200': @@ -14383,41 +16953,30 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' links: - appScope: - operationId: roleManagement.directory.roleEligibilityRequests.TargetSchedule.GetAppScope - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - directoryScope: - operationId: roleManagement.directory.roleEligibilityRequests.TargetSchedule.GetDirectoryScope - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - principal: - operationId: roleManagement.directory.roleEligibilityRequests.TargetSchedule.GetPrincipal - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - roleDefinition: - operationId: roleManagement.directory.roleEligibilityRequests.TargetSchedule.GetRoleDefinition + inheritsPermissionsFrom: + operationId: roleManagement.directory.roleEligibilityScheduleRequests.RoleDefinition.ListInheritsPermissionsFrom parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule/$ref': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of targetSchedule from roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_GetRefTargetSchedule + summary: Get ref of roleDefinition from roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded + operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetRefRoleDefinition parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest responses: '200': description: Retrieved navigation property link @@ -14426,38 +16985,27 @@ paths: schema: type: string links: - appScope: - operationId: roleManagement.directory.roleEligibilityRequests.TargetSchedule.GetAppScope - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - directoryScope: - operationId: roleManagement.directory.roleEligibilityRequests.TargetSchedule.GetDirectoryScope - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - principal: - operationId: roleManagement.directory.roleEligibilityRequests.TargetSchedule.GetPrincipal - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - roleDefinition: - operationId: roleManagement.directory.roleEligibilityRequests.TargetSchedule.GetRoleDefinition + inheritsPermissionsFrom: + operationId: roleManagement.directory.roleEligibilityScheduleRequests.RoleDefinition.ListInheritsPermissionsFrom parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-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.roleEligibilityRequests_SetRefTargetSchedule + summary: Update the ref of navigation property roleDefinition in roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded + operationId: roleManagement.directory.roleEligibilityScheduleRequests_SetRefRoleDefinition parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: description: New navigation property ref values content: @@ -14476,16 +17024,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property targetSchedule for roleManagement - operationId: roleManagement.directory.roleEligibilityRequests_DeleteRefTargetSchedule + summary: Delete ref of navigation property roleDefinition for roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded + operationId: roleManagement.directory.roleEligibilityScheduleRequests_DeleteRefRoleDefinition parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -14497,72 +17046,20 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityRequests/microsoft.graph.filterByCurrentUser(on={on})': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule': get: tags: - - roleManagement.Functions - summary: Invoke function filterByCurrentUser - operationId: roleManagement.directory.roleEligibilityRequests_filterByCurrentUser + - roleManagement.rbacApplication + summary: Get targetSchedule from roleManagement + operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetTargetSchedule parameters: - - name: on + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'Usage: on={on}' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: - $ref: '#/components/schemas/microsoft.graph.roleEligibilityRequestFilterByCurrentUserOptions' - responses: - '200': - description: Success - content: - application/json: - schema: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - /roleManagement/directory/roleEligibilityScheduleInstances: - get: - tags: - - roleManagement.rbacApplication - summary: Get roleEligibilityScheduleInstances from roleManagement - operationId: roleManagement.directory_ListRoleEligibilityScheduleInstances - 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 - - directoryScopeId - - directoryScopeId desc - - principalId - - principalId desc - - roleDefinitionId - - roleDefinitionId desc - - endDateTime - - endDateTime desc - - memberType - - memberType desc - - roleEligibilityScheduleId - - roleEligibilityScheduleId desc - - startDateTime - - startDateTime desc - type: string + type: string + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -14575,13 +17072,15 @@ paths: enum: - id - appScopeId + - createdDateTime + - createdUsing - directoryScopeId + - modifiedDateTime - principalId - roleDefinitionId - - endDateTime + - status - memberType - - roleEligibilityScheduleId - - startDateTime + - scheduleInfo - appScope - directoryScope - principal @@ -14609,145 +17108,89 @@ paths: 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' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' + links: + appScope: + operationId: roleManagement.directory.roleEligibilityScheduleRequests.TargetSchedule.GetAppScope + parameters: + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id + directoryScope: + operationId: roleManagement.directory.roleEligibilityScheduleRequests.TargetSchedule.GetDirectoryScope + parameters: + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id + principal: + operationId: roleManagement.directory.roleEligibilityScheduleRequests.TargetSchedule.GetPrincipal + parameters: + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id + roleDefinition: + operationId: roleManagement.directory.roleEligibilityScheduleRequests.TargetSchedule.GetRoleDefinition + parameters: + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}': + '/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref': get: tags: - roleManagement.rbacApplication - summary: Get roleEligibilityScheduleInstances from roleManagement - operationId: roleManagement.directory_GetRoleEligibilityScheduleInstances + summary: Get ref of targetSchedule from roleManagement + operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetRefTargetSchedule parameters: - - name: unifiedRoleEligibilityScheduleInstance-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityScheduleInstance' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' 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 + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest responses: '200': - description: Retrieved navigation property + description: Retrieved navigation property link content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' + type: string links: appScope: - operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetAppScope + operationId: roleManagement.directory.roleEligibilityScheduleRequests.TargetSchedule.GetAppScope parameters: - unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id directoryScope: - operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetDirectoryScope + operationId: roleManagement.directory.roleEligibilityScheduleRequests.TargetSchedule.GetDirectoryScope parameters: - unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id principal: - operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetPrincipal + operationId: roleManagement.directory.roleEligibilityScheduleRequests.TargetSchedule.GetPrincipal parameters: - unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id roleDefinition: - operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetRoleDefinition + operationId: roleManagement.directory.roleEligibilityScheduleRequests.TargetSchedule.GetRoleDefinition parameters: - unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - patch: + put: tags: - roleManagement.rbacApplication - summary: Update the navigation property roleEligibilityScheduleInstances in roleManagement - operationId: roleManagement.directory_UpdateRoleEligibilityScheduleInstances + summary: Update the ref of navigation property targetSchedule in roleManagement + operationId: roleManagement.directory.roleEligibilityScheduleRequests_SetRefTargetSchedule parameters: - - name: unifiedRoleEligibilityScheduleInstance-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityScheduleInstance' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: - description: New navigation property values + description: New navigation property ref values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' + type: object + additionalProperties: + type: object required: true responses: '204': @@ -14758,16 +17201,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property roleEligibilityScheduleInstances for roleManagement - operationId: roleManagement.directory_DeleteRoleEligibilityScheduleInstances + summary: Delete ref of navigation property targetSchedule for roleManagement + operationId: roleManagement.directory.roleEligibilityScheduleRequests_DeleteRefTargetSchedule parameters: - - name: unifiedRoleEligibilityScheduleInstance-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityScheduleInstance' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -14779,19 +17222,19 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/directory/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})': + '/roleManagement/directory/roleEligibilityScheduleRequests/microsoft.graph.filterByCurrentUser(on={on})': get: tags: - roleManagement.Functions summary: Invoke function filterByCurrentUser - operationId: roleManagement.directory.roleEligibilityScheduleInstances_filterByCurrentUser + operationId: roleManagement.directory.roleEligibilityScheduleRequests_filterByCurrentUser parameters: - name: on in: path description: 'Usage: on={on}' required: true schema: - $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleInstanceFilterByCurrentUserOptions' + $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleRequestFilterByCurrentUserOptions' responses: '200': description: Success @@ -14800,7 +17243,7 @@ paths: schema: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function @@ -15099,6 +17542,7 @@ paths: tags: - roleManagement.rbacApplication summary: Get entitlementManagement from roleManagement + description: The RbacApplication for Entitlement Management operationId: roleManagement_GetEntitlementManagement parameters: - name: $select @@ -15116,11 +17560,11 @@ paths: - roleAssignments - roleDefinitions - roleAssignmentApprovals - - roleAssignmentRequests - roleAssignmentScheduleInstances + - roleAssignmentScheduleRequests - roleAssignmentSchedules - - roleEligibilityRequests - roleEligibilityScheduleInstances + - roleEligibilityScheduleRequests - roleEligibilitySchedules type: string - name: $expand @@ -15138,11 +17582,11 @@ paths: - roleAssignments - roleDefinitions - roleAssignmentApprovals - - roleAssignmentRequests - roleAssignmentScheduleInstances + - roleAssignmentScheduleRequests - roleAssignmentSchedules - - roleEligibilityRequests - roleEligibilityScheduleInstances + - roleEligibilityScheduleRequests - roleEligibilitySchedules type: string responses: @@ -15161,16 +17605,16 @@ paths: operationId: roleManagement.EntitlementManagement.ListRoleDefinitions roleAssignmentApprovals: operationId: roleManagement.EntitlementManagement.ListRoleAssignmentApprovals - roleAssignmentRequests: - operationId: roleManagement.EntitlementManagement.ListRoleAssignmentRequests roleAssignmentScheduleInstances: operationId: roleManagement.EntitlementManagement.ListRoleAssignmentScheduleInstances + roleAssignmentScheduleRequests: + operationId: roleManagement.EntitlementManagement.ListRoleAssignmentScheduleRequests roleAssignmentSchedules: operationId: roleManagement.EntitlementManagement.ListRoleAssignmentSchedules - roleEligibilityRequests: - operationId: roleManagement.EntitlementManagement.ListRoleEligibilityRequests roleEligibilityScheduleInstances: operationId: roleManagement.EntitlementManagement.ListRoleEligibilityScheduleInstances + roleEligibilityScheduleRequests: + operationId: roleManagement.EntitlementManagement.ListRoleEligibilityScheduleRequests roleEligibilitySchedules: operationId: roleManagement.EntitlementManagement.ListRoleEligibilitySchedules default: @@ -15180,6 +17624,7 @@ paths: tags: - roleManagement.rbacApplication summary: Update the navigation property entitlementManagement in roleManagement + description: The RbacApplication for Entitlement Management operationId: roleManagement_UpdateEntitlementManagement requestBody: description: New navigation property values @@ -15198,6 +17643,7 @@ paths: tags: - roleManagement.rbacApplication summary: Delete navigation property entitlementManagement for roleManagement + description: The RbacApplication for Entitlement Management operationId: roleManagement_DeleteEntitlementManagement parameters: - name: If-Match @@ -16409,12 +18855,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function - /roleManagement/entitlementManagement/roleAssignmentRequests: + /roleManagement/entitlementManagement/roleAssignments: get: tags: - roleManagement.rbacApplication - summary: Get roleAssignmentRequests from roleManagement - operationId: roleManagement.entitlementManagement_ListRoleAssignmentRequests + summary: Get roleAssignments from roleManagement + operationId: roleManagement.entitlementManagement_ListRoleAssignments parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -16423,48 +18869,28 @@ paths: - $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 + 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 - - isValidationOnly - - isValidationOnly desc - - justification - - justification desc - principalId - principalId desc + - resourceScope + - resourceScope desc - roleDefinitionId - roleDefinitionId desc - - scheduleInfo - - scheduleInfo desc - - targetScheduleId - - targetScheduleId desc - - ticketInfo - - ticketInfo desc type: string - name: $select in: query @@ -16477,28 +18903,16 @@ paths: items: enum: - id - - approvalId - - completedDateTime - - createdBy - - createdDateTime - - customData - - status - - action - appScopeId + - condition - directoryScopeId - - isValidationOnly - - justification - principalId + - resourceScope - roleDefinitionId - - scheduleInfo - - targetScheduleId - - ticketInfo - - activatedUsing - appScope - directoryScope - principal - roleDefinition - - targetSchedule type: string - name: $expand in: query @@ -16511,12 +18925,10 @@ paths: items: enum: - '*' - - activatedUsing - appScope - directoryScope - principal - roleDefinition - - targetSchedule type: string responses: '200': @@ -16524,13 +18936,13 @@ paths: content: application/json: schema: - title: Collection of unifiedRoleAssignmentRequest + title: Collection of unifiedRoleAssignment type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' '@odata.nextLink': type: string additionalProperties: @@ -16544,14 +18956,14 @@ paths: post: tags: - roleManagement.rbacApplication - summary: Create new navigation property to roleAssignmentRequests for roleManagement - operationId: roleManagement.entitlementManagement_CreateRoleAssignmentRequests + summary: Create new navigation property to roleAssignments for roleManagement + operationId: roleManagement.entitlementManagement_CreateRoleAssignments requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' required: true responses: '201': @@ -16559,24 +18971,24 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}': + '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}': get: tags: - roleManagement.rbacApplication - summary: Get roleAssignmentRequests from roleManagement - operationId: roleManagement.entitlementManagement_GetRoleAssignmentRequests + summary: Get roleAssignments from roleManagement + operationId: roleManagement.entitlementManagement_GetRoleAssignments parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: $select in: query description: Select properties to be returned @@ -16588,28 +19000,16 @@ paths: items: enum: - id - - approvalId - - completedDateTime - - createdBy - - createdDateTime - - customData - - status - - action - appScopeId + - condition - directoryScopeId - - isValidationOnly - - justification - principalId + - resourceScope - roleDefinitionId - - scheduleInfo - - targetScheduleId - - ticketInfo - - activatedUsing - appScope - directoryScope - principal - roleDefinition - - targetSchedule type: string - name: $expand in: query @@ -16622,12 +19022,10 @@ paths: items: enum: - '*' - - activatedUsing - appScope - directoryScope - principal - roleDefinition - - targetSchedule type: string responses: '200': @@ -16635,54 +19033,46 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' links: - activatedUsing: - operationId: roleManagement.entitlementManagement.RoleAssignmentRequests.GetActivatedUsing - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id appScope: - operationId: roleManagement.entitlementManagement.RoleAssignmentRequests.GetAppScope + operationId: roleManagement.entitlementManagement.RoleAssignments.GetAppScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id directoryScope: - operationId: roleManagement.entitlementManagement.RoleAssignmentRequests.GetDirectoryScope + operationId: roleManagement.entitlementManagement.RoleAssignments.GetDirectoryScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id principal: - operationId: roleManagement.entitlementManagement.RoleAssignmentRequests.GetPrincipal + operationId: roleManagement.entitlementManagement.RoleAssignments.GetPrincipal parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id roleDefinition: - operationId: roleManagement.entitlementManagement.RoleAssignmentRequests.GetRoleDefinition - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - targetSchedule: - operationId: roleManagement.entitlementManagement.RoleAssignmentRequests.GetTargetSchedule + operationId: roleManagement.entitlementManagement.RoleAssignments.GetRoleDefinition parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + 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 roleAssignmentRequests in roleManagement - operationId: roleManagement.entitlementManagement_UpdateRoleAssignmentRequests + summary: Update the navigation property roleAssignments in roleManagement + operationId: roleManagement.entitlementManagement_UpdateRoleAssignments parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' required: true responses: '204': @@ -16693,16 +19083,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property roleAssignmentRequests for roleManagement - operationId: roleManagement.entitlementManagement_DeleteRoleAssignmentRequests + summary: Delete navigation property roleAssignments for roleManagement + operationId: roleManagement.entitlementManagement_DeleteRoleAssignments parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag @@ -16714,20 +19104,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing': + '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope': get: tags: - roleManagement.rbacApplication - summary: Get activatedUsing from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_GetActivatedUsing + summary: Get appScope from roleManagement + description: Details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.entitlementManagement.roleAssignments_GetAppScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: $select in: query description: Select properties to be returned @@ -16739,20 +19130,8 @@ paths: items: enum: - id - - appScopeId - - createdDateTime - - createdUsing - - directoryScopeId - - modifiedDateTime - - principalId - - roleDefinitionId - - status - - memberType - - scheduleInfo - - appScope - - directoryScope - - principal - - roleDefinition + - displayName + - type type: string - name: $expand in: query @@ -16765,10 +19144,6 @@ paths: items: enum: - '*' - - appScope - - directoryScope - - principal - - roleDefinition type: string responses: '200': @@ -16776,89 +19151,30 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' - links: - appScope: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.ActivatedUsing.GetAppScope - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - directoryScope: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.ActivatedUsing.GetDirectoryScope - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - principal: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.ActivatedUsing.GetPrincipal - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - roleDefinition: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.ActivatedUsing.GetRoleDefinition - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing/$ref': - get: - tags: - - roleManagement.rbacApplication - summary: Get ref of activatedUsing from roleManagement - operationId: roleManagement.entitlementManagement.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.entitlementManagement.roleAssignmentRequests.ActivatedUsing.GetAppScope - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - directoryScope: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.ActivatedUsing.GetDirectoryScope - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - principal: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.ActivatedUsing.GetPrincipal - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - roleDefinition: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.ActivatedUsing.GetRoleDefinition - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-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 activatedUsing in roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_SetRefActivatedUsing + summary: Update the navigation property appScope in roleManagement + description: Details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.entitlementManagement.roleAssignments_UpdateAppScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + 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': @@ -16869,16 +19185,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property activatedUsing for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_DeleteRefActivatedUsing + summary: Delete navigation property appScope for roleManagement + description: Details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.entitlementManagement.roleAssignments_DeleteAppScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag @@ -16890,20 +19207,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope': + '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope': get: tags: - roleManagement.rbacApplication - summary: Get appScope from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_GetAppScope + summary: Get directoryScope from roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_GetDirectoryScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: $select in: query description: Select properties to be returned @@ -16915,8 +19233,7 @@ paths: items: enum: - id - - displayName - - type + - deletedDateTime type: string - name: $expand in: query @@ -16936,24 +19253,25 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.appScope' + $ref: '#/components/schemas/microsoft.graph.directoryObject' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope/$ref': + '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of appScope from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_GetRefAppScope + summary: Get ref of directoryScope from roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_GetRefDirectoryScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment responses: '200': description: Retrieved navigation property link @@ -16967,16 +19285,17 @@ paths: put: tags: - roleManagement.rbacApplication - summary: Update the ref of navigation property appScope in roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_SetRefAppScope + summary: Update the ref of navigation property directoryScope in roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_SetRefDirectoryScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment requestBody: description: New navigation property ref values content: @@ -16995,16 +19314,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property appScope for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_DeleteRefAppScope + summary: Delete ref of navigation property directoryScope for roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_DeleteRefDirectoryScope parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag @@ -17016,20 +19336,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope': + '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal': get: tags: - roleManagement.rbacApplication - summary: Get directoryScope from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_GetDirectoryScope + summary: Get principal from roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_GetPrincipal parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: $select in: query description: Select properties to be returned @@ -17065,20 +19386,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope/$ref': + '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of directoryScope from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_GetRefDirectoryScope + summary: Get ref of principal from roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_GetRefPrincipal parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment responses: '200': description: Retrieved navigation property link @@ -17092,16 +19414,17 @@ paths: put: tags: - roleManagement.rbacApplication - summary: Update the ref of navigation property directoryScope in roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_SetRefDirectoryScope + summary: Update the ref of navigation property principal in roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_SetRefPrincipal parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment requestBody: description: New navigation property ref values content: @@ -17120,61 +19443,43 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property directoryScope for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_DeleteRefDirectoryScope + summary: Delete ref of navigation property principal for roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_DeleteRefPrincipal parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + 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/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/microsoft.graph.cancel': - post: - tags: - - roleManagement.Actions - summary: Invoke action cancel - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_cancel - parameters: - - name: unifiedRoleAssignmentRequest-id - in: path - description: 'key: id of unifiedRoleAssignmentRequest' - required: true + in: header + description: ETag 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/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal': + x-ms-docs-operation-type: operation + '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition': get: tags: - roleManagement.rbacApplication - summary: Get principal from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_GetPrincipal + summary: Get roleDefinition from roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_GetRoleDefinition parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: $select in: query description: Select properties to be returned @@ -17186,7 +19491,15 @@ paths: items: enum: - id - - deletedDateTime + - description + - displayName + - isBuiltIn + - isEnabled + - resourceScopes + - rolePermissions + - templateId + - version + - inheritsPermissionsFrom type: string - name: $expand in: query @@ -17199,6 +19512,7 @@ paths: items: enum: - '*' + - inheritsPermissionsFrom type: string responses: '200': @@ -17206,24 +19520,30 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.directoryObject' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + links: + inheritsPermissionsFrom: + operationId: roleManagement.entitlementManagement.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom + parameters: + unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal/$ref': + '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of principal from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_GetRefPrincipal + summary: Get ref of roleDefinition from roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_GetRefRoleDefinition parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment responses: '200': description: Retrieved navigation property link @@ -17231,22 +19551,28 @@ paths: application/json: schema: type: string + links: + inheritsPermissionsFrom: + operationId: roleManagement.entitlementManagement.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 principal in roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_SetRefPrincipal + summary: Update the ref of navigation property roleDefinition in roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_SetRefRoleDefinition parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment requestBody: description: New navigation property ref values content: @@ -17265,16 +19591,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property principal for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_DeleteRefPrincipal + summary: Delete ref of navigation property roleDefinition for roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. + operationId: roleManagement.entitlementManagement.roleAssignments_DeleteRefRoleDefinition parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignment-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignment' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag @@ -17286,20 +19613,51 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition': + /roleManagement/entitlementManagement/roleAssignmentScheduleInstances: get: tags: - roleManagement.rbacApplication - summary: Get roleDefinition from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_GetRoleDefinition + summary: Get roleAssignmentScheduleInstances from roleManagement + operationId: roleManagement.entitlementManagement_ListRoleAssignmentScheduleInstances parameters: - - name: unifiedRoleAssignmentRequest-id - in: path - description: 'key: id of unifiedRoleAssignmentRequest' - required: true + - $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: - type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + 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 - name: $select in: query description: Select properties to be returned @@ -17311,15 +19669,21 @@ paths: items: enum: - id - - description - - displayName - - isBuiltIn - - isEnabled - - resourceScopes - - rolePermissions - - templateId - - version - - inheritsPermissionsFrom + - appScopeId + - directoryScopeId + - principalId + - roleDefinitionId + - assignmentType + - endDateTime + - memberType + - roleAssignmentOriginId + - roleAssignmentScheduleId + - startDateTime + - appScope + - directoryScope + - principal + - roleDefinition + - activatedUsing type: string - name: $expand in: query @@ -17332,7 +19696,11 @@ paths: items: enum: - '*' - - inheritsPermissionsFrom + - appScope + - directoryScope + - principal + - roleDefinition + - activatedUsing type: string responses: '200': @@ -17340,65 +19708,153 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' - links: - inheritsPermissionsFrom: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.RoleDefinition.ListInheritsPermissionsFrom - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + 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.entitlementManagement_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' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition/$ref': + '/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}': get: tags: - roleManagement.rbacApplication - summary: Get ref of roleDefinition from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_GetRefRoleDefinition + summary: Get roleAssignmentScheduleInstances from roleManagement + operationId: roleManagement.entitlementManagement_GetRoleAssignmentScheduleInstances parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + 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 responses: '200': - description: Retrieved navigation property link + description: Retrieved navigation property content: application/json: schema: - type: string + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' links: - inheritsPermissionsFrom: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.RoleDefinition.ListInheritsPermissionsFrom + appScope: + operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleInstances.GetAppScope + parameters: + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + directoryScope: + operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleInstances.GetDirectoryScope + parameters: + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + principal: + operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleInstances.GetPrincipal + parameters: + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + roleDefinition: + operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleInstances.GetRoleDefinition + parameters: + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + activatedUsing: + operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleInstances.GetActivatedUsing parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id 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.entitlementManagement.roleAssignmentRequests_SetRefRoleDefinition + summary: Update the navigation property roleAssignmentScheduleInstances in roleManagement + operationId: roleManagement.entitlementManagement_UpdateRoleAssignmentScheduleInstances parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance requestBody: - description: New navigation property ref values + description: New navigation property values content: application/json: - schema: - type: object - additionalProperties: - type: object + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' required: true responses: '204': @@ -17409,16 +19865,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property roleDefinition for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_DeleteRefRoleDefinition + summary: Delete navigation property roleAssignmentScheduleInstances for roleManagement + operationId: roleManagement.entitlementManagement_DeleteRoleAssignmentScheduleInstances parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance - name: If-Match in: header description: ETag @@ -17430,20 +19886,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule': + '/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing': get: tags: - roleManagement.rbacApplication - summary: Get targetSchedule from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_GetTargetSchedule + summary: Get activatedUsing from roleManagement + description: 'If the roleAssignmentScheduleInstance is activated by a roleEligibilityScheduleRequest, this is the link to the related schedule instance.' + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances_GetActivatedUsing parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance - name: $select in: query description: Select properties to be returned @@ -17456,21 +19913,17 @@ paths: enum: - id - appScopeId - - createdDateTime - - createdUsing - directoryScopeId - - modifiedDateTime - principalId - roleDefinitionId - - status - - assignmentType + - endDateTime - memberType - - scheduleInfo + - roleEligibilityScheduleId + - startDateTime - appScope - directoryScope - principal - roleDefinition - - activatedUsing type: string - name: $expand in: query @@ -17487,7 +19940,6 @@ paths: - directoryScope - principal - roleDefinition - - activatedUsing type: string responses: '200': @@ -17495,45 +19947,42 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' links: appScope: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.TargetSchedule.GetAppScope + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id directoryScope: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.TargetSchedule.GetDirectoryScope + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id principal: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.TargetSchedule.GetPrincipal + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id roleDefinition: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.TargetSchedule.GetRoleDefinition - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - activatedUsing: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.TargetSchedule.GetActivatedUsing + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule/$ref': + '/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of targetSchedule from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_GetRefTargetSchedule + summary: Get ref of activatedUsing from roleManagement + description: 'If the roleAssignmentScheduleInstance is activated by a roleEligibilityScheduleRequest, this is the link to the related schedule instance.' + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances_GetRefActivatedUsing parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance responses: '200': description: Retrieved navigation property link @@ -17543,41 +19992,38 @@ paths: type: string links: appScope: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.TargetSchedule.GetAppScope + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id directoryScope: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.TargetSchedule.GetDirectoryScope + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id principal: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.TargetSchedule.GetPrincipal + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id roleDefinition: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.TargetSchedule.GetRoleDefinition - parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id - activatedUsing: - operationId: roleManagement.entitlementManagement.roleAssignmentRequests.TargetSchedule.GetActivatedUsing + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition parameters: - unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id + 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 targetSchedule in roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_SetRefTargetSchedule + summary: Update the ref of navigation property activatedUsing in roleManagement + description: 'If the roleAssignmentScheduleInstance is activated by a roleEligibilityScheduleRequest, this is the link to the related schedule instance.' + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances_SetRefActivatedUsing parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance requestBody: description: New navigation property ref values content: @@ -17596,16 +20042,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property targetSchedule for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_DeleteRefTargetSchedule + summary: Delete ref of navigation property activatedUsing for roleManagement + description: 'If the roleAssignmentScheduleInstance is activated by a roleEligibilityScheduleRequest, this is the link to the related schedule instance.' + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances_DeleteRefActivatedUsing parameters: - - name: unifiedRoleAssignmentRequest-id + - name: unifiedRoleAssignmentScheduleInstance-id in: path - description: 'key: id of unifiedRoleAssignmentRequest' + description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentRequest + x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance - name: If-Match in: header description: ETag @@ -17617,19 +20064,19 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})': + '/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})': get: tags: - roleManagement.Functions summary: Invoke function filterByCurrentUser - operationId: roleManagement.entitlementManagement.roleAssignmentRequests_filterByCurrentUser + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances_filterByCurrentUser parameters: - name: on in: path description: 'Usage: on={on}' required: true schema: - $ref: '#/components/schemas/microsoft.graph.roleAssignmentRequestFilterByCurrentUserOptions' + $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleInstanceFilterByCurrentUserOptions' responses: '200': description: Success @@ -17638,16 +20085,16 @@ paths: schema: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function - /roleManagement/entitlementManagement/roleAssignments: + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests: get: tags: - roleManagement.rbacApplication - summary: Get roleAssignments from roleManagement - operationId: roleManagement.entitlementManagement_ListRoleAssignments + summary: Get roleAssignmentScheduleRequests from roleManagement + operationId: roleManagement.entitlementManagement_ListRoleAssignmentScheduleRequests parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -17666,18 +20113,38 @@ 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 - - condition - - condition desc - directoryScopeId - directoryScopeId desc + - isValidationOnly + - isValidationOnly desc + - justification + - justification desc - principalId - principalId desc - - resourceScope - - resourceScope desc - roleDefinitionId - roleDefinitionId desc + - scheduleInfo + - scheduleInfo desc + - targetScheduleId + - targetScheduleId desc + - ticketInfo + - ticketInfo desc type: string - name: $select in: query @@ -17690,16 +20157,28 @@ paths: items: enum: - id + - approvalId + - completedDateTime + - createdBy + - createdDateTime + - customData + - status + - action - appScopeId - - condition - directoryScopeId + - isValidationOnly + - justification - principalId - - resourceScope - roleDefinitionId + - scheduleInfo + - targetScheduleId + - ticketInfo + - activatedUsing - appScope - directoryScope - principal - roleDefinition + - targetSchedule type: string - name: $expand in: query @@ -17712,10 +20191,12 @@ paths: items: enum: - '*' + - activatedUsing - appScope - directoryScope - principal - roleDefinition + - targetSchedule type: string responses: '200': @@ -17723,13 +20204,13 @@ paths: content: application/json: schema: - title: Collection of unifiedRoleAssignment + title: Collection of unifiedRoleAssignmentScheduleRequest type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' '@odata.nextLink': type: string additionalProperties: @@ -17743,168 +20224,39 @@ paths: post: tags: - roleManagement.rbacApplication - summary: Create new navigation property to roleAssignments for roleManagement - operationId: roleManagement.entitlementManagement_CreateRoleAssignments + summary: Create new navigation property to roleAssignmentScheduleRequests for roleManagement + operationId: roleManagement.entitlementManagement_CreateRoleAssignmentScheduleRequests requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' required: true responses: '201': description: Created navigation property. content: application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}': - get: - tags: - - roleManagement.rbacApplication - summary: Get roleAssignments from roleManagement - operationId: roleManagement.entitlementManagement_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.entitlementManagement.RoleAssignments.GetAppScope - parameters: - unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id - directoryScope: - operationId: roleManagement.entitlementManagement.RoleAssignments.GetDirectoryScope - parameters: - unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id - principal: - operationId: roleManagement.entitlementManagement.RoleAssignments.GetPrincipal - parameters: - unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id - roleDefinition: - operationId: roleManagement.entitlementManagement.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.entitlementManagement_UpdateRoleAssignments - 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 values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' - 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 roleAssignments for roleManagement - operationId: roleManagement.entitlementManagement_DeleteRoleAssignments - 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 + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope': + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}': get: tags: - roleManagement.rbacApplication - summary: Get appScope from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_GetAppScope + summary: Get roleAssignmentScheduleRequests from roleManagement + operationId: roleManagement.entitlementManagement_GetRoleAssignmentScheduleRequests parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -17916,8 +20268,28 @@ paths: items: enum: - id - - displayName - - type + - 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 @@ -17930,6 +20302,12 @@ paths: items: enum: - '*' + - activatedUsing + - appScope + - directoryScope + - principal + - roleDefinition + - targetSchedule type: string responses: '200': @@ -17937,29 +20315,54 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.appScope' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' + links: + activatedUsing: + operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleRequests.GetActivatedUsing + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + appScope: + operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleRequests.GetAppScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + directoryScope: + operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleRequests.GetDirectoryScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + principal: + operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleRequests.GetPrincipal + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + roleDefinition: + operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleRequests.GetRoleDefinition + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + targetSchedule: + operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleRequests.GetTargetSchedule + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - roleManagement.rbacApplication - summary: Update the navigation property appScope in roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_UpdateAppScope + summary: Update the navigation property roleAssignmentScheduleRequests in roleManagement + operationId: roleManagement.entitlementManagement_UpdateRoleAssignmentScheduleRequests parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.appScope' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' required: true responses: '204': @@ -17970,16 +20373,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property appScope for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_DeleteAppScope + summary: Delete navigation property roleAssignmentScheduleRequests for roleManagement + operationId: roleManagement.entitlementManagement_DeleteRoleAssignmentScheduleRequests parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -17991,20 +20394,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope': + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing': get: tags: - roleManagement.rbacApplication - summary: Get directoryScope from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_GetDirectoryScope + summary: Get activatedUsing from roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation.' + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetActivatedUsing parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -18016,7 +20420,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 @@ -18029,6 +20446,10 @@ paths: items: enum: - '*' + - appScope + - directoryScope + - principal + - roleDefinition type: string responses: '200': @@ -18036,24 +20457,42 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.directoryObject' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' + links: + appScope: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.ActivatedUsing.GetAppScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + directoryScope: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.ActivatedUsing.GetDirectoryScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + principal: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.ActivatedUsing.GetPrincipal + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + roleDefinition: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.ActivatedUsing.GetRoleDefinition + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref': + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of directoryScope from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_GetRefDirectoryScope + summary: Get ref of activatedUsing from roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation.' + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetRefActivatedUsing parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest responses: '200': description: Retrieved navigation property link @@ -18061,22 +20500,40 @@ paths: application/json: schema: type: string + links: + appScope: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.ActivatedUsing.GetAppScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + directoryScope: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.ActivatedUsing.GetDirectoryScope + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + principal: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.ActivatedUsing.GetPrincipal + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + roleDefinition: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.ActivatedUsing.GetRoleDefinition + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-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.entitlementManagement.roleAssignments_SetRefDirectoryScope + summary: Update the ref of navigation property activatedUsing in roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation.' + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_SetRefActivatedUsing parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: description: New navigation property ref values content: @@ -18095,16 +20552,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property directoryScope for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_DeleteRefDirectoryScope + summary: Delete ref of navigation property activatedUsing for roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation.' + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_DeleteRefActivatedUsing parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -18116,20 +20574,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal': + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope': get: tags: - roleManagement.rbacApplication - summary: Get principal from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_GetPrincipal + summary: Get appScope from roleManagement + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetAppScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -18141,7 +20600,8 @@ paths: items: enum: - id - - deletedDateTime + - displayName + - type type: string - name: $expand in: query @@ -18161,24 +20621,25 @@ 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/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref': + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of principal from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_GetRefPrincipal + summary: Get ref of appScope from roleManagement + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetRefAppScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest responses: '200': description: Retrieved navigation property link @@ -18192,16 +20653,17 @@ paths: put: tags: - roleManagement.rbacApplication - summary: Update the ref of navigation property principal in roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_SetRefPrincipal + summary: Update the ref of navigation property appScope in roleManagement + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_SetRefAppScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: description: New navigation property ref values content: @@ -18220,16 +20682,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property principal for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_DeleteRefPrincipal + summary: Delete ref of navigation property appScope for roleManagement + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_DeleteRefAppScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -18241,20 +20704,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition': + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope': get: tags: - roleManagement.rbacApplication - summary: Get roleDefinition from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_GetRoleDefinition + summary: Get directoryScope from roleManagement + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetDirectoryScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -18266,15 +20730,7 @@ paths: items: enum: - id - - description - - displayName - - isBuiltIn - - isEnabled - - resourceScopes - - rolePermissions - - templateId - - version - - inheritsPermissionsFrom + - deletedDateTime type: string - name: $expand in: query @@ -18287,7 +20743,6 @@ paths: items: enum: - '*' - - inheritsPermissionsFrom type: string responses: '200': @@ -18295,29 +20750,25 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' - links: - inheritsPermissionsFrom: - operationId: roleManagement.entitlementManagement.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom - parameters: - unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id + $ref: '#/components/schemas/microsoft.graph.directoryObject' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref': + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of roleDefinition from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_GetRefRoleDefinition + summary: Get ref of directoryScope from roleManagement + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetRefDirectoryScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest responses: '200': description: Retrieved navigation property link @@ -18325,27 +20776,23 @@ paths: application/json: schema: type: string - links: - inheritsPermissionsFrom: - operationId: roleManagement.entitlementManagement.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.entitlementManagement.roleAssignments_SetRefRoleDefinition + summary: Update the ref of navigation property directoryScope in roleManagement + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_SetRefDirectoryScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: description: New navigation property ref values content: @@ -18364,16 +20811,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property roleDefinition for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignments_DeleteRefRoleDefinition + summary: Delete ref of navigation property directoryScope for roleManagement + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_DeleteRefDirectoryScope parameters: - - name: unifiedRoleAssignment-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignment' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignment + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -18385,51 +20833,41 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /roleManagement/entitlementManagement/roleAssignmentScheduleInstances: - get: + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/microsoft.graph.cancel': + post: tags: - - roleManagement.rbacApplication - summary: Get roleAssignmentScheduleInstances from roleManagement - operationId: roleManagement.entitlementManagement_ListRoleAssignmentScheduleInstances + - roleManagement.Actions + summary: Invoke action cancel + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_cancel 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: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + 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: unifiedRoleAssignmentScheduleRequest + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal': + get: + tags: + - roleManagement.rbacApplication + summary: Get principal from roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetPrincipal + parameters: + - name: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -18441,21 +20879,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 @@ -18468,11 +20892,6 @@ paths: items: enum: - '*' - - appScope - - directoryScope - - principal - - roleDefinition - - activatedUsing type: string responses: '200': @@ -18480,59 +20899,104 @@ 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 + $ref: '#/components/schemas/microsoft.graph.directoryObject' default: $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore x-ms-docs-operation-type: operation - post: + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref': + get: tags: - roleManagement.rbacApplication - summary: Create new navigation property to roleAssignmentScheduleInstances for roleManagement - operationId: roleManagement.entitlementManagement_CreateRoleAssignmentScheduleInstances + summary: Get ref of principal from roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetRefPrincipal + parameters: + - name: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest + 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 principal in roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_SetRefPrincipal + parameters: + - name: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: - description: New navigation property + description: New navigation property ref values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' + type: object + additionalProperties: + type: object required: true responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' + '204': + description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}': + delete: + tags: + - roleManagement.rbacApplication + summary: Delete ref of navigation property principal for roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_DeleteRefPrincipal + parameters: + - name: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest + - 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/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition': get: tags: - roleManagement.rbacApplication - summary: Get roleAssignmentScheduleInstances from roleManagement - operationId: roleManagement.entitlementManagement_GetRoleAssignmentScheduleInstances + summary: Get roleDefinition from roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetRoleDefinition parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -18544,21 +21008,15 @@ paths: items: enum: - id - - appScopeId - - directoryScopeId - - principalId - - roleDefinitionId - - assignmentType - - endDateTime - - memberType - - roleAssignmentOriginId - - roleAssignmentScheduleId - - startDateTime - - appScope - - directoryScope - - principal - - roleDefinition - - activatedUsing + - description + - displayName + - isBuiltIn + - isEnabled + - resourceScopes + - rolePermissions + - templateId + - version + - inheritsPermissionsFrom type: string - name: $expand in: query @@ -18571,11 +21029,7 @@ paths: items: enum: - '*' - - appScope - - directoryScope - - principal - - roleDefinition - - activatedUsing + - inheritsPermissionsFrom type: string responses: '200': @@ -18583,50 +21037,67 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' links: - appScope: - operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleInstances.GetAppScope - parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id - directoryScope: - operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleInstances.GetDirectoryScope - parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id - principal: - operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleInstances.GetPrincipal - parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id - roleDefinition: - operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleInstances.GetRoleDefinition + inheritsPermissionsFrom: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.RoleDefinition.ListInheritsPermissionsFrom parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id - activatedUsing: - operationId: roleManagement.entitlementManagement.RoleAssignmentScheduleInstances.GetActivatedUsing + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref': + get: + tags: + - roleManagement.rbacApplication + summary: Get ref of roleDefinition from roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetRefRoleDefinition + parameters: + - name: unifiedRoleAssignmentScheduleRequest-id + in: path + description: 'key: id of unifiedRoleAssignmentScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest + responses: + '200': + description: Retrieved navigation property link + content: + application/json: + schema: + type: string + links: + inheritsPermissionsFrom: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.RoleDefinition.ListInheritsPermissionsFrom parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id 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.entitlementManagement_UpdateRoleAssignmentScheduleInstances + summary: Update the ref of navigation property roleDefinition in roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_SetRefRoleDefinition parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest 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': @@ -18637,16 +21108,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property roleAssignmentScheduleInstances for roleManagement - operationId: roleManagement.entitlementManagement_DeleteRoleAssignmentScheduleInstances + summary: Delete ref of navigation property roleDefinition for roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded. + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_DeleteRefRoleDefinition parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -18658,20 +21130,20 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing': + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule': get: tags: - roleManagement.rbacApplication - summary: Get activatedUsing from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances_GetActivatedUsing + summary: Get targetSchedule from roleManagement + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetTargetSchedule parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: $select in: query description: Select properties to be returned @@ -18684,17 +21156,21 @@ paths: enum: - id - appScopeId + - createdDateTime + - createdUsing - directoryScopeId + - modifiedDateTime - principalId - roleDefinitionId - - endDateTime + - status + - assignmentType - memberType - - roleEligibilityScheduleId - - startDateTime + - scheduleInfo - appScope - directoryScope - principal - roleDefinition + - activatedUsing type: string - name: $expand in: query @@ -18711,6 +21187,7 @@ paths: - directoryScope - principal - roleDefinition + - activatedUsing type: string responses: '200': @@ -18718,41 +21195,45 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule' links: appScope: - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.TargetSchedule.GetAppScope parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id directoryScope: - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.TargetSchedule.GetDirectoryScope parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id principal: - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.TargetSchedule.GetPrincipal parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id roleDefinition: - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.TargetSchedule.GetRoleDefinition parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + activatedUsing: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.TargetSchedule.GetActivatedUsing + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref': + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of activatedUsing from roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances_GetRefActivatedUsing + summary: Get ref of targetSchedule from roleManagement + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetRefTargetSchedule parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest responses: '200': description: Retrieved navigation property link @@ -18762,37 +21243,41 @@ paths: type: string links: appScope: - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.TargetSchedule.GetAppScope parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id directoryScope: - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.TargetSchedule.GetDirectoryScope parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id principal: - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.TargetSchedule.GetPrincipal parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id roleDefinition: - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.TargetSchedule.GetRoleDefinition parameters: - unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-id + activatedUsing: + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests.TargetSchedule.GetActivatedUsing + parameters: + unifiedRoleAssignmentScheduleRequest-id: $request.path.unifiedRoleAssignmentScheduleRequest-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.entitlementManagement.roleAssignmentScheduleInstances_SetRefActivatedUsing + summary: Update the ref of navigation property targetSchedule in roleManagement + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_SetRefTargetSchedule parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest requestBody: description: New navigation property ref values content: @@ -18811,16 +21296,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property activatedUsing for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances_DeleteRefActivatedUsing + summary: Delete ref of navigation property targetSchedule for roleManagement + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_DeleteRefTargetSchedule parameters: - - name: unifiedRoleAssignmentScheduleInstance-id + - name: unifiedRoleAssignmentScheduleRequest-id in: path - description: 'key: id of unifiedRoleAssignmentScheduleInstance' + description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance + x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag @@ -18832,19 +21317,19 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})': + '/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/microsoft.graph.filterByCurrentUser(on={on})': get: tags: - roleManagement.Functions summary: Invoke function filterByCurrentUser - operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances_filterByCurrentUser + operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_filterByCurrentUser parameters: - name: on in: path description: 'Usage: on={on}' required: true schema: - $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleInstanceFilterByCurrentUserOptions' + $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleRequestFilterByCurrentUserOptions' responses: '200': description: Success @@ -18853,7 +21338,7 @@ paths: schema: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function @@ -19139,6 +21624,7 @@ paths: tags: - roleManagement.rbacApplication summary: Get activatedUsing from roleManagement + description: 'If the roleAssignmentSchedule is activated by a roleEligibilitySchedule, this is the link to that schedule.' operationId: roleManagement.entitlementManagement.roleAssignmentSchedules_GetActivatedUsing parameters: - name: unifiedRoleAssignmentSchedule-id @@ -19222,6 +21708,7 @@ paths: tags: - roleManagement.rbacApplication summary: Get ref of activatedUsing from roleManagement + description: 'If the roleAssignmentSchedule is activated by a roleEligibilitySchedule, this is the link to that schedule.' operationId: roleManagement.entitlementManagement.roleAssignmentSchedules_GetRefActivatedUsing parameters: - name: unifiedRoleAssignmentSchedule-id @@ -19230,55 +21717,315 @@ paths: required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentSchedule + x-ms-docs-key-type: unifiedRoleAssignmentSchedule + responses: + '200': + description: Retrieved navigation property link + content: + application/json: + schema: + type: string + links: + appScope: + operationId: roleManagement.entitlementManagement.roleAssignmentSchedules.ActivatedUsing.GetAppScope + parameters: + unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id + directoryScope: + operationId: roleManagement.entitlementManagement.roleAssignmentSchedules.ActivatedUsing.GetDirectoryScope + parameters: + unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id + principal: + operationId: roleManagement.entitlementManagement.roleAssignmentSchedules.ActivatedUsing.GetPrincipal + parameters: + unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id + roleDefinition: + operationId: roleManagement.entitlementManagement.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 + description: 'If the roleAssignmentSchedule is activated by a roleEligibilitySchedule, this is the link to that schedule.' + operationId: roleManagement.entitlementManagement.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 + description: 'If the roleAssignmentSchedule is activated by a roleEligibilitySchedule, this is the link to that schedule.' + operationId: roleManagement.entitlementManagement.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/entitlementManagement/roleAssignmentSchedules/microsoft.graph.filterByCurrentUser(on={on})': + get: + tags: + - roleManagement.Functions + summary: Invoke function filterByCurrentUser + operationId: roleManagement.entitlementManagement.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/entitlementManagement/roleDefinitions: + get: + tags: + - roleManagement.rbacApplication + summary: Get roleDefinitions from roleManagement + operationId: roleManagement.entitlementManagement_ListRoleDefinitions + 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 + - isBuiltIn + - isBuiltIn desc + - isEnabled + - isEnabled desc + - resourceScopes + - resourceScopes desc + - rolePermissions + - rolePermissions desc + - templateId + - templateId desc + - version + - version 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 + - 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: + title: Collection of unifiedRoleDefinition + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + '@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 roleDefinitions for roleManagement + operationId: roleManagement.entitlementManagement_CreateRoleDefinitions + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}': + get: + tags: + - roleManagement.rbacApplication + summary: Get roleDefinitions from roleManagement + operationId: roleManagement.entitlementManagement_GetRoleDefinitions + parameters: + - name: unifiedRoleDefinition-id + 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 + 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 link + description: Retrieved navigation property content: application/json: schema: - type: string + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' links: - appScope: - operationId: roleManagement.entitlementManagement.roleAssignmentSchedules.ActivatedUsing.GetAppScope - parameters: - unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id - directoryScope: - operationId: roleManagement.entitlementManagement.roleAssignmentSchedules.ActivatedUsing.GetDirectoryScope - parameters: - unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id - principal: - operationId: roleManagement.entitlementManagement.roleAssignmentSchedules.ActivatedUsing.GetPrincipal - parameters: - unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id - roleDefinition: - operationId: roleManagement.entitlementManagement.roleAssignmentSchedules.ActivatedUsing.GetRoleDefinition + inheritsPermissionsFrom: + operationId: roleManagement.entitlementManagement.RoleDefinitions.ListInheritsPermissionsFrom parameters: - unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id + unifiedRoleDefinition-id: $request.path.unifiedRoleDefinition-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - put: + patch: tags: - roleManagement.rbacApplication - summary: Update the ref of navigation property activatedUsing in roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentSchedules_SetRefActivatedUsing + summary: Update the navigation property roleDefinitions in roleManagement + operationId: roleManagement.entitlementManagement_UpdateRoleDefinitions parameters: - - name: unifiedRoleAssignmentSchedule-id + - name: unifiedRoleDefinition-id in: path - description: 'key: id of unifiedRoleAssignmentSchedule' + description: 'key: id of unifiedRoleDefinition' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentSchedule + x-ms-docs-key-type: unifiedRoleDefinition 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.unifiedRoleDefinition' required: true responses: '204': @@ -19289,16 +22036,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property activatedUsing for roleManagement - operationId: roleManagement.entitlementManagement.roleAssignmentSchedules_DeleteRefActivatedUsing + summary: Delete navigation property roleDefinitions for roleManagement + operationId: roleManagement.entitlementManagement_DeleteRoleDefinitions parameters: - - name: unifiedRoleAssignmentSchedule-id + - name: unifiedRoleDefinition-id in: path - description: 'key: id of unifiedRoleAssignmentSchedule' + description: 'key: id of unifiedRoleDefinition' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleAssignmentSchedule + x-ms-docs-key-type: unifiedRoleDefinition - name: If-Match in: header description: ETag @@ -19310,38 +22057,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleAssignmentSchedules/microsoft.graph.filterByCurrentUser(on={on})': + '/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom': get: tags: - - roleManagement.Functions - summary: Invoke function filterByCurrentUser - operationId: roleManagement.entitlementManagement.roleAssignmentSchedules_filterByCurrentUser + - roleManagement.rbacApplication + summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.entitlementManagement.roleDefinitions_ListInheritsPermissionsFrom parameters: - - name: on + - name: unifiedRoleDefinition-id in: path - description: 'Usage: on={on}' + description: 'key: id of unifiedRoleDefinition' 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/entitlementManagement/roleDefinitions: - get: - tags: - - roleManagement.rbacApplication - summary: Get roleDefinitions from roleManagement - operationId: roleManagement.entitlementManagement_ListRoleDefinitions - parameters: + type: string + x-ms-docs-key-type: unifiedRoleDefinition - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -19436,8 +22166,17 @@ paths: post: tags: - roleManagement.rbacApplication - summary: Create new navigation property to roleDefinitions for roleManagement - operationId: roleManagement.entitlementManagement_CreateRoleDefinitions + summary: Create new navigation property to inheritsPermissionsFrom for roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.entitlementManagement.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: @@ -19455,12 +22194,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}': + '/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}': get: tags: - roleManagement.rbacApplication - summary: Get roleDefinitions from roleManagement - operationId: roleManagement.entitlementManagement_GetRoleDefinitions + summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.entitlementManagement.roleDefinitions_GetInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path @@ -19469,6 +22209,13 @@ 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 @@ -19512,17 +22259,19 @@ paths: $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' links: inheritsPermissionsFrom: - operationId: roleManagement.entitlementManagement.RoleDefinitions.ListInheritsPermissionsFrom + operationId: roleManagement.entitlementManagement.roleDefinitions.InheritsPermissionsFrom.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 roleDefinitions in roleManagement - operationId: roleManagement.entitlementManagement_UpdateRoleDefinitions + summary: Update the navigation property inheritsPermissionsFrom in roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.entitlementManagement.roleDefinitions_UpdateInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path @@ -19531,6 +22280,13 @@ 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: @@ -19547,8 +22303,9 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property roleDefinitions for roleManagement - operationId: roleManagement.entitlementManagement_DeleteRoleDefinitions + summary: Delete navigation property inheritsPermissionsFrom for roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. + operationId: roleManagement.entitlementManagement.roleDefinitions_DeleteInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path @@ -19557,6 +22314,13 @@ 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 @@ -19568,20 +22332,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom': + /roleManagement/entitlementManagement/roleEligibilityScheduleInstances: get: tags: - roleManagement.rbacApplication - summary: Get inheritsPermissionsFrom from roleManagement - operationId: roleManagement.entitlementManagement.roleDefinitions_ListInheritsPermissionsFrom + summary: Get roleEligibilityScheduleInstances from roleManagement + operationId: roleManagement.entitlementManagement_ListRoleEligibilityScheduleInstances parameters: - - 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' @@ -19599,22 +22356,22 @@ 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 + - 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 @@ -19627,15 +22384,18 @@ paths: items: enum: - id - - description - - displayName - - isBuiltIn - - isEnabled - - resourceScopes - - rolePermissions - - templateId - - version - - inheritsPermissionsFrom + - appScopeId + - directoryScopeId + - principalId + - roleDefinitionId + - endDateTime + - memberType + - roleEligibilityScheduleId + - startDateTime + - appScope + - directoryScope + - principal + - roleDefinition type: string - name: $expand in: query @@ -19648,7 +22408,10 @@ paths: items: enum: - '*' - - inheritsPermissionsFrom + - appScope + - directoryScope + - principal + - roleDefinition type: string responses: '200': @@ -19656,13 +22419,13 @@ paths: content: application/json: schema: - title: Collection of unifiedRoleDefinition + title: Collection of unifiedRoleEligibilityScheduleInstance type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' '@odata.nextLink': type: string additionalProperties: @@ -19676,22 +22439,14 @@ paths: post: tags: - roleManagement.rbacApplication - summary: Create new navigation property to inheritsPermissionsFrom for roleManagement - operationId: roleManagement.entitlementManagement.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 roleEligibilityScheduleInstances for roleManagement + operationId: roleManagement.entitlementManagement_CreateRoleEligibilityScheduleInstances requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' required: true responses: '201': @@ -19699,31 +22454,24 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}': + '/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}': get: tags: - roleManagement.rbacApplication - summary: Get inheritsPermissionsFrom from roleManagement - operationId: roleManagement.entitlementManagement.roleDefinitions_GetInheritsPermissionsFrom + summary: Get roleEligibilityScheduleInstances from roleManagement + operationId: roleManagement.entitlementManagement_GetRoleEligibilityScheduleInstances parameters: - - name: unifiedRoleDefinition-id - in: path - description: 'key: id of unifiedRoleDefinition' - required: true - schema: - type: string - x-ms-docs-key-type: unifiedRoleDefinition - - name: unifiedRoleDefinition-id1 + - name: unifiedRoleEligibilityScheduleInstance-id in: path - description: 'key: id of unifiedRoleDefinition' + description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleDefinition + x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance - name: $select in: query description: Select properties to be returned @@ -19735,15 +22483,18 @@ paths: items: enum: - id - - description - - displayName - - isBuiltIn - - isEnabled - - resourceScopes - - rolePermissions - - templateId - - version - - inheritsPermissionsFrom + - appScopeId + - directoryScopeId + - principalId + - roleDefinitionId + - endDateTime + - memberType + - roleEligibilityScheduleId + - startDateTime + - appScope + - directoryScope + - principal + - roleDefinition type: string - name: $expand in: query @@ -19756,7 +22507,10 @@ paths: items: enum: - '*' - - inheritsPermissionsFrom + - appScope + - directoryScope + - principal + - roleDefinition type: string responses: '200': @@ -19764,42 +22518,46 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' links: - inheritsPermissionsFrom: - operationId: roleManagement.entitlementManagement.roleDefinitions.InheritsPermissionsFrom.ListInheritsPermissionsFrom + appScope: + operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleInstances.GetAppScope parameters: - unifiedRoleDefinition-id: $request.path.unifiedRoleDefinition-id - unifiedRoleDefinition-id1: $request.path.unifiedRoleDefinition-id1 + unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id + directoryScope: + operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleInstances.GetDirectoryScope + parameters: + unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id + principal: + operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleInstances.GetPrincipal + parameters: + unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id + roleDefinition: + operationId: roleManagement.entitlementManagement.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 inheritsPermissionsFrom in roleManagement - operationId: roleManagement.entitlementManagement.roleDefinitions_UpdateInheritsPermissionsFrom + summary: Update the navigation property roleEligibilityScheduleInstances in roleManagement + operationId: roleManagement.entitlementManagement_UpdateRoleEligibilityScheduleInstances parameters: - - name: unifiedRoleDefinition-id - in: path - description: 'key: id of unifiedRoleDefinition' - required: true - schema: - type: string - x-ms-docs-key-type: unifiedRoleDefinition - - name: unifiedRoleDefinition-id1 + - name: unifiedRoleEligibilityScheduleInstance-id in: path - description: 'key: id of unifiedRoleDefinition' + description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleDefinition + x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' required: true responses: '204': @@ -19810,23 +22568,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property inheritsPermissionsFrom for roleManagement - operationId: roleManagement.entitlementManagement.roleDefinitions_DeleteInheritsPermissionsFrom + summary: Delete navigation property roleEligibilityScheduleInstances for roleManagement + operationId: roleManagement.entitlementManagement_DeleteRoleEligibilityScheduleInstances parameters: - - name: unifiedRoleDefinition-id - in: path - description: 'key: id of unifiedRoleDefinition' - required: true - schema: - type: string - x-ms-docs-key-type: unifiedRoleDefinition - - name: unifiedRoleDefinition-id1 + - name: unifiedRoleEligibilityScheduleInstance-id in: path - description: 'key: id of unifiedRoleDefinition' + description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleDefinition + x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance - name: If-Match in: header description: ETag @@ -19838,12 +22589,37 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /roleManagement/entitlementManagement/roleEligibilityRequests: + '/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})': + get: + tags: + - roleManagement.Functions + summary: Invoke function filterByCurrentUser + operationId: roleManagement.entitlementManagement.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/entitlementManagement/roleEligibilityScheduleRequests: get: tags: - roleManagement.rbacApplication - summary: Get roleEligibilityRequests from roleManagement - operationId: roleManagement.entitlementManagement_ListRoleEligibilityRequests + summary: Get roleEligibilityScheduleRequests from roleManagement + operationId: roleManagement.entitlementManagement_ListRoleEligibilityScheduleRequests parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -19951,13 +22727,13 @@ paths: content: application/json: schema: - title: Collection of unifiedRoleEligibilityRequest + title: Collection of unifiedRoleEligibilityScheduleRequest type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' '@odata.nextLink': type: string additionalProperties: @@ -19971,14 +22747,14 @@ paths: post: tags: - roleManagement.rbacApplication - summary: Create new navigation property to roleEligibilityRequests for roleManagement - operationId: roleManagement.entitlementManagement_CreateRoleEligibilityRequests + summary: Create new navigation property to roleEligibilityScheduleRequests for roleManagement + operationId: roleManagement.entitlementManagement_CreateRoleEligibilityScheduleRequests requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' required: true responses: '201': @@ -19986,24 +22762,24 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}': get: tags: - roleManagement.rbacApplication - summary: Get roleEligibilityRequests from roleManagement - operationId: roleManagement.entitlementManagement_GetRoleEligibilityRequests + summary: Get roleEligibilityScheduleRequests from roleManagement + operationId: roleManagement.entitlementManagement_GetRoleEligibilityScheduleRequests parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -20060,50 +22836,50 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' links: appScope: - operationId: roleManagement.entitlementManagement.RoleEligibilityRequests.GetAppScope + operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleRequests.GetAppScope parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id directoryScope: - operationId: roleManagement.entitlementManagement.RoleEligibilityRequests.GetDirectoryScope + operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleRequests.GetDirectoryScope parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id principal: - operationId: roleManagement.entitlementManagement.RoleEligibilityRequests.GetPrincipal + operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleRequests.GetPrincipal parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id roleDefinition: - operationId: roleManagement.entitlementManagement.RoleEligibilityRequests.GetRoleDefinition + operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleRequests.GetRoleDefinition parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id targetSchedule: - operationId: roleManagement.entitlementManagement.RoleEligibilityRequests.GetTargetSchedule + operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleRequests.GetTargetSchedule parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id 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.entitlementManagement_UpdateRoleEligibilityRequests + summary: Update the navigation property roleEligibilityScheduleRequests in roleManagement + operationId: roleManagement.entitlementManagement_UpdateRoleEligibilityScheduleRequests parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' required: true responses: '204': @@ -20114,16 +22890,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property roleEligibilityRequests for roleManagement - operationId: roleManagement.entitlementManagement_DeleteRoleEligibilityRequests + summary: Delete navigation property roleEligibilityScheduleRequests for roleManagement + operationId: roleManagement.entitlementManagement_DeleteRoleEligibilityScheduleRequests parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -20135,20 +22911,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope': get: tags: - roleManagement.rbacApplication summary: Get appScope from roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_GetAppScope + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetAppScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -20185,20 +22962,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope/$ref': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref': get: tags: - roleManagement.rbacApplication summary: Get ref of appScope from roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_GetRefAppScope + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetRefAppScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest responses: '200': description: Retrieved navigation property link @@ -20213,15 +22991,16 @@ paths: tags: - roleManagement.rbacApplication summary: Update the ref of navigation property appScope in roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_SetRefAppScope + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_SetRefAppScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: description: New navigation property ref values content: @@ -20241,15 +23020,16 @@ paths: tags: - roleManagement.rbacApplication summary: Delete ref of navigation property appScope for roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_DeleteRefAppScope + description: Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_DeleteRefAppScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -20261,165 +23041,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope': get: tags: - roleManagement.rbacApplication summary: Get directoryScope from roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_GetDirectoryScope - parameters: - - name: unifiedRoleEligibilityRequest-id - in: path - description: 'key: id of unifiedRoleEligibilityRequest' - required: true - 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 - - 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/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope/$ref': - get: - tags: - - roleManagement.rbacApplication - summary: Get ref of directoryScope from roleManagement - operationId: roleManagement.entitlementManagement.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.entitlementManagement.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.entitlementManagement.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/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/microsoft.graph.cancel': - post: - tags: - - roleManagement.Actions - summary: Invoke action cancel - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_cancel + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetDirectoryScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' 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/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal': - get: - tags: - - roleManagement.rbacApplication - summary: Get principal from roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_GetPrincipal - parameters: - - name: unifiedRoleEligibilityRequest-id - in: path - description: 'key: id of unifiedRoleEligibilityRequest' - required: true - schema: - type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -20455,20 +23091,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal/$ref': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of principal from roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_GetRefPrincipal + summary: Get ref of directoryScope from roleManagement + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetRefDirectoryScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest responses: '200': description: Retrieved navigation property link @@ -20482,16 +23119,17 @@ paths: put: tags: - roleManagement.rbacApplication - summary: Update the ref of navigation property principal in roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_SetRefPrincipal + summary: Update the ref of navigation property directoryScope in roleManagement + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_SetRefDirectoryScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: description: New navigation property ref values content: @@ -20510,16 +23148,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property principal for roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_DeleteRefPrincipal + summary: Delete ref of navigation property directoryScope for roleManagement + description: Property referencing the directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_DeleteRefDirectoryScope parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -20531,20 +23170,41 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/microsoft.graph.cancel': + post: + tags: + - roleManagement.Actions + summary: Invoke action cancel + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_cancel + parameters: + - name: unifiedRoleEligibilityScheduleRequest-id + in: path + description: 'key: id of unifiedRoleEligibilityScheduleRequest' + required: true + schema: + type: string + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal': get: tags: - roleManagement.rbacApplication - summary: Get roleDefinition from roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_GetRoleDefinition + summary: Get principal from roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetPrincipal parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -20556,15 +23216,7 @@ paths: items: enum: - id - - description - - displayName - - isBuiltIn - - isEnabled - - resourceScopes - - rolePermissions - - templateId - - version - - inheritsPermissionsFrom + - deletedDateTime type: string - name: $expand in: query @@ -20577,7 +23229,6 @@ paths: items: enum: - '*' - - inheritsPermissionsFrom type: string responses: '200': @@ -20585,29 +23236,25 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' - links: - inheritsPermissionsFrom: - operationId: roleManagement.entitlementManagement.roleEligibilityRequests.RoleDefinition.ListInheritsPermissionsFrom - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + $ref: '#/components/schemas/microsoft.graph.directoryObject' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition/$ref': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of roleDefinition from roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_GetRefRoleDefinition + summary: Get ref of principal from roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetRefPrincipal parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest responses: '200': description: Retrieved navigation property link @@ -20615,27 +23262,23 @@ paths: application/json: schema: type: string - links: - inheritsPermissionsFrom: - operationId: roleManagement.entitlementManagement.roleEligibilityRequests.RoleDefinition.ListInheritsPermissionsFrom - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-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.entitlementManagement.roleEligibilityRequests_SetRefRoleDefinition + summary: Update the ref of navigation property principal in roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_SetRefPrincipal parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: description: New navigation property ref values content: @@ -20654,16 +23297,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property roleDefinition for roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_DeleteRefRoleDefinition + summary: Delete ref of navigation property principal for roleManagement + description: Property referencing the principal that is getting a role assignment through the request. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_DeleteRefPrincipal parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -20675,20 +23319,21 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition': get: tags: - roleManagement.rbacApplication - summary: Get targetSchedule from roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_GetTargetSchedule + summary: Get roleDefinition from roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetRoleDefinition parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -20700,20 +23345,15 @@ paths: items: enum: - id - - appScopeId - - createdDateTime - - createdUsing - - directoryScopeId - - modifiedDateTime - - principalId - - roleDefinitionId - - status - - memberType - - scheduleInfo - - appScope - - directoryScope - - principal - - roleDefinition + - description + - displayName + - isBuiltIn + - isEnabled + - resourceScopes + - rolePermissions + - templateId + - version + - inheritsPermissionsFrom type: string - name: $expand in: query @@ -20726,10 +23366,7 @@ paths: items: enum: - '*' - - appScope - - directoryScope - - principal - - roleDefinition + - inheritsPermissionsFrom type: string responses: '200': @@ -20737,41 +23374,30 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' links: - appScope: - operationId: roleManagement.entitlementManagement.roleEligibilityRequests.TargetSchedule.GetAppScope - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - directoryScope: - operationId: roleManagement.entitlementManagement.roleEligibilityRequests.TargetSchedule.GetDirectoryScope - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - principal: - operationId: roleManagement.entitlementManagement.roleEligibilityRequests.TargetSchedule.GetPrincipal - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - roleDefinition: - operationId: roleManagement.entitlementManagement.roleEligibilityRequests.TargetSchedule.GetRoleDefinition + inheritsPermissionsFrom: + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests.RoleDefinition.ListInheritsPermissionsFrom parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule/$ref': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref': get: tags: - roleManagement.rbacApplication - summary: Get ref of targetSchedule from roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_GetRefTargetSchedule + summary: Get ref of roleDefinition from roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetRefRoleDefinition parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest responses: '200': description: Retrieved navigation property link @@ -20780,38 +23406,27 @@ paths: schema: type: string links: - appScope: - operationId: roleManagement.entitlementManagement.roleEligibilityRequests.TargetSchedule.GetAppScope - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - directoryScope: - operationId: roleManagement.entitlementManagement.roleEligibilityRequests.TargetSchedule.GetDirectoryScope - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - principal: - operationId: roleManagement.entitlementManagement.roleEligibilityRequests.TargetSchedule.GetPrincipal - parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id - roleDefinition: - operationId: roleManagement.entitlementManagement.roleEligibilityRequests.TargetSchedule.GetRoleDefinition + inheritsPermissionsFrom: + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests.RoleDefinition.ListInheritsPermissionsFrom parameters: - unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-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.entitlementManagement.roleEligibilityRequests_SetRefTargetSchedule + summary: Update the ref of navigation property roleDefinition in roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_SetRefRoleDefinition parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: description: New navigation property ref values content: @@ -20830,16 +23445,17 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete ref of navigation property targetSchedule for roleManagement - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_DeleteRefTargetSchedule + summary: Delete ref of navigation property roleDefinition for roleManagement + description: Property indicating the roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.Id will be auto expanded + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_DeleteRefRoleDefinition parameters: - - name: unifiedRoleEligibilityRequest-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityRequest' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityRequest + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -20851,72 +23467,20 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityRequests/microsoft.graph.filterByCurrentUser(on={on})': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule': get: tags: - - roleManagement.Functions - summary: Invoke function filterByCurrentUser - operationId: roleManagement.entitlementManagement.roleEligibilityRequests_filterByCurrentUser + - roleManagement.rbacApplication + summary: Get targetSchedule from roleManagement + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetTargetSchedule parameters: - - name: on + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'Usage: on={on}' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: - $ref: '#/components/schemas/microsoft.graph.roleEligibilityRequestFilterByCurrentUserOptions' - responses: - '200': - description: Success - content: - application/json: - schema: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - /roleManagement/entitlementManagement/roleEligibilityScheduleInstances: - get: - tags: - - roleManagement.rbacApplication - summary: Get roleEligibilityScheduleInstances from roleManagement - operationId: roleManagement.entitlementManagement_ListRoleEligibilityScheduleInstances - 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 - - directoryScopeId - - directoryScopeId desc - - principalId - - principalId desc - - roleDefinitionId - - roleDefinitionId desc - - endDateTime - - endDateTime desc - - memberType - - memberType desc - - roleEligibilityScheduleId - - roleEligibilityScheduleId desc - - startDateTime - - startDateTime desc - type: string + type: string + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: $select in: query description: Select properties to be returned @@ -20929,13 +23493,15 @@ paths: enum: - id - appScopeId + - createdDateTime + - createdUsing - directoryScopeId + - modifiedDateTime - principalId - roleDefinitionId - - endDateTime + - status - memberType - - roleEligibilityScheduleId - - startDateTime + - scheduleInfo - appScope - directoryScope - principal @@ -20963,145 +23529,89 @@ paths: 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.entitlementManagement_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' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' + links: + appScope: + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests.TargetSchedule.GetAppScope + parameters: + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id + directoryScope: + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests.TargetSchedule.GetDirectoryScope + parameters: + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id + principal: + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests.TargetSchedule.GetPrincipal + parameters: + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id + roleDefinition: + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests.TargetSchedule.GetRoleDefinition + parameters: + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref': get: - tags: - - roleManagement.rbacApplication - summary: Get roleEligibilityScheduleInstances from roleManagement - operationId: roleManagement.entitlementManagement_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 + tags: + - roleManagement.rbacApplication + summary: Get ref of targetSchedule from roleManagement + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetRefTargetSchedule + parameters: + - name: unifiedRoleEligibilityScheduleRequest-id + in: path + description: 'key: id of unifiedRoleEligibilityScheduleRequest' + required: true schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - appScope - - directoryScope - - principal - - roleDefinition - type: string + type: string + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest responses: '200': - description: Retrieved navigation property + description: Retrieved navigation property link content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' + type: string links: appScope: - operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleInstances.GetAppScope + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests.TargetSchedule.GetAppScope parameters: - unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id directoryScope: - operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleInstances.GetDirectoryScope + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests.TargetSchedule.GetDirectoryScope parameters: - unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id principal: - operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleInstances.GetPrincipal + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests.TargetSchedule.GetPrincipal parameters: - unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id roleDefinition: - operationId: roleManagement.entitlementManagement.RoleEligibilityScheduleInstances.GetRoleDefinition + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests.TargetSchedule.GetRoleDefinition parameters: - unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id + unifiedRoleEligibilityScheduleRequest-id: $request.path.unifiedRoleEligibilityScheduleRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - patch: + put: tags: - roleManagement.rbacApplication - summary: Update the navigation property roleEligibilityScheduleInstances in roleManagement - operationId: roleManagement.entitlementManagement_UpdateRoleEligibilityScheduleInstances + summary: Update the ref of navigation property targetSchedule in roleManagement + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_SetRefTargetSchedule parameters: - - name: unifiedRoleEligibilityScheduleInstance-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityScheduleInstance' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest requestBody: - description: New navigation property values + description: New navigation property ref values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' + type: object + additionalProperties: + type: object required: true responses: '204': @@ -21112,16 +23622,16 @@ paths: delete: tags: - roleManagement.rbacApplication - summary: Delete navigation property roleEligibilityScheduleInstances for roleManagement - operationId: roleManagement.entitlementManagement_DeleteRoleEligibilityScheduleInstances + summary: Delete ref of navigation property targetSchedule for roleManagement + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_DeleteRefTargetSchedule parameters: - - name: unifiedRoleEligibilityScheduleInstance-id + - name: unifiedRoleEligibilityScheduleRequest-id in: path - description: 'key: id of unifiedRoleEligibilityScheduleInstance' + description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true schema: type: string - x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance + x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag @@ -21133,19 +23643,19 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})': + '/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/microsoft.graph.filterByCurrentUser(on={on})': get: tags: - roleManagement.Functions summary: Invoke function filterByCurrentUser - operationId: roleManagement.entitlementManagement.roleEligibilityScheduleInstances_filterByCurrentUser + operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_filterByCurrentUser parameters: - name: on in: path description: 'Usage: on={on}' required: true schema: - $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleInstanceFilterByCurrentUserOptions' + $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleRequestFilterByCurrentUserOptions' responses: '200': description: Success @@ -21154,7 +23664,7 @@ paths: schema: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function @@ -22057,7 +24567,7 @@ components: nullable: true isSupervised: type: boolean - description: 'Indicates if the Apple device is supervised. More information is at: https://support.apple.com/HT202837' + description: 'Indicates if the Apple device is supervised. More information is at: https://support.apple.com/en-us/HT202837' lastContactedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -22240,7 +24750,9 @@ components: description: The intune device's azure Ad joinType. nullable: true azureAdRegistered: - $ref: '#/components/schemas/microsoft.graph.azureAdRegisteredState' + type: boolean + description: The intune device's azureAdRegistered. + nullable: true deviceName: type: string description: The intune device's name. @@ -22476,6 +24988,12 @@ components: displayName: type: string description: The display name of the profile. + endOfSupportDate: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 supported date for a feature update + format: date-time + nullable: true featureUpdateVersion: type: string description: 'The feature update version that will be deployed to the devices targeted by this profile. The version could be any supported version for example 1709, 1803 or 1809 and so on.' @@ -22564,6 +25082,8 @@ components: properties: directory: $ref: '#/components/schemas/microsoft.graph.rbacApplication' + cloudPC: + $ref: '#/components/schemas/microsoft.graph.rbacApplicationMultiple' entitlementManagement: $ref: '#/components/schemas/microsoft.graph.rbacApplication' deviceManagement: @@ -22652,7 +25172,7 @@ components: items: type: string nullable: true - description: Ids of the app specific scopes when the assignment scopes are app specific. The scopes of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use '/' for tenant-wide scope. App scopes are scopes that are defined and understood by this application only. + description: Ids of the app specific scopes when the assignment scopes are app specific. The scopes of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use / for tenant-wide scope. App scopes are scopes that are defined and understood by this application only. condition: type: string nullable: true @@ -22675,22 +25195,25 @@ components: items: type: string nullable: true - description: Objectids of the principals to which the assignment is granted. + description: Identifiers of the principals to which the assignment is granted. Supports $filter (any operator only). roleDefinitionId: type: string - description: ID of the unifiedRoleDefinition the assignment is for. + description: Identifier of the unifiedRoleDefinition the assignment is for. appScopes: type: array items: $ref: '#/components/schemas/microsoft.graph.appScope' + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. directoryScopes: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Read-only collection referencing the directory objects that are scope of the assignment. Provided so that callers can get the directory objects using $expand at the same time as getting the role assignment. Read-only. Supports $expand. principals: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Read-only collection referencing the assigned principals. Provided so that callers can get the principals using $expand at the same time as getting the role assignment. Read-only. Supports $expand. roleDefinition: $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' additionalProperties: @@ -22737,11 +25260,11 @@ components: nullable: true displayName: type: string - description: The display name for the unifiedRoleDefinition. Read-only when isBuiltIn is true. Required. + description: The display name for the unifiedRoleDefinition. Read-only when isBuiltIn is true. Required. Supports $filter (eq and startsWith operators only). nullable: true isBuiltIn: type: boolean - description: Flag indicating if the unifiedRoleDefinition is part of the default set included with the product or custom. Read-only. + description: Flag indicating if the unifiedRoleDefinition is part of the default set included with the product or custom. Read-only. Supports $filter (eq operator only). nullable: true isEnabled: type: boolean @@ -22751,7 +25274,7 @@ components: type: array items: type: string - description: List of scopes permissions granted by the role definition apply to. Currently only '/' is supported. Read-only when isBuiltIn is true. DO NOT USE. This is going to be deprecated soon. Attach scope to role assignment + description: List of scopes permissions granted by the role definition apply to. Currently only / is supported. Read-only when isBuiltIn is true. DO NOT USE. This is going to be deprecated soon. Attach scope to role assignment rolePermissions: type: array items: @@ -22769,6 +25292,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. additionalProperties: type: object microsoft.graph.rbacApplication: @@ -22793,26 +25317,26 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.approval' - roleAssignmentRequests: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest' roleAssignmentScheduleInstances: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' - roleAssignmentSchedules: + roleAssignmentScheduleRequests: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule' - roleEligibilityRequests: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' + roleAssignmentSchedules: type: array items: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest' + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule' roleEligibilityScheduleInstances: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' + roleEligibilityScheduleRequests: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' roleEligibilitySchedules: type: array items: @@ -22827,15 +25351,19 @@ components: properties: appScopeId: type: string + description: Id of the app specific scope when the assignment scope is app specific. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use '/' for tenant-wide scope. App scopes are scopes that are defined and understood by this application only. nullable: true directoryScopeId: type: string + description: Id of the directory object representing the scope of the assignment. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. App scopes are scopes that are defined and understood by this application only. nullable: true principalId: type: string + description: Objectid of the principal to which the assignment is being granted to. nullable: true roleDefinitionId: type: string + description: ID of the unifiedRoleDefinition the assignment is for. Read only. nullable: true appScope: $ref: '#/components/schemas/microsoft.graph.appScope' @@ -22855,31 +25383,39 @@ components: properties: appScopeId: type: string + description: Id of the app specific scope when the assignment scope is app specific. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use '/' for tenant-wide scope. App scopes are scopes that are defined and understood by this application only. 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: Time that the schedule was created. format: date-time nullable: true createdUsing: type: string + description: ID of the roleAssignmentScheduleRequest that created this schedule. nullable: true directoryScopeId: type: string + description: Id of the directory object representing the scope of the assignment. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. App scopes are scopes that are defined and understood by this application only. nullable: true 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: Last time the schedule was updated. format: date-time nullable: true principalId: type: string + description: Objectid of the principal to which the assignment is being granted to. nullable: true roleDefinitionId: type: string + description: ID of the unifiedRoleDefinition the assignment is for. Read only. nullable: true status: type: string + description: 'Status for the roleAssignmentSchedule. It can include state related messages like Provisioned, Revoked, Pending Provisioning, and Pending Approval.' nullable: true appScope: $ref: '#/components/schemas/microsoft.graph.appScope' @@ -22947,42 +25483,35 @@ components: - approver - unknownFutureValue type: string - microsoft.graph.unifiedRoleAssignmentRequest: + microsoft.graph.unifiedRoleAssignment: allOf: - - $ref: '#/components/schemas/microsoft.graph.request' - - title: unifiedRoleAssignmentRequest + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: unifiedRoleAssignment type: object properties: - action: - type: string - nullable: true appScopeId: type: string + description: Identifier of the app specific scope when the assignment scope is app specific. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use / for tenant-wide scope. App scopes are scopes that are defined and understood by this application only. nullable: true - directoryScopeId: + condition: type: string nullable: true - isValidationOnly: - type: boolean - nullable: true - justification: + directoryScopeId: type: string + description: Identifier of the directory object representing the scope of the assignment. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. App scopes are scopes that are defined and understood by this application only. nullable: true principalId: type: string + description: Identifier of the principal to which the assignment is granted. Supports $filter (eq operator only). nullable: true - roleDefinitionId: + resourceScope: type: string + description: The scope at which the unifiedRoleAssignment applies. This is / for service-wide. DO NOT USE. This property will be deprecated soon. nullable: true - scheduleInfo: - $ref: '#/components/schemas/microsoft.graph.requestSchedule' - targetScheduleId: + roleDefinitionId: type: string + description: Identifier of the unifiedRoleDefinition the assignment is for. Read-only. Supports $filter (eq operator only). nullable: true - ticketInfo: - $ref: '#/components/schemas/microsoft.graph.ticketInfo' - activatedUsing: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' appScope: $ref: '#/components/schemas/microsoft.graph.appScope' directoryScope: @@ -22991,78 +25520,124 @@ components: $ref: '#/components/schemas/microsoft.graph.directoryObject' roleDefinition: $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' - targetSchedule: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule' additionalProperties: type: object - microsoft.graph.unifiedRoleEligibilitySchedule: + microsoft.graph.unifiedRoleAssignmentScheduleInstance: allOf: - - $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleBase' - - title: unifiedRoleEligibilitySchedule + - $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleInstanceBase' + - title: unifiedRoleAssignmentScheduleInstance type: object properties: + assignmentType: + type: string + description: Type of the assignment. It can either be Assigned or Activated. + 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: Time that the roleAssignmentInstance will expire + format: date-time + nullable: true memberType: type: string + description: 'Membership type of the assignment. It can either be Inherited, Direct, or Group.' nullable: true - scheduleInfo: - $ref: '#/components/schemas/microsoft.graph.requestSchedule' + roleAssignmentOriginId: + type: string + description: ID of the roleAssignment in the directory + nullable: true + roleAssignmentScheduleId: + type: string + description: ID of the parent roleAssignmentSchedule for this instance + 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: Time that the roleAssignmentInstance will start + format: date-time + nullable: true + activatedUsing: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' additionalProperties: type: object - microsoft.graph.unifiedRoleAssignmentSchedule: + microsoft.graph.unifiedRoleEligibilityScheduleInstance: allOf: - - $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleBase' - - title: unifiedRoleAssignmentSchedule + - $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleInstanceBase' + - title: unifiedRoleEligibilityScheduleInstance type: object properties: - assignmentType: + 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: Time that the roleEligibilityScheduleInstance will expire + format: date-time nullable: true memberType: type: string + description: 'Membership type of the assignment. It can either be Inherited, Direct, or Group.' + nullable: true + roleEligibilityScheduleId: + type: string + description: ID of the parent roleEligibilitySchedule for this instance + 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: Time that the roleEligibilityScheduleInstance will start + format: date-time nullable: true - scheduleInfo: - $ref: '#/components/schemas/microsoft.graph.requestSchedule' - activatedUsing: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' additionalProperties: type: object - microsoft.graph.roleAssignmentRequestFilterByCurrentUserOptions: - title: roleAssignmentRequestFilterByCurrentUserOptions + microsoft.graph.roleAssignmentScheduleInstanceFilterByCurrentUserOptions: + title: roleAssignmentScheduleInstanceFilterByCurrentUserOptions enum: - principal - - createdBy - - approver - unknownFutureValue type: string - microsoft.graph.unifiedRoleAssignment: + microsoft.graph.unifiedRoleAssignmentScheduleRequest: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: unifiedRoleAssignment + - $ref: '#/components/schemas/microsoft.graph.request' + - title: unifiedRoleAssignmentScheduleRequest type: object properties: - appScopeId: + action: type: string - description: Id of the app specific scope when the assignment scope is app specific. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use '/' for tenant-wide scope. App scopes are scopes that are defined and understood by this application only. + description: '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.' nullable: true - condition: + appScopeId: type: string + description: Id of the app specific scope when the assignment scope is app specific. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use '/' for tenant-wide scope. App scopes are scopes that are defined and understood by this application only. nullable: true directoryScopeId: type: string description: Id of the directory object representing the scope of the assignment. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. App scopes are scopes that are defined and understood by this application only. nullable: true - principalId: + isValidationOnly: + type: boolean + description: A boolean that determines whether the call is a validation or an actual call. Only set this property if you want to check whether an activation is subject to additional rules like MFA before actually submitting the request. + nullable: true + justification: type: string - description: Objectid of the principal to which the assignment is granted. + description: A message provided by users and administrators when create the request about why it is needed. nullable: true - resourceScope: + principalId: type: string - description: The scope at which the unifiedRoleAssignment applies. This is '/' for service-wide. DO NOT USE. This property will be deprecated soon. + description: Objectid of the principal to which the assignment is being granted to. nullable: true roleDefinitionId: type: string description: ID of the unifiedRoleDefinition the assignment is for. Read only. nullable: true + scheduleInfo: + $ref: '#/components/schemas/microsoft.graph.requestSchedule' + targetScheduleId: + type: string + description: ID of the schedule object attached to the assignment. + nullable: true + ticketInfo: + $ref: '#/components/schemas/microsoft.graph.ticketInfo' + activatedUsing: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' appScope: $ref: '#/components/schemas/microsoft.graph.appScope' directoryScope: @@ -23071,68 +25646,50 @@ components: $ref: '#/components/schemas/microsoft.graph.directoryObject' roleDefinition: $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' + targetSchedule: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule' additionalProperties: type: object - microsoft.graph.unifiedRoleAssignmentScheduleInstance: + microsoft.graph.unifiedRoleEligibilitySchedule: allOf: - - $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleInstanceBase' - - title: unifiedRoleAssignmentScheduleInstance + - $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleBase' + - title: unifiedRoleEligibilitySchedule type: object properties: - assignmentType: - type: string - 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 - format: date-time - nullable: true memberType: type: string + description: 'Membership type of the eligible assignment. It can either be Inherited, Direct, or Group.' nullable: true - roleAssignmentOriginId: - type: string - nullable: true - roleAssignmentScheduleId: - type: string - 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 - activatedUsing: - $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' + scheduleInfo: + $ref: '#/components/schemas/microsoft.graph.requestSchedule' additionalProperties: type: object - microsoft.graph.unifiedRoleEligibilityScheduleInstance: + microsoft.graph.unifiedRoleAssignmentSchedule: allOf: - - $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleInstanceBase' - - title: unifiedRoleEligibilityScheduleInstance + - $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleBase' + - title: unifiedRoleAssignmentSchedule 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])$' + assignmentType: type: string - format: date-time + description: Type of the assignment. It can either be Assigned or Activated. nullable: true memberType: type: string + description: 'Membership type of the assignment. It can either be Inherited, Direct, or Group.' nullable: true - roleEligibilityScheduleId: - type: string - 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 + scheduleInfo: + $ref: '#/components/schemas/microsoft.graph.requestSchedule' + activatedUsing: + $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' additionalProperties: type: object - microsoft.graph.roleAssignmentScheduleInstanceFilterByCurrentUserOptions: - title: roleAssignmentScheduleInstanceFilterByCurrentUserOptions + microsoft.graph.roleAssignmentScheduleRequestFilterByCurrentUserOptions: + title: roleAssignmentScheduleRequestFilterByCurrentUserOptions enum: - principal + - createdBy + - approver - unknownFutureValue type: string microsoft.graph.roleAssignmentScheduleFilterByCurrentUserOptions: @@ -23141,37 +25698,51 @@ components: - principal - unknownFutureValue type: string - microsoft.graph.unifiedRoleEligibilityRequest: + microsoft.graph.roleEligibilityScheduleInstanceFilterByCurrentUserOptions: + title: roleEligibilityScheduleInstanceFilterByCurrentUserOptions + enum: + - principal + - unknownFutureValue + type: string + microsoft.graph.unifiedRoleEligibilityScheduleRequest: allOf: - $ref: '#/components/schemas/microsoft.graph.request' - - title: unifiedRoleEligibilityRequest + - title: unifiedRoleEligibilityScheduleRequest type: object properties: action: type: string + description: '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.' nullable: true appScopeId: type: string + description: Id of the app specific scope when the assignment scope is app specific. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use '/' for tenant-wide scope. App scopes are scopes that are defined and understood by this application only. nullable: true directoryScopeId: type: string + description: Id of the directory object representing the scope of the assignment. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. App scopes are scopes that are defined and understood by this application only. nullable: true isValidationOnly: type: boolean + description: A boolean that determines whether the call is a validation or an actual call. Only set this property if you want to check whether an activation is subject to additional rules like MFA before actually submitting the request. nullable: true justification: type: string + description: A message provided by users and administrators when create the request about why it is needed. nullable: true principalId: type: string + description: Objectid of the principal to which the assignment is being granted to. nullable: true roleDefinitionId: type: string + description: ID of the unifiedRoleDefinition the assignment is for. Read only. nullable: true scheduleInfo: $ref: '#/components/schemas/microsoft.graph.requestSchedule' targetScheduleId: type: string + description: ID of the schedule object attached to the assignment. nullable: true ticketInfo: $ref: '#/components/schemas/microsoft.graph.ticketInfo' @@ -23187,20 +25758,14 @@ components: $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' additionalProperties: type: object - microsoft.graph.roleEligibilityRequestFilterByCurrentUserOptions: - title: roleEligibilityRequestFilterByCurrentUserOptions + microsoft.graph.roleEligibilityScheduleRequestFilterByCurrentUserOptions: + title: roleEligibilityScheduleRequestFilterByCurrentUserOptions enum: - principal - createdBy - approver - unknownFutureValue type: string - microsoft.graph.roleEligibilityScheduleInstanceFilterByCurrentUserOptions: - title: roleEligibilityScheduleInstanceFilterByCurrentUserOptions - enum: - - principal - - unknownFutureValue - type: string microsoft.graph.roleEligibilityScheduleFilterByCurrentUserOptions: title: roleEligibilityScheduleFilterByCurrentUserOptions enum: @@ -23489,13 +26054,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.azureAdRegisteredState: - title: azureAdRegisteredState - enum: - - no - - yes - - unknown - type: string microsoft.graph.windowsAutopilotDeviceType: title: windowsAutopilotDeviceType enum: @@ -23679,9 +26237,11 @@ components: properties: ticketNumber: type: string + description: Ticket number meta data nullable: true ticketSystem: type: string + description: Ticket system meta data nullable: true additionalProperties: type: object diff --git a/openApiDocs/beta/DeviceManagement.Functions.yml b/openApiDocs/beta/DeviceManagement.Functions.yml index 8aee1492be0..1752a2906ba 100644 --- a/openApiDocs/beta/DeviceManagement.Functions.yml +++ b/openApiDocs/beta/DeviceManagement.Functions.yml @@ -11,6 +11,7 @@ paths: tags: - deviceManagement.Functions summary: Invoke function downloadApplePushNotificationCertificateSigningRequest + description: Download Apple push notification certificate signing request operationId: deviceManagement.applePushNotificationCertificate_downloadApplePushNotificationCertificateSigningRequest responses: '200': @@ -85,6 +86,32 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.getCloudPcRemoteActionResults()': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getCloudPcRemoteActionResults + operationId: deviceManagement.comanagedDevices_getCloudPcRemoteActionResults + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey()': get: tags: @@ -165,6 +192,7 @@ paths: tags: - deviceManagement.Functions summary: Invoke function exportMobileConfig + description: Exports the mobile configuration operationId: deviceManagement.depOnboardingSettings.enrollmentProfiles_exportMobileConfig parameters: - name: depOnboardingSetting-id @@ -197,6 +225,7 @@ paths: tags: - deviceManagement.Functions summary: Invoke function getEncryptionPublicKey + description: Get a public key to use to encrypt the Apple device enrollment program token operationId: deviceManagement.depOnboardingSettings_getEncryptionPublicKey parameters: - name: depOnboardingSetting-id @@ -244,6 +273,39 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getCloudPcRemoteActionResults + operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.managedDevice_getCloudPcRemoteActionResults + parameters: + - name: deviceComplianceScript-id + in: path + description: 'key: id of deviceComplianceScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceComplianceScript + - name: deviceComplianceScriptDeviceState-id + in: path + description: 'key: id of deviceComplianceScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceComplianceScriptDeviceState + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()': get: tags: @@ -309,6 +371,77 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/microsoft.graph.getOmaSettingPlainTextValue(secretReferenceValueId=''{secretReferenceValueId}'')': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getOmaSettingPlainTextValue + operationId: deviceManagement.deviceConfigurations.groupAssignments.deviceConfiguration_getOmaSettingPlainTextValue + parameters: + - name: deviceConfiguration-id + in: path + description: 'key: id of deviceConfiguration' + required: true + schema: + type: string + x-ms-docs-key-type: deviceConfiguration + - name: deviceConfigurationGroupAssignment-id + in: path + description: 'key: id of deviceConfigurationGroupAssignment' + required: true + schema: + type: string + x-ms-docs-key-type: deviceConfigurationGroupAssignment + - name: secretReferenceValueId + in: path + description: 'Usage: secretReferenceValueId={secretReferenceValueId}' + required: true + schema: + type: string + nullable: true + responses: + '200': + description: Success + content: + application/json: + schema: + type: string + nullable: true + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/microsoft.graph.getOmaSettingPlainTextValue(secretReferenceValueId=''{secretReferenceValueId}'')': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getOmaSettingPlainTextValue + operationId: deviceManagement.deviceConfigurations_getOmaSettingPlainTextValue + parameters: + - name: deviceConfiguration-id + in: path + description: 'key: id of deviceConfiguration' + required: true + schema: + type: string + x-ms-docs-key-type: deviceConfiguration + - name: secretReferenceValueId + in: path + description: 'Usage: secretReferenceValueId={secretReferenceValueId}' + required: true + schema: + type: string + nullable: true + responses: + '200': + description: Success + content: + application/json: + schema: + type: string + nullable: true + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function /deviceManagement/deviceConfigurations/microsoft.graph.getIosAvailableUpdateVersions(): get: tags: @@ -327,6 +460,39 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getCloudPcRemoteActionResults + operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.managedDevice_getCloudPcRemoteActionResults + parameters: + - name: deviceCustomAttributeShellScript-id + in: path + description: 'key: id of deviceCustomAttributeShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceCustomAttributeShellScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()': get: tags: @@ -392,6 +558,46 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getCloudPcRemoteActionResults + operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.managedDevice_getCloudPcRemoteActionResults + parameters: + - name: deviceCustomAttributeShellScript-id + in: path + description: 'key: id of deviceCustomAttributeShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceCustomAttributeShellScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()': get: tags: @@ -471,6 +677,39 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getCloudPcRemoteActionResults + operationId: deviceManagement.deviceHealthScripts.deviceRunStates.managedDevice_getCloudPcRemoteActionResults + parameters: + - name: deviceHealthScript-id + in: path + description: 'key: id of deviceHealthScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceHealthScript + - name: deviceHealthScriptDeviceState-id + in: path + description: 'key: id of deviceHealthScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceHealthScriptDeviceState + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()': get: tags: @@ -541,6 +780,7 @@ paths: tags: - deviceManagement.Functions summary: Invoke function getRemediationHistory + description: Function to get the number of remediations by a device health scripts operationId: deviceManagement.deviceHealthScripts_getRemediationHistory parameters: - name: deviceHealthScript-id @@ -592,6 +832,39 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getCloudPcRemoteActionResults + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.managedDevice_getCloudPcRemoteActionResults + parameters: + - name: deviceManagementScript-id + in: path + description: 'key: id of deviceManagementScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()': get: tags: @@ -657,6 +930,46 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getCloudPcRemoteActionResults + operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_getCloudPcRemoteActionResults + parameters: + - name: deviceManagementScript-id + in: path + description: 'key: id of deviceManagementScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()': get: tags: @@ -736,6 +1049,39 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getCloudPcRemoteActionResults + operationId: deviceManagement.deviceShellScripts.deviceRunStates.managedDevice_getCloudPcRemoteActionResults + parameters: + - name: deviceShellScript-id + in: path + description: 'key: id of deviceShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceShellScript + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()': get: tags: @@ -801,6 +1147,46 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getCloudPcRemoteActionResults + operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.managedDevice_getCloudPcRemoteActionResults + parameters: + - name: deviceShellScript-id + in: path + description: 'key: id of deviceShellScript' + required: true + schema: + type: string + x-ms-docs-key-type: deviceShellScript + - name: deviceManagementScriptUserState-id + in: path + description: 'key: id of deviceManagementScriptUserState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptUserState + - name: deviceManagementScriptDeviceState-id + in: path + description: 'key: id of deviceManagementScriptDeviceState' + required: true + schema: + type: string + x-ms-docs-key-type: deviceManagementScriptDeviceState + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()': get: tags: @@ -913,6 +1299,32 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.getCloudPcRemoteActionResults()': + get: + tags: + - deviceManagement.Functions + summary: Invoke function getCloudPcRemoteActionResults + operationId: deviceManagement.managedDevices_getCloudPcRemoteActionResults + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey()': get: tags: @@ -1107,6 +1519,7 @@ paths: tags: - deviceManagement.Functions summary: Invoke function getAssignedRoleDetails + description: Retrieves the assigned role definitions and role assignments of the currently authenticated user. operationId: deviceManagement_getAssignedRoleDetails responses: '200': @@ -1632,6 +2045,35 @@ components: additionalProperties: type: object description: Represents result of GetState API. + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.deviceCompliancePolicySettingState: title: deviceCompliancePolicySettingState type: object @@ -2394,6 +2836,36 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.actionState: + title: actionState + enum: + - none + - pending + - canceled + - active + - done + - failed + - notSupported + type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object microsoft.graph.settingSource: title: settingSource type: object @@ -2598,6 +3070,19 @@ components: $ref: '#/components/schemas/odata.error.main' additionalProperties: type: object + microsoft.graph.keyValuePair: + title: keyValuePair + type: object + properties: + name: + type: string + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' + value: + type: string + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' + nullable: true + additionalProperties: + type: object microsoft.graph.settingSourceType: title: settingSourceType enum: diff --git a/openApiDocs/beta/DeviceManagement.yml b/openApiDocs/beta/DeviceManagement.yml index 6d070d0377a..e99f7dc7107 100644 --- a/openApiDocs/beta/DeviceManagement.yml +++ b/openApiDocs/beta/DeviceManagement.yml @@ -69,7 +69,11 @@ paths: - softwareUpdateStatusSummary - configurationCategories - configurationPolicies + - configurationPolicyTemplates - configurationSettings + - reusablePolicySettings + - reusableSettings + - templateSettings - complianceManagementPartners - conditionalAccessSettings - deviceCategories @@ -84,6 +88,7 @@ paths: - settingDefinitions - templates - applePushNotificationCertificate + - cloudPCConnectivityIssues - comanagedDevices - comanagementEligibleDevices - dataSharingConsents @@ -109,6 +114,7 @@ paths: - userExperienceAnalyticsCategories - userExperienceAnalyticsDeviceMetricHistory - userExperienceAnalyticsDevicePerformance + - userExperienceAnalyticsDeviceScores - userExperienceAnalyticsDeviceStartupHistory - userExperienceAnalyticsDeviceStartupProcesses - userExperienceAnalyticsDeviceStartupProcessPerformance @@ -121,6 +127,7 @@ paths: - userExperienceAnalyticsRemoteConnection - userExperienceAnalyticsResourcePerformance - userExperienceAnalyticsScoreHistory + - userExperienceAnalyticsWorkFromAnywhereMetrics - windowsMalwareInformation - derivedCredentials - resourceAccessProfiles @@ -205,7 +212,11 @@ paths: - softwareUpdateStatusSummary - configurationCategories - configurationPolicies + - configurationPolicyTemplates - configurationSettings + - reusablePolicySettings + - reusableSettings + - templateSettings - complianceManagementPartners - conditionalAccessSettings - deviceCategories @@ -220,6 +231,7 @@ paths: - settingDefinitions - templates - applePushNotificationCertificate + - cloudPCConnectivityIssues - comanagedDevices - comanagementEligibleDevices - dataSharingConsents @@ -245,6 +257,7 @@ paths: - userExperienceAnalyticsCategories - userExperienceAnalyticsDeviceMetricHistory - userExperienceAnalyticsDevicePerformance + - userExperienceAnalyticsDeviceScores - userExperienceAnalyticsDeviceStartupHistory - userExperienceAnalyticsDeviceStartupProcesses - userExperienceAnalyticsDeviceStartupProcessPerformance @@ -257,6 +270,7 @@ paths: - userExperienceAnalyticsRemoteConnection - userExperienceAnalyticsResourcePerformance - userExperienceAnalyticsScoreHistory + - userExperienceAnalyticsWorkFromAnywhereMetrics - windowsMalwareInformation - derivedCredentials - resourceAccessProfiles @@ -367,8 +381,16 @@ paths: operationId: deviceManagement.ListConfigurationCategories configurationPolicies: operationId: deviceManagement.ListConfigurationPolicies + configurationPolicyTemplates: + operationId: deviceManagement.ListConfigurationPolicyTemplates configurationSettings: operationId: deviceManagement.ListConfigurationSettings + reusablePolicySettings: + operationId: deviceManagement.ListReusablePolicySettings + reusableSettings: + operationId: deviceManagement.ListReusableSettings + templateSettings: + operationId: deviceManagement.ListTemplateSettings complianceManagementPartners: operationId: deviceManagement.ListComplianceManagementPartners conditionalAccessSettings: @@ -397,6 +419,8 @@ paths: operationId: deviceManagement.ListTemplates applePushNotificationCertificate: operationId: deviceManagement.GetApplePushNotificationCertificate + cloudPCConnectivityIssues: + operationId: deviceManagement.ListCloudPCConnectivityIssues comanagedDevices: operationId: deviceManagement.ListComanagedDevices comanagementEligibleDevices: @@ -447,6 +471,8 @@ paths: operationId: deviceManagement.ListUserExperienceAnalyticsDeviceMetricHistory userExperienceAnalyticsDevicePerformance: operationId: deviceManagement.ListUserExperienceAnalyticsDevicePerformance + userExperienceAnalyticsDeviceScores: + operationId: deviceManagement.ListUserExperienceAnalyticsDeviceScores userExperienceAnalyticsDeviceStartupHistory: operationId: deviceManagement.ListUserExperienceAnalyticsDeviceStartupHistory userExperienceAnalyticsDeviceStartupProcesses: @@ -471,6 +497,8 @@ paths: operationId: deviceManagement.ListUserExperienceAnalyticsResourcePerformance userExperienceAnalyticsScoreHistory: operationId: deviceManagement.ListUserExperienceAnalyticsScoreHistory + userExperienceAnalyticsWorkFromAnywhereMetrics: + operationId: deviceManagement.ListUserExperienceAnalyticsWorkFromAnywhereMetrics windowsMalwareInformation: operationId: deviceManagement.ListWindowsMalwareInformation derivedCredentials: @@ -583,6 +611,7 @@ paths: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Get advancedThreatProtectionOnboardingStateSummary from deviceManagement + description: The summary state of ATP onboarding state for this account. operationId: deviceManagement_GetAdvancedThreatProtectionOnboardingStateSummary parameters: - name: $select @@ -636,6 +665,7 @@ paths: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Update the navigation property advancedThreatProtectionOnboardingStateSummary in deviceManagement + description: The summary state of ATP onboarding state for this account. operationId: deviceManagement_UpdateAdvancedThreatProtectionOnboardingStateSummary requestBody: description: New navigation property values @@ -654,6 +684,7 @@ paths: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Delete navigation property advancedThreatProtectionOnboardingStateSummary for deviceManagement + description: The summary state of ATP onboarding state for this account. operationId: deviceManagement_DeleteAdvancedThreatProtectionOnboardingStateSummary parameters: - name: If-Match @@ -672,6 +703,7 @@ paths: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Get advancedThreatProtectionOnboardingDeviceSettingStates from deviceManagement + description: Not yet documented operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary_ListAdvancedThreatProtectionOnboardingDeviceSettingStates parameters: - $ref: '#/components/parameters/top' @@ -779,6 +811,7 @@ paths: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Create new navigation property to advancedThreatProtectionOnboardingDeviceSettingStates for deviceManagement + description: Not yet documented operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary_CreateAdvancedThreatProtectionOnboardingDeviceSettingStates requestBody: description: New navigation property @@ -802,6 +835,7 @@ paths: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Get advancedThreatProtectionOnboardingDeviceSettingStates from deviceManagement + description: Not yet documented operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary_GetAdvancedThreatProtectionOnboardingDeviceSettingStates parameters: - name: advancedThreatProtectionOnboardingDeviceSettingState-id @@ -861,6 +895,7 @@ paths: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Update the navigation property advancedThreatProtectionOnboardingDeviceSettingStates in deviceManagement + description: Not yet documented operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary_UpdateAdvancedThreatProtectionOnboardingDeviceSettingStates parameters: - name: advancedThreatProtectionOnboardingDeviceSettingState-id @@ -887,6 +922,7 @@ paths: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Delete navigation property advancedThreatProtectionOnboardingDeviceSettingStates for deviceManagement + description: Not yet documented operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary_DeleteAdvancedThreatProtectionOnboardingDeviceSettingStates parameters: - name: advancedThreatProtectionOnboardingDeviceSettingState-id @@ -912,6 +948,7 @@ paths: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Get androidForWorkAppConfigurationSchemas from deviceManagement + description: Android for Work app configuration schema entities. operationId: deviceManagement_ListAndroidForWorkAppConfigurationSchemas parameters: - $ref: '#/components/parameters/top' @@ -989,6 +1026,7 @@ paths: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Create new navigation property to androidForWorkAppConfigurationSchemas for deviceManagement + description: Android for Work app configuration schema entities. operationId: deviceManagement_CreateAndroidForWorkAppConfigurationSchemas requestBody: description: New navigation property @@ -1012,6 +1050,7 @@ paths: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Get androidForWorkAppConfigurationSchemas from deviceManagement + description: Android for Work app configuration schema entities. operationId: deviceManagement_GetAndroidForWorkAppConfigurationSchemas parameters: - name: androidForWorkAppConfigurationSchema-id @@ -1061,6 +1100,7 @@ paths: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Update the navigation property androidForWorkAppConfigurationSchemas in deviceManagement + description: Android for Work app configuration schema entities. operationId: deviceManagement_UpdateAndroidForWorkAppConfigurationSchemas parameters: - name: androidForWorkAppConfigurationSchema-id @@ -1087,6 +1127,7 @@ paths: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Delete navigation property androidForWorkAppConfigurationSchemas for deviceManagement + description: Android for Work app configuration schema entities. operationId: deviceManagement_DeleteAndroidForWorkAppConfigurationSchemas parameters: - name: androidForWorkAppConfigurationSchema-id @@ -1112,6 +1153,7 @@ paths: tags: - deviceManagement.androidForWorkSettings summary: Get androidForWorkSettings from deviceManagement + description: The singleton Android for Work settings entity. operationId: deviceManagement_GetAndroidForWorkSettings parameters: - name: $select @@ -1161,6 +1203,7 @@ paths: tags: - deviceManagement.androidForWorkSettings summary: Update the navigation property androidForWorkSettings in deviceManagement + description: The singleton Android for Work settings entity. operationId: deviceManagement_UpdateAndroidForWorkSettings requestBody: description: New navigation property values @@ -1179,6 +1222,7 @@ paths: tags: - deviceManagement.androidForWorkSettings summary: Delete navigation property androidForWorkSettings for deviceManagement + description: The singleton Android for Work settings entity. operationId: deviceManagement_DeleteAndroidForWorkSettings parameters: - name: If-Match @@ -1197,6 +1241,7 @@ paths: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Get androidManagedStoreAccountEnterpriseSettings from deviceManagement + description: The singleton Android managed store account enterprise settings entity. operationId: deviceManagement_GetAndroidManagedStoreAccountEnterpriseSettings parameters: - name: $select @@ -1248,6 +1293,7 @@ paths: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Update the navigation property androidManagedStoreAccountEnterpriseSettings in deviceManagement + description: The singleton Android managed store account enterprise settings entity. operationId: deviceManagement_UpdateAndroidManagedStoreAccountEnterpriseSettings requestBody: description: New navigation property values @@ -1266,6 +1312,7 @@ paths: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Delete navigation property androidManagedStoreAccountEnterpriseSettings for deviceManagement + description: The singleton Android managed store account enterprise settings entity. operationId: deviceManagement_DeleteAndroidManagedStoreAccountEnterpriseSettings parameters: - name: If-Match @@ -1284,6 +1331,7 @@ paths: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Get androidManagedStoreAppConfigurationSchemas from deviceManagement + description: Android Enterprise app configuration schema entities. operationId: deviceManagement_ListAndroidManagedStoreAppConfigurationSchemas parameters: - $ref: '#/components/parameters/top' @@ -1364,6 +1412,7 @@ paths: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Create new navigation property to androidManagedStoreAppConfigurationSchemas for deviceManagement + description: Android Enterprise app configuration schema entities. operationId: deviceManagement_CreateAndroidManagedStoreAppConfigurationSchemas requestBody: description: New navigation property @@ -1387,6 +1436,7 @@ paths: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Get androidManagedStoreAppConfigurationSchemas from deviceManagement + description: Android Enterprise app configuration schema entities. operationId: deviceManagement_GetAndroidManagedStoreAppConfigurationSchemas parameters: - name: androidManagedStoreAppConfigurationSchema-id @@ -1437,6 +1487,7 @@ paths: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Update the navigation property androidManagedStoreAppConfigurationSchemas in deviceManagement + description: Android Enterprise app configuration schema entities. operationId: deviceManagement_UpdateAndroidManagedStoreAppConfigurationSchemas parameters: - name: androidManagedStoreAppConfigurationSchema-id @@ -1463,6 +1514,7 @@ paths: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Delete navigation property androidManagedStoreAppConfigurationSchemas for deviceManagement + description: Android Enterprise app configuration schema entities. operationId: deviceManagement_DeleteAndroidManagedStoreAppConfigurationSchemas parameters: - name: androidManagedStoreAppConfigurationSchema-id @@ -1488,6 +1540,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Get assignmentFilters from deviceManagement + description: The list of assignment filters operationId: deviceManagement_ListAssignmentFilters parameters: - $ref: '#/components/parameters/top' @@ -1580,6 +1633,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Create new navigation property to assignmentFilters for deviceManagement + description: The list of assignment filters operationId: deviceManagement_CreateAssignmentFilters requestBody: description: New navigation property @@ -1603,6 +1657,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Get assignmentFilters from deviceManagement + description: The list of assignment filters operationId: deviceManagement_GetAssignmentFilters parameters: - name: deviceAndAppManagementAssignmentFilter-id @@ -1657,6 +1712,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Update the navigation property assignmentFilters in deviceManagement + description: The list of assignment filters operationId: deviceManagement_UpdateAssignmentFilters parameters: - name: deviceAndAppManagementAssignmentFilter-id @@ -1683,6 +1739,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Delete navigation property assignmentFilters for deviceManagement + description: The list of assignment filters operationId: deviceManagement_DeleteAssignmentFilters parameters: - name: deviceAndAppManagementAssignmentFilter-id @@ -1708,6 +1765,7 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Get categories from deviceManagement + description: The available categories operationId: deviceManagement_ListCategories parameters: - $ref: '#/components/parameters/top' @@ -1787,6 +1845,7 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Create new navigation property to categories for deviceManagement + description: The available categories operationId: deviceManagement_CreateCategories requestBody: description: New navigation property @@ -1810,6 +1869,7 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Get categories from deviceManagement + description: The available categories operationId: deviceManagement_GetCategories parameters: - name: deviceManagementSettingCategory-id @@ -1866,6 +1926,7 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Update the navigation property categories in deviceManagement + description: The available categories operationId: deviceManagement_UpdateCategories parameters: - name: deviceManagementSettingCategory-id @@ -1892,6 +1953,7 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Delete navigation property categories for deviceManagement + description: The available categories operationId: deviceManagement_DeleteCategories parameters: - name: deviceManagementSettingCategory-id @@ -1917,6 +1979,7 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Get settingDefinitions from deviceManagement + description: The setting definitions this category contains operationId: deviceManagement.categories_ListSettingDefinitions parameters: - name: deviceManagementSettingCategory-id @@ -2028,6 +2091,7 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Create new navigation property to settingDefinitions for deviceManagement + description: The setting definitions this category contains operationId: deviceManagement.categories_CreateSettingDefinitions parameters: - name: deviceManagementSettingCategory-id @@ -2059,6 +2123,7 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Get settingDefinitions from deviceManagement + description: The setting definitions this category contains operationId: deviceManagement.categories_GetSettingDefinitions parameters: - name: deviceManagementSettingCategory-id @@ -2124,6 +2189,7 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Update the navigation property settingDefinitions in deviceManagement + description: The setting definitions this category contains operationId: deviceManagement.categories_UpdateSettingDefinitions parameters: - name: deviceManagementSettingCategory-id @@ -2157,6 +2223,7 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Delete navigation property settingDefinitions for deviceManagement + description: The setting definitions this category contains operationId: deviceManagement.categories_DeleteSettingDefinitions parameters: - name: deviceManagementSettingCategory-id @@ -2189,6 +2256,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get comanagedDevices from deviceManagement + description: The list of co-managed devices report operationId: deviceManagement_ListComanagedDevices parameters: - $ref: '#/components/parameters/top' @@ -2208,6 +2276,8 @@ paths: enum: - id - id desc + - cloudPcRemoteActionResults + - cloudPcRemoteActionResults desc - aadRegistered - aadRegistered desc - activationLockBypassCode @@ -2374,6 +2444,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -2451,8 +2522,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -2473,8 +2544,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -2511,6 +2582,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to comanagedDevices for deviceManagement + description: The list of co-managed devices report operationId: deviceManagement_CreateComanagedDevices requestBody: description: New navigation property @@ -2534,6 +2606,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get comanagedDevices from deviceManagement + description: The list of co-managed devices report operationId: deviceManagement_GetComanagedDevices parameters: - name: managedDevice-id @@ -2554,6 +2627,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -2631,8 +2705,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -2653,8 +2727,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -2672,14 +2746,14 @@ paths: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' links: - deviceCompliancePolicyStates: - operationId: deviceManagement.ComanagedDevices.ListDeviceCompliancePolicyStates - parameters: - managedDevice-id: $request.path.managedDevice-id assignmentFilterEvaluationStatusDetails: operationId: deviceManagement.ComanagedDevices.ListAssignmentFilterEvaluationStatusDetails parameters: managedDevice-id: $request.path.managedDevice-id + deviceCompliancePolicyStates: + operationId: deviceManagement.ComanagedDevices.ListDeviceCompliancePolicyStates + parameters: + managedDevice-id: $request.path.managedDevice-id deviceConfigurationStates: operationId: deviceManagement.ComanagedDevices.ListDeviceConfigurationStates parameters: @@ -2719,6 +2793,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property comanagedDevices in deviceManagement + description: The list of co-managed devices report operationId: deviceManagement_UpdateComanagedDevices parameters: - name: managedDevice-id @@ -2745,6 +2820,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property comanagedDevices for deviceManagement + description: The list of co-managed devices report operationId: deviceManagement_DeleteComanagedDevices parameters: - name: managedDevice-id @@ -2770,6 +2846,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_ListAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id @@ -2851,6 +2928,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to assignmentFilterEvaluationStatusDetails for deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_CreateAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id @@ -2882,6 +2960,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_GetAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id @@ -2937,6 +3016,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property assignmentFilterEvaluationStatusDetails in deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_UpdateAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id @@ -2970,6 +3050,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property assignmentFilterEvaluationStatusDetails for deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_DeleteAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id @@ -3002,6 +3083,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedApps from deviceManagement + description: All applications currently installed on the device operationId: deviceManagement.comanagedDevices_ListDetectedApps parameters: - name: managedDevice-id @@ -3095,6 +3177,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get ref of detectedApps from deviceManagement + description: All applications currently installed on the device operationId: deviceManagement.comanagedDevices_ListRefDetectedApps parameters: - name: managedDevice-id @@ -3157,6 +3240,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property ref to detectedApps for deviceManagement + description: All applications currently installed on the device operationId: deviceManagement.comanagedDevices_CreateRefDetectedApps parameters: - name: managedDevice-id @@ -3192,6 +3276,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCategory from deviceManagement + description: Device category operationId: deviceManagement.comanagedDevices_GetDeviceCategory parameters: - name: managedDevice-id @@ -3242,6 +3327,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceCategory in deviceManagement + description: Device category operationId: deviceManagement.comanagedDevices_UpdateDeviceCategory parameters: - name: managedDevice-id @@ -3268,6 +3354,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceCategory for deviceManagement + description: Device category operationId: deviceManagement.comanagedDevices_DeleteDeviceCategory parameters: - name: managedDevice-id @@ -3293,6 +3380,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.comanagedDevices_ListDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -3395,6 +3483,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to deviceCompliancePolicyStates for deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.comanagedDevices_CreateDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -3426,6 +3515,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.comanagedDevices_GetDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -3488,6 +3578,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceCompliancePolicyStates in deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.comanagedDevices_UpdateDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -3521,6 +3612,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceCompliancePolicyStates for deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.comanagedDevices_DeleteDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -3553,6 +3645,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.comanagedDevices_ListDeviceConfigurationStates parameters: - name: managedDevice-id @@ -3655,6 +3748,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to deviceConfigurationStates for deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.comanagedDevices_CreateDeviceConfigurationStates parameters: - name: managedDevice-id @@ -3686,6 +3780,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.comanagedDevices_GetDeviceConfigurationStates parameters: - name: managedDevice-id @@ -3748,6 +3843,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceConfigurationStates in deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.comanagedDevices_UpdateDeviceConfigurationStates parameters: - name: managedDevice-id @@ -3781,6 +3877,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceConfigurationStates for deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.comanagedDevices_DeleteDeviceConfigurationStates parameters: - name: managedDevice-id @@ -3813,6 +3910,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get logCollectionRequests from deviceManagement + description: List of log collection requests operationId: deviceManagement.comanagedDevices_ListLogCollectionRequests parameters: - name: managedDevice-id @@ -3915,6 +4013,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to logCollectionRequests for deviceManagement + description: List of log collection requests operationId: deviceManagement.comanagedDevices_CreateLogCollectionRequests parameters: - name: managedDevice-id @@ -3946,6 +4045,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get logCollectionRequests from deviceManagement + description: List of log collection requests operationId: deviceManagement.comanagedDevices_GetLogCollectionRequests parameters: - name: managedDevice-id @@ -4008,6 +4108,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property logCollectionRequests in deviceManagement + description: List of log collection requests operationId: deviceManagement.comanagedDevices_UpdateLogCollectionRequests parameters: - name: managedDevice-id @@ -4041,6 +4142,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property logCollectionRequests for deviceManagement + description: List of log collection requests operationId: deviceManagement.comanagedDevices_DeleteLogCollectionRequests parameters: - name: managedDevice-id @@ -4073,6 +4175,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_ListManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id @@ -4175,6 +4278,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to managedDeviceMobileAppConfigurationStates for deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_CreateManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id @@ -4206,6 +4310,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_GetManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id @@ -4268,6 +4373,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property managedDeviceMobileAppConfigurationStates in deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_UpdateManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id @@ -4301,6 +4407,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property managedDeviceMobileAppConfigurationStates for deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_DeleteManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id @@ -4333,6 +4440,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get securityBaselineStates from deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.comanagedDevices_ListSecurityBaselineStates parameters: - name: managedDevice-id @@ -4425,6 +4533,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to securityBaselineStates for deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.comanagedDevices_CreateSecurityBaselineStates parameters: - name: managedDevice-id @@ -4456,6 +4565,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get securityBaselineStates from deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.comanagedDevices_GetSecurityBaselineStates parameters: - name: managedDevice-id @@ -4522,6 +4632,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property securityBaselineStates in deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.comanagedDevices_UpdateSecurityBaselineStates parameters: - name: managedDevice-id @@ -4555,6 +4666,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property securityBaselineStates for deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.comanagedDevices_DeleteSecurityBaselineStates parameters: - name: managedDevice-id @@ -4587,6 +4699,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get settingStates from deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.comanagedDevices.securityBaselineStates_ListSettingStates parameters: - name: managedDevice-id @@ -4696,6 +4809,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to settingStates for deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.comanagedDevices.securityBaselineStates_CreateSettingStates parameters: - name: managedDevice-id @@ -4734,6 +4848,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get settingStates from deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.comanagedDevices.securityBaselineStates_GetSettingStates parameters: - name: managedDevice-id @@ -4803,6 +4918,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property settingStates in deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.comanagedDevices.securityBaselineStates_UpdateSettingStates parameters: - name: managedDevice-id @@ -4843,6 +4959,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property settingStates for deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.comanagedDevices.securityBaselineStates_DeleteSettingStates parameters: - name: managedDevice-id @@ -4882,6 +4999,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get users from deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.comanagedDevices_ListUsers parameters: - name: managedDevice-id @@ -5160,6 +5278,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -5232,6 +5351,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -5305,6 +5425,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to users for deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.comanagedDevices_CreateUsers parameters: - name: managedDevice-id @@ -5336,6 +5457,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get users from deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.comanagedDevices_GetUsers parameters: - name: managedDevice-id @@ -5453,6 +5575,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -5525,6 +5648,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -5654,6 +5778,11 @@ paths: parameters: managedDevice-id: $request.path.managedDevice-id user-id: $request.path.user-id + transitiveReports: + operationId: deviceManagement.comanagedDevices.Users.ListTransitiveReports + parameters: + managedDevice-id: $request.path.managedDevice-id + user-id: $request.path.user-id calendar: operationId: deviceManagement.comanagedDevices.Users.GetCalendar parameters: @@ -5886,6 +6015,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property users in deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.comanagedDevices_UpdateUsers parameters: - name: managedDevice-id @@ -5919,6 +6049,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property users for deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.comanagedDevices_DeleteUsers parameters: - name: managedDevice-id @@ -5951,6 +6082,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get windowsProtectionState from deviceManagement + description: The device protection status. operationId: deviceManagement.comanagedDevices_GetWindowsProtectionState parameters: - name: managedDevice-id @@ -6025,6 +6157,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property windowsProtectionState in deviceManagement + description: The device protection status. operationId: deviceManagement.comanagedDevices_UpdateWindowsProtectionState parameters: - name: managedDevice-id @@ -6051,6 +6184,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property windowsProtectionState for deviceManagement + description: The device protection status. operationId: deviceManagement.comanagedDevices_DeleteWindowsProtectionState parameters: - name: managedDevice-id @@ -6076,6 +6210,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedMalwareState from deviceManagement + description: Device malware list operationId: deviceManagement.comanagedDevices.windowsProtectionState_ListDetectedMalwareState parameters: - name: managedDevice-id @@ -6184,6 +6319,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to detectedMalwareState for deviceManagement + description: Device malware list operationId: deviceManagement.comanagedDevices.windowsProtectionState_CreateDetectedMalwareState parameters: - name: managedDevice-id @@ -6215,6 +6351,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedMalwareState from deviceManagement + description: Device malware list operationId: deviceManagement.comanagedDevices.windowsProtectionState_GetDetectedMalwareState parameters: - name: managedDevice-id @@ -6279,6 +6416,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property detectedMalwareState in deviceManagement + description: Device malware list operationId: deviceManagement.comanagedDevices.windowsProtectionState_UpdateDetectedMalwareState parameters: - name: managedDevice-id @@ -6312,6 +6450,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property detectedMalwareState for deviceManagement + description: Device malware list operationId: deviceManagement.comanagedDevices.windowsProtectionState_DeleteDetectedMalwareState parameters: - name: managedDevice-id @@ -6344,6 +6483,7 @@ paths: tags: - deviceManagement.dataSharingConsent summary: Get dataSharingConsents from deviceManagement + description: Data sharing consents. operationId: deviceManagement_ListDataSharingConsents parameters: - $ref: '#/components/parameters/top' @@ -6433,6 +6573,7 @@ paths: tags: - deviceManagement.dataSharingConsent summary: Create new navigation property to dataSharingConsents for deviceManagement + description: Data sharing consents. operationId: deviceManagement_CreateDataSharingConsents requestBody: description: New navigation property @@ -6456,6 +6597,7 @@ paths: tags: - deviceManagement.dataSharingConsent summary: Get dataSharingConsents from deviceManagement + description: Data sharing consents. operationId: deviceManagement_GetDataSharingConsents parameters: - name: dataSharingConsent-id @@ -6509,6 +6651,7 @@ paths: tags: - deviceManagement.dataSharingConsent summary: Update the navigation property dataSharingConsents in deviceManagement + description: Data sharing consents. operationId: deviceManagement_UpdateDataSharingConsents parameters: - name: dataSharingConsent-id @@ -6535,6 +6678,7 @@ paths: tags: - deviceManagement.dataSharingConsent summary: Delete navigation property dataSharingConsents for deviceManagement + description: Data sharing consents. operationId: deviceManagement_DeleteDataSharingConsents parameters: - name: dataSharingConsent-id @@ -6560,6 +6704,7 @@ paths: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Get derivedCredentials from deviceManagement + description: Collection of Derived credential settings associated with account. operationId: deviceManagement_ListDerivedCredentials parameters: - $ref: '#/components/parameters/top' @@ -6643,6 +6788,7 @@ paths: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Create new navigation property to derivedCredentials for deviceManagement + description: Collection of Derived credential settings associated with account. operationId: deviceManagement_CreateDerivedCredentials requestBody: description: New navigation property @@ -6666,6 +6812,7 @@ paths: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Get derivedCredentials from deviceManagement + description: Collection of Derived credential settings associated with account. operationId: deviceManagement_GetDerivedCredentials parameters: - name: deviceManagementDerivedCredentialSettings-id @@ -6717,6 +6864,7 @@ paths: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Update the navigation property derivedCredentials in deviceManagement + description: Collection of Derived credential settings associated with account. operationId: deviceManagement_UpdateDerivedCredentials parameters: - name: deviceManagementDerivedCredentialSettings-id @@ -6743,6 +6891,7 @@ paths: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Delete navigation property derivedCredentials for deviceManagement + description: Collection of Derived credential settings associated with account. operationId: deviceManagement_DeleteDerivedCredentials parameters: - name: deviceManagementDerivedCredentialSettings-id @@ -6768,6 +6917,7 @@ paths: tags: - deviceManagement.detectedApp summary: Get detectedApps from deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_ListDetectedApps parameters: - $ref: '#/components/parameters/top' @@ -6853,6 +7003,7 @@ paths: tags: - deviceManagement.detectedApp summary: Create new navigation property to detectedApps for deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_CreateDetectedApps requestBody: description: New navigation property @@ -6876,6 +7027,7 @@ paths: tags: - deviceManagement.detectedApp summary: Get detectedApps from deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_GetDetectedApps parameters: - name: detectedApp-id @@ -6934,6 +7086,7 @@ paths: tags: - deviceManagement.detectedApp summary: Update the navigation property detectedApps in deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_UpdateDetectedApps parameters: - name: detectedApp-id @@ -6960,6 +7113,7 @@ paths: tags: - deviceManagement.detectedApp summary: Delete navigation property detectedApps for deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_DeleteDetectedApps parameters: - name: detectedApp-id @@ -6985,6 +7139,7 @@ paths: tags: - deviceManagement.detectedApp summary: Get managedDevices from deviceManagement + description: The devices that have the discovered application installed operationId: deviceManagement.detectedApps_ListManagedDevices parameters: - name: detectedApp-id @@ -7011,6 +7166,8 @@ paths: enum: - id - id desc + - cloudPcRemoteActionResults + - cloudPcRemoteActionResults desc - aadRegistered - aadRegistered desc - activationLockBypassCode @@ -7177,6 +7334,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -7254,8 +7412,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -7276,8 +7434,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -7315,6 +7473,7 @@ paths: tags: - deviceManagement.detectedApp summary: Get ref of managedDevices from deviceManagement + description: The devices that have the discovered application installed operationId: deviceManagement.detectedApps_ListRefManagedDevices parameters: - name: detectedApp-id @@ -7341,6 +7500,8 @@ paths: enum: - id - id desc + - cloudPcRemoteActionResults + - cloudPcRemoteActionResults desc - aadRegistered - aadRegistered desc - activationLockBypassCode @@ -7523,6 +7684,7 @@ paths: tags: - deviceManagement.detectedApp summary: Create new navigation property ref to managedDevices for deviceManagement + description: The devices that have the discovered application installed operationId: deviceManagement.detectedApps_CreateRefManagedDevices parameters: - name: detectedApp-id @@ -7558,6 +7720,7 @@ paths: tags: - deviceManagement.deviceCategory summary: Get deviceCategories from deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_ListDeviceCategories parameters: - $ref: '#/components/parameters/top' @@ -7638,6 +7801,7 @@ paths: tags: - deviceManagement.deviceCategory summary: Create new navigation property to deviceCategories for deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_CreateDeviceCategories requestBody: description: New navigation property @@ -7661,6 +7825,7 @@ paths: tags: - deviceManagement.deviceCategory summary: Get deviceCategories from deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_GetDeviceCategories parameters: - name: deviceCategory-id @@ -7711,6 +7876,7 @@ paths: tags: - deviceManagement.deviceCategory summary: Update the navigation property deviceCategories in deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_UpdateDeviceCategories parameters: - name: deviceCategory-id @@ -7737,6 +7903,7 @@ paths: tags: - deviceManagement.deviceCategory summary: Delete navigation property deviceCategories for deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_DeleteDeviceCategories parameters: - name: deviceCategory-id @@ -7762,6 +7929,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceCompliancePolicies from deviceManagement + description: The device compliance policies. operationId: deviceManagement_ListDeviceCompliancePolicies parameters: - $ref: '#/components/parameters/top' @@ -7865,6 +8033,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to deviceCompliancePolicies for deviceManagement + description: The device compliance policies. operationId: deviceManagement_CreateDeviceCompliancePolicies requestBody: description: New navigation property @@ -7888,6 +8057,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceCompliancePolicies from deviceManagement + description: The device compliance policies. operationId: deviceManagement_GetDeviceCompliancePolicies parameters: - name: deviceCompliancePolicy-id @@ -7984,6 +8154,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceCompliancePolicies in deviceManagement + description: The device compliance policies. operationId: deviceManagement_UpdateDeviceCompliancePolicies parameters: - name: deviceCompliancePolicy-id @@ -8010,6 +8181,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceCompliancePolicies for deviceManagement + description: The device compliance policies. operationId: deviceManagement_DeleteDeviceCompliancePolicies parameters: - name: deviceCompliancePolicy-id @@ -8035,6 +8207,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get assignments from deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_ListAssignments parameters: - name: deviceCompliancePolicy-id @@ -8122,6 +8295,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to assignments for deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_CreateAssignments parameters: - name: deviceCompliancePolicy-id @@ -8153,6 +8327,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get assignments from deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_GetAssignments parameters: - name: deviceCompliancePolicy-id @@ -8210,6 +8385,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property assignments in deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_UpdateAssignments parameters: - name: deviceCompliancePolicy-id @@ -8243,6 +8419,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property assignments for deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_DeleteAssignments parameters: - name: deviceCompliancePolicy-id @@ -8275,6 +8452,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceSettingStateSummaries from deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_ListDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id @@ -8380,6 +8558,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to deviceSettingStateSummaries for deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_CreateDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id @@ -8411,6 +8590,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceSettingStateSummaries from deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_GetDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id @@ -8474,6 +8654,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceSettingStateSummaries in deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_UpdateDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id @@ -8507,6 +8688,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceSettingStateSummaries for deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_DeleteDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id @@ -8539,6 +8721,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatuses from deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_ListDeviceStatuses parameters: - name: deviceCompliancePolicy-id @@ -8641,6 +8824,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to deviceStatuses for deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_CreateDeviceStatuses parameters: - name: deviceCompliancePolicy-id @@ -8672,6 +8856,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatuses from deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_GetDeviceStatuses parameters: - name: deviceCompliancePolicy-id @@ -8734,6 +8919,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceStatuses in deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_UpdateDeviceStatuses parameters: - name: deviceCompliancePolicy-id @@ -8767,6 +8953,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceStatuses for deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_DeleteDeviceStatuses parameters: - name: deviceCompliancePolicy-id @@ -8799,6 +8986,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatusOverview from deviceManagement + description: Device compliance devices status overview operationId: deviceManagement.deviceCompliancePolicies_GetDeviceStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -8855,6 +9043,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceStatusOverview in deviceManagement + description: Device compliance devices status overview operationId: deviceManagement.deviceCompliancePolicies_UpdateDeviceStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -8881,6 +9070,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceStatusOverview for deviceManagement + description: Device compliance devices status overview operationId: deviceManagement.deviceCompliancePolicies_DeleteDeviceStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -8906,6 +9096,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_ListScheduledActionsForRule parameters: - name: deviceCompliancePolicy-id @@ -8989,6 +9180,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to scheduledActionsForRule for deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_CreateScheduledActionsForRule parameters: - name: deviceCompliancePolicy-id @@ -9020,6 +9212,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_GetScheduledActionsForRule parameters: - name: deviceCompliancePolicy-id @@ -9083,6 +9276,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property scheduledActionsForRule in deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_UpdateScheduledActionsForRule parameters: - name: deviceCompliancePolicy-id @@ -9116,6 +9310,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property scheduledActionsForRule for deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_DeleteScheduledActionsForRule parameters: - name: deviceCompliancePolicy-id @@ -9148,6 +9343,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement + description: The list of scheduled action configurations for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule_ListScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id @@ -9245,6 +9441,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to scheduledActionConfigurations for deviceManagement + description: The list of scheduled action configurations for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule_CreateScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id @@ -9283,6 +9480,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement + description: The list of scheduled action configurations for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule_GetScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id @@ -9348,6 +9546,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property scheduledActionConfigurations in deviceManagement + description: The list of scheduled action configurations for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule_UpdateScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id @@ -9388,6 +9587,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property scheduledActionConfigurations for deviceManagement + description: The list of scheduled action configurations for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule_DeleteScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id @@ -9427,6 +9627,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatuses from deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_ListUserStatuses parameters: - name: deviceCompliancePolicy-id @@ -9520,6 +9721,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to userStatuses for deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_CreateUserStatuses parameters: - name: deviceCompliancePolicy-id @@ -9551,6 +9753,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatuses from deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_GetUserStatuses parameters: - name: deviceCompliancePolicy-id @@ -9610,6 +9813,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property userStatuses in deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_UpdateUserStatuses parameters: - name: deviceCompliancePolicy-id @@ -9643,6 +9847,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property userStatuses for deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_DeleteUserStatuses parameters: - name: deviceCompliancePolicy-id @@ -9675,6 +9880,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatusOverview from deviceManagement + description: Device compliance users status overview operationId: deviceManagement.deviceCompliancePolicies_GetUserStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -9730,6 +9936,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property userStatusOverview in deviceManagement + description: Device compliance users status overview operationId: deviceManagement.deviceCompliancePolicies_UpdateUserStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -9756,6 +9963,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property userStatusOverview for deviceManagement + description: Device compliance users status overview operationId: deviceManagement.deviceCompliancePolicies_DeleteUserStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -9781,6 +9989,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicyDeviceStateSummary summary: Get deviceCompliancePolicyDeviceStateSummary from deviceManagement + description: The device compliance state summary for this account. operationId: deviceManagement_GetDeviceCompliancePolicyDeviceStateSummary parameters: - name: $select @@ -9830,6 +10039,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicyDeviceStateSummary summary: Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement + description: The device compliance state summary for this account. operationId: deviceManagement_UpdateDeviceCompliancePolicyDeviceStateSummary requestBody: description: New navigation property values @@ -9848,6 +10058,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicyDeviceStateSummary summary: Delete navigation property deviceCompliancePolicyDeviceStateSummary for deviceManagement + description: The device compliance state summary for this account. operationId: deviceManagement_DeleteDeviceCompliancePolicyDeviceStateSummary parameters: - name: If-Match @@ -9866,6 +10077,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceCompliancePolicySettingStateSummaries from deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_ListDeviceCompliancePolicySettingStateSummaries parameters: - $ref: '#/components/parameters/top' @@ -9969,6 +10181,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_CreateDeviceCompliancePolicySettingStateSummaries requestBody: description: New navigation property @@ -9992,6 +10205,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceCompliancePolicySettingStateSummaries from deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_GetDeviceCompliancePolicySettingStateSummaries parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -10056,6 +10270,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_UpdateDeviceCompliancePolicySettingStateSummaries parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -10082,6 +10297,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_DeleteDeviceCompliancePolicySettingStateSummaries parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -10107,6 +10323,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceComplianceSettingStates from deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_ListDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -10221,6 +10438,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Create new navigation property to deviceComplianceSettingStates for deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_CreateDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -10252,6 +10470,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceComplianceSettingStates from deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_GetDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -10318,6 +10537,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Update the navigation property deviceComplianceSettingStates in deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_UpdateDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -10351,6 +10571,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Delete navigation property deviceComplianceSettingStates for deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_DeleteDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -10383,6 +10604,7 @@ paths: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Get deviceConfigurationConflictSummary from deviceManagement + description: Summary of policies in conflict state for this account. operationId: deviceManagement_ListDeviceConfigurationConflictSummary parameters: - $ref: '#/components/parameters/top' @@ -10463,6 +10685,7 @@ paths: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Create new navigation property to deviceConfigurationConflictSummary for deviceManagement + description: Summary of policies in conflict state for this account. operationId: deviceManagement_CreateDeviceConfigurationConflictSummary requestBody: description: New navigation property @@ -10486,6 +10709,7 @@ paths: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Get deviceConfigurationConflictSummary from deviceManagement + description: Summary of policies in conflict state for this account. operationId: deviceManagement_GetDeviceConfigurationConflictSummary parameters: - name: deviceConfigurationConflictSummary-id @@ -10536,6 +10760,7 @@ paths: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Update the navigation property deviceConfigurationConflictSummary in deviceManagement + description: Summary of policies in conflict state for this account. operationId: deviceManagement_UpdateDeviceConfigurationConflictSummary parameters: - name: deviceConfigurationConflictSummary-id @@ -10562,6 +10787,7 @@ paths: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Delete navigation property deviceConfigurationConflictSummary for deviceManagement + description: Summary of policies in conflict state for this account. operationId: deviceManagement_DeleteDeviceConfigurationConflictSummary parameters: - name: deviceConfigurationConflictSummary-id @@ -10587,6 +10813,7 @@ paths: tags: - deviceManagement.deviceConfigurationDeviceStateSummary summary: Get deviceConfigurationDeviceStateSummaries from deviceManagement + description: The device configuration device state summary for this account. operationId: deviceManagement_GetDeviceConfigurationDeviceStateSummaries parameters: - name: $select @@ -10634,6 +10861,7 @@ paths: tags: - deviceManagement.deviceConfigurationDeviceStateSummary summary: Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement + description: The device configuration device state summary for this account. operationId: deviceManagement_UpdateDeviceConfigurationDeviceStateSummaries requestBody: description: New navigation property values @@ -10652,6 +10880,7 @@ paths: tags: - deviceManagement.deviceConfigurationDeviceStateSummary summary: Delete navigation property deviceConfigurationDeviceStateSummaries for deviceManagement + description: The device configuration device state summary for this account. operationId: deviceManagement_DeleteDeviceConfigurationDeviceStateSummaries parameters: - name: If-Match @@ -10670,6 +10899,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceConfigurations from deviceManagement + description: The device configurations. operationId: deviceManagement_ListDeviceConfigurations parameters: - $ref: '#/components/parameters/top' @@ -10785,6 +11015,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Create new navigation property to deviceConfigurations for deviceManagement + description: The device configurations. operationId: deviceManagement_CreateDeviceConfigurations requestBody: description: New navigation property @@ -10808,6 +11039,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceConfigurations from deviceManagement + description: The device configurations. operationId: deviceManagement_GetDeviceConfigurations parameters: - name: deviceConfiguration-id @@ -10908,6 +11140,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceConfigurations in deviceManagement + description: The device configurations. operationId: deviceManagement_UpdateDeviceConfigurations parameters: - name: deviceConfiguration-id @@ -10934,6 +11167,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceConfigurations for deviceManagement + description: The device configurations. operationId: deviceManagement_DeleteDeviceConfigurations parameters: - name: deviceConfiguration-id @@ -10959,6 +11193,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get assignments from deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_ListAssignments parameters: - name: deviceConfiguration-id @@ -11046,6 +11281,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Create new navigation property to assignments for deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_CreateAssignments parameters: - name: deviceConfiguration-id @@ -11077,6 +11313,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get assignments from deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_GetAssignments parameters: - name: deviceConfiguration-id @@ -11134,6 +11371,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property assignments in deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_UpdateAssignments parameters: - name: deviceConfiguration-id @@ -11167,6 +11405,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property assignments for deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_DeleteAssignments parameters: - name: deviceConfiguration-id @@ -11199,6 +11438,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceSettingStateSummaries from deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_ListDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id @@ -11304,6 +11544,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Create new navigation property to deviceSettingStateSummaries for deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_CreateDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id @@ -11335,6 +11576,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceSettingStateSummaries from deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_GetDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id @@ -11398,6 +11640,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceSettingStateSummaries in deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_UpdateDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id @@ -11431,6 +11674,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceSettingStateSummaries for deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_DeleteDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id @@ -11463,6 +11707,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatuses from deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_ListDeviceStatuses parameters: - name: deviceConfiguration-id @@ -11565,6 +11810,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Create new navigation property to deviceStatuses for deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_CreateDeviceStatuses parameters: - name: deviceConfiguration-id @@ -11596,6 +11842,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatuses from deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_GetDeviceStatuses parameters: - name: deviceConfiguration-id @@ -11658,6 +11905,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceStatuses in deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_UpdateDeviceStatuses parameters: - name: deviceConfiguration-id @@ -11691,6 +11939,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceStatuses for deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_DeleteDeviceStatuses parameters: - name: deviceConfiguration-id @@ -11723,6 +11972,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatusOverview from deviceManagement + description: Device Configuration devices status overview operationId: deviceManagement.deviceConfigurations_GetDeviceStatusOverview parameters: - name: deviceConfiguration-id @@ -11779,6 +12029,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceStatusOverview in deviceManagement + description: Device Configuration devices status overview operationId: deviceManagement.deviceConfigurations_UpdateDeviceStatusOverview parameters: - name: deviceConfiguration-id @@ -11805,6 +12056,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceStatusOverview for deviceManagement + description: Device Configuration devices status overview operationId: deviceManagement.deviceConfigurations_DeleteDeviceStatusOverview parameters: - name: deviceConfiguration-id @@ -11830,6 +12082,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_ListGroupAssignments parameters: - name: deviceConfiguration-id @@ -11916,6 +12169,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Create new navigation property to groupAssignments for deviceManagement + description: The list of group assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_CreateGroupAssignments parameters: - name: deviceConfiguration-id @@ -11947,6 +12201,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_GetGroupAssignments parameters: - name: deviceConfiguration-id @@ -12011,6 +12266,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property groupAssignments in deviceManagement + description: The list of group assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_UpdateGroupAssignments parameters: - name: deviceConfiguration-id @@ -12044,6 +12300,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property groupAssignments for deviceManagement + description: The list of group assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_DeleteGroupAssignments parameters: - name: deviceConfiguration-id @@ -12076,6 +12333,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceConfiguration from deviceManagement + description: The navigation link to the Device Configuration being targeted. operationId: deviceManagement.deviceConfigurations.groupAssignments_GetDeviceConfiguration parameters: - name: deviceConfiguration-id @@ -12191,6 +12449,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get ref of deviceConfiguration from deviceManagement + description: The navigation link to the Device Configuration being targeted. operationId: deviceManagement.deviceConfigurations.groupAssignments_GetRefDeviceConfiguration parameters: - name: deviceConfiguration-id @@ -12257,6 +12516,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the ref of navigation property deviceConfiguration in deviceManagement + description: The navigation link to the Device Configuration being targeted. operationId: deviceManagement.deviceConfigurations.groupAssignments_SetRefDeviceConfiguration parameters: - name: deviceConfiguration-id @@ -12292,6 +12552,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete ref of navigation property deviceConfiguration for deviceManagement + description: The navigation link to the Device Configuration being targeted. operationId: deviceManagement.deviceConfigurations.groupAssignments_DeleteRefDeviceConfiguration parameters: - name: deviceConfiguration-id @@ -12324,6 +12585,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get userStatuses from deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_ListUserStatuses parameters: - name: deviceConfiguration-id @@ -12417,6 +12679,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Create new navigation property to userStatuses for deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_CreateUserStatuses parameters: - name: deviceConfiguration-id @@ -12448,6 +12711,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get userStatuses from deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_GetUserStatuses parameters: - name: deviceConfiguration-id @@ -12507,6 +12771,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property userStatuses in deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_UpdateUserStatuses parameters: - name: deviceConfiguration-id @@ -12540,6 +12805,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property userStatuses for deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_DeleteUserStatuses parameters: - name: deviceConfiguration-id @@ -12572,6 +12838,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get userStatusOverview from deviceManagement + description: Device Configuration users status overview operationId: deviceManagement.deviceConfigurations_GetUserStatusOverview parameters: - name: deviceConfiguration-id @@ -12627,6 +12894,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property userStatusOverview in deviceManagement + description: Device Configuration users status overview operationId: deviceManagement.deviceConfigurations_UpdateUserStatusOverview parameters: - name: deviceConfiguration-id @@ -12653,6 +12921,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property userStatusOverview for deviceManagement + description: Device Configuration users status overview operationId: deviceManagement.deviceConfigurations_DeleteUserStatusOverview parameters: - name: deviceConfiguration-id @@ -12678,6 +12947,7 @@ paths: tags: - deviceManagement.deviceConfigurationUserStateSummary summary: Get deviceConfigurationUserStateSummaries from deviceManagement + description: The device configuration user state summary for this account. operationId: deviceManagement_GetDeviceConfigurationUserStateSummaries parameters: - name: $select @@ -12725,6 +12995,7 @@ paths: tags: - deviceManagement.deviceConfigurationUserStateSummary summary: Update the navigation property deviceConfigurationUserStateSummaries in deviceManagement + description: The device configuration user state summary for this account. operationId: deviceManagement_UpdateDeviceConfigurationUserStateSummaries requestBody: description: New navigation property values @@ -12743,6 +13014,7 @@ paths: tags: - deviceManagement.deviceConfigurationUserStateSummary summary: Delete navigation property deviceConfigurationUserStateSummaries for deviceManagement + description: The device configuration user state summary for this account. operationId: deviceManagement_DeleteDeviceConfigurationUserStateSummaries parameters: - name: If-Match @@ -12761,6 +13033,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get deviceHealthScripts from deviceManagement + description: The list of device health scripts associated with the tenant. operationId: deviceManagement_ListDeviceHealthScripts parameters: - $ref: '#/components/parameters/top' @@ -12886,6 +13159,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Create new navigation property to deviceHealthScripts for deviceManagement + description: The list of device health scripts associated with the tenant. operationId: deviceManagement_CreateDeviceHealthScripts requestBody: description: New navigation property @@ -12909,6 +13183,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get deviceHealthScripts from deviceManagement + description: The list of device health scripts associated with the tenant. operationId: deviceManagement_GetDeviceHealthScripts parameters: - name: deviceHealthScript-id @@ -12991,6 +13266,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Update the navigation property deviceHealthScripts in deviceManagement + description: The list of device health scripts associated with the tenant. operationId: deviceManagement_UpdateDeviceHealthScripts parameters: - name: deviceHealthScript-id @@ -13017,6 +13293,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Delete navigation property deviceHealthScripts for deviceManagement + description: The list of device health scripts associated with the tenant. operationId: deviceManagement_DeleteDeviceHealthScripts parameters: - name: deviceHealthScript-id @@ -13042,6 +13319,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device health script operationId: deviceManagement.deviceHealthScripts_ListAssignments parameters: - name: deviceHealthScript-id @@ -13129,6 +13407,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Create new navigation property to assignments for deviceManagement + description: The list of group assignments for the device health script operationId: deviceManagement.deviceHealthScripts_CreateAssignments parameters: - name: deviceHealthScript-id @@ -13160,6 +13439,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device health script operationId: deviceManagement.deviceHealthScripts_GetAssignments parameters: - name: deviceHealthScript-id @@ -13217,6 +13497,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Update the navigation property assignments in deviceManagement + description: The list of group assignments for the device health script operationId: deviceManagement.deviceHealthScripts_UpdateAssignments parameters: - name: deviceHealthScript-id @@ -13250,6 +13531,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Delete navigation property assignments for deviceManagement + description: The list of group assignments for the device health script operationId: deviceManagement.deviceHealthScripts_DeleteAssignments parameters: - name: deviceHealthScript-id @@ -13282,6 +13564,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get deviceRunStates from deviceManagement + description: List of run states for the device health script across all devices operationId: deviceManagement.deviceHealthScripts_ListDeviceRunStates parameters: - name: deviceHealthScript-id @@ -13308,6 +13591,8 @@ paths: enum: - id - id desc + - assignmentFilterIds + - assignmentFilterIds desc - detectionState - detectionState desc - expectedStateUpdateDateTime @@ -13340,6 +13625,7 @@ paths: items: enum: - id + - assignmentFilterIds - detectionState - expectedStateUpdateDateTime - lastStateUpdateDateTime @@ -13392,6 +13678,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Create new navigation property to deviceRunStates for deviceManagement + description: List of run states for the device health script across all devices operationId: deviceManagement.deviceHealthScripts_CreateDeviceRunStates parameters: - name: deviceHealthScript-id @@ -13423,6 +13710,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get deviceRunStates from deviceManagement + description: List of run states for the device health script across all devices operationId: deviceManagement.deviceHealthScripts_GetDeviceRunStates parameters: - name: deviceHealthScript-id @@ -13450,6 +13738,7 @@ paths: items: enum: - id + - assignmentFilterIds - detectionState - expectedStateUpdateDateTime - lastStateUpdateDateTime @@ -13495,6 +13784,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Update the navigation property deviceRunStates in deviceManagement + description: List of run states for the device health script across all devices operationId: deviceManagement.deviceHealthScripts_UpdateDeviceRunStates parameters: - name: deviceHealthScript-id @@ -13528,6 +13818,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Delete navigation property deviceRunStates for deviceManagement + description: List of run states for the device health script across all devices operationId: deviceManagement.deviceHealthScripts_DeleteDeviceRunStates parameters: - name: deviceHealthScript-id @@ -13560,6 +13851,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get managedDevice from deviceManagement + description: The managed device on which the device health script executed operationId: deviceManagement.deviceHealthScripts.deviceRunStates_GetManagedDevice parameters: - name: deviceHealthScript-id @@ -13587,6 +13879,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -13664,8 +13957,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -13686,8 +13979,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -13705,13 +13998,13 @@ paths: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' links: - deviceCompliancePolicyStates: - operationId: deviceManagement.deviceHealthScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates + assignmentFilterEvaluationStatusDetails: + operationId: deviceManagement.deviceHealthScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails parameters: deviceHealthScript-id: $request.path.deviceHealthScript-id deviceHealthScriptDeviceState-id: $request.path.deviceHealthScriptDeviceState-id - assignmentFilterEvaluationStatusDetails: - operationId: deviceManagement.deviceHealthScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails + deviceCompliancePolicyStates: + operationId: deviceManagement.deviceHealthScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates parameters: deviceHealthScript-id: $request.path.deviceHealthScript-id deviceHealthScriptDeviceState-id: $request.path.deviceHealthScriptDeviceState-id @@ -13763,6 +14056,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get ref of managedDevice from deviceManagement + description: The managed device on which the device health script executed operationId: deviceManagement.deviceHealthScripts.deviceRunStates_GetRefManagedDevice parameters: - name: deviceHealthScript-id @@ -13787,13 +14081,13 @@ paths: schema: type: string links: - deviceCompliancePolicyStates: - operationId: deviceManagement.deviceHealthScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates + assignmentFilterEvaluationStatusDetails: + operationId: deviceManagement.deviceHealthScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails parameters: deviceHealthScript-id: $request.path.deviceHealthScript-id deviceHealthScriptDeviceState-id: $request.path.deviceHealthScriptDeviceState-id - assignmentFilterEvaluationStatusDetails: - operationId: deviceManagement.deviceHealthScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails + deviceCompliancePolicyStates: + operationId: deviceManagement.deviceHealthScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates parameters: deviceHealthScript-id: $request.path.deviceHealthScript-id deviceHealthScriptDeviceState-id: $request.path.deviceHealthScriptDeviceState-id @@ -13844,6 +14138,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Update the ref of navigation property managedDevice in deviceManagement + description: The managed device on which the device health script executed operationId: deviceManagement.deviceHealthScripts.deviceRunStates_SetRefManagedDevice parameters: - name: deviceHealthScript-id @@ -13879,6 +14174,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Delete ref of navigation property managedDevice for deviceManagement + description: The managed device on which the device health script executed operationId: deviceManagement.deviceHealthScripts.deviceRunStates_DeleteRefManagedDevice parameters: - name: deviceHealthScript-id @@ -13911,6 +14207,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get runSummary from deviceManagement + description: High level run summary for device health script. operationId: deviceManagement.deviceHealthScripts_GetRunSummary parameters: - name: deviceHealthScript-id @@ -13932,6 +14229,7 @@ paths: enum: - id - detectionScriptErrorDeviceCount + - detectionScriptNotApplicableDeviceCount - detectionScriptPendingDeviceCount - issueDetectedDeviceCount - issueRemediatedCumulativeDeviceCount @@ -13968,6 +14266,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Update the navigation property runSummary in deviceManagement + description: High level run summary for device health script. operationId: deviceManagement.deviceHealthScripts_UpdateRunSummary parameters: - name: deviceHealthScript-id @@ -13994,6 +14293,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Delete navigation property runSummary for deviceManagement + description: High level run summary for device health script. operationId: deviceManagement.deviceHealthScripts_DeleteRunSummary parameters: - name: deviceHealthScript-id @@ -14019,6 +14319,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceManagementScripts from deviceManagement + description: The list of device management scripts associated with the tenant. operationId: deviceManagement_ListDeviceManagementScripts parameters: - $ref: '#/components/parameters/top' @@ -14130,6 +14431,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Create new navigation property to deviceManagementScripts for deviceManagement + description: The list of device management scripts associated with the tenant. operationId: deviceManagement_CreateDeviceManagementScripts requestBody: description: New navigation property @@ -14153,6 +14455,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceManagementScripts from deviceManagement + description: The list of device management scripts associated with the tenant. operationId: deviceManagement_GetDeviceManagementScripts parameters: - name: deviceManagementScript-id @@ -14241,6 +14544,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Update the navigation property deviceManagementScripts in deviceManagement + description: The list of device management scripts associated with the tenant. operationId: deviceManagement_UpdateDeviceManagementScripts parameters: - name: deviceManagementScript-id @@ -14267,6 +14571,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Delete navigation property deviceManagementScripts for deviceManagement + description: The list of device management scripts associated with the tenant. operationId: deviceManagement_DeleteDeviceManagementScripts parameters: - name: deviceManagementScript-id @@ -14292,6 +14597,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_ListAssignments parameters: - name: deviceManagementScript-id @@ -14373,6 +14679,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Create new navigation property to assignments for deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_CreateAssignments parameters: - name: deviceManagementScript-id @@ -14404,6 +14711,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_GetAssignments parameters: - name: deviceManagementScript-id @@ -14459,6 +14767,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Update the navigation property assignments in deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_UpdateAssignments parameters: - name: deviceManagementScript-id @@ -14492,6 +14801,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Delete navigation property assignments for deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_DeleteAssignments parameters: - name: deviceManagementScript-id @@ -14524,6 +14834,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceManagementScripts_ListDeviceRunStates parameters: - name: deviceManagementScript-id @@ -14619,6 +14930,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Create new navigation property to deviceRunStates for deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceManagementScripts_CreateDeviceRunStates parameters: - name: deviceManagementScript-id @@ -14650,6 +14962,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceManagementScripts_GetDeviceRunStates parameters: - name: deviceManagementScript-id @@ -14717,6 +15030,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Update the navigation property deviceRunStates in deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceManagementScripts_UpdateDeviceRunStates parameters: - name: deviceManagementScript-id @@ -14750,6 +15064,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Delete navigation property deviceRunStates for deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceManagementScripts_DeleteDeviceRunStates parameters: - name: deviceManagementScript-id @@ -14782,6 +15097,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceManagementScripts.deviceRunStates_GetManagedDevice parameters: - name: deviceManagementScript-id @@ -14809,6 +15125,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -14886,8 +15203,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -14908,8 +15225,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -14927,13 +15244,13 @@ paths: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' links: - deviceCompliancePolicyStates: - operationId: deviceManagement.deviceManagementScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates + assignmentFilterEvaluationStatusDetails: + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails parameters: deviceManagementScript-id: $request.path.deviceManagementScript-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id - assignmentFilterEvaluationStatusDetails: - operationId: deviceManagement.deviceManagementScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails + deviceCompliancePolicyStates: + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates parameters: deviceManagementScript-id: $request.path.deviceManagementScript-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id @@ -14985,6 +15302,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get ref of managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceManagementScripts.deviceRunStates_GetRefManagedDevice parameters: - name: deviceManagementScript-id @@ -15009,13 +15327,13 @@ paths: schema: type: string links: - deviceCompliancePolicyStates: - operationId: deviceManagement.deviceManagementScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates + assignmentFilterEvaluationStatusDetails: + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails parameters: deviceManagementScript-id: $request.path.deviceManagementScript-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id - assignmentFilterEvaluationStatusDetails: - operationId: deviceManagement.deviceManagementScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails + deviceCompliancePolicyStates: + operationId: deviceManagement.deviceManagementScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates parameters: deviceManagementScript-id: $request.path.deviceManagementScript-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id @@ -15066,6 +15384,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Update the ref of navigation property managedDevice in deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceManagementScripts.deviceRunStates_SetRefManagedDevice parameters: - name: deviceManagementScript-id @@ -15101,6 +15420,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Delete ref of navigation property managedDevice for deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceManagementScripts.deviceRunStates_DeleteRefManagedDevice parameters: - name: deviceManagementScript-id @@ -15133,6 +15453,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_ListGroupAssignments parameters: - name: deviceManagementScript-id @@ -15214,6 +15535,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Create new navigation property to groupAssignments for deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_CreateGroupAssignments parameters: - name: deviceManagementScript-id @@ -15245,6 +15567,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_GetGroupAssignments parameters: - name: deviceManagementScript-id @@ -15300,6 +15623,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Update the navigation property groupAssignments in deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_UpdateGroupAssignments parameters: - name: deviceManagementScript-id @@ -15333,6 +15657,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Delete navigation property groupAssignments for deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_DeleteGroupAssignments parameters: - name: deviceManagementScript-id @@ -15365,6 +15690,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get runSummary from deviceManagement + description: Run summary for device management script. operationId: deviceManagement.deviceManagementScripts_GetRunSummary parameters: - name: deviceManagementScript-id @@ -15417,6 +15743,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get ref of runSummary from deviceManagement + description: Run summary for device management script. operationId: deviceManagement.deviceManagementScripts_GetRefRunSummary parameters: - name: deviceManagementScript-id @@ -15440,6 +15767,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Update the ref of navigation property runSummary in deviceManagement + description: Run summary for device management script. operationId: deviceManagement.deviceManagementScripts_SetRefRunSummary parameters: - name: deviceManagementScript-id @@ -15468,6 +15796,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Delete ref of navigation property runSummary for deviceManagement + description: Run summary for device management script. operationId: deviceManagement.deviceManagementScripts_DeleteRefRunSummary parameters: - name: deviceManagementScript-id @@ -15493,6 +15822,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get userRunStates from deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceManagementScripts_ListUserRunStates parameters: - name: deviceManagementScript-id @@ -15582,6 +15912,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Create new navigation property to userRunStates for deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceManagementScripts_CreateUserRunStates parameters: - name: deviceManagementScript-id @@ -15613,6 +15944,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get userRunStates from deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceManagementScripts_GetUserRunStates parameters: - name: deviceManagementScript-id @@ -15678,6 +16010,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Update the navigation property userRunStates in deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceManagementScripts_UpdateUserRunStates parameters: - name: deviceManagementScript-id @@ -15711,6 +16044,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Delete navigation property userRunStates for deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceManagementScripts_DeleteUserRunStates parameters: - name: deviceManagementScript-id @@ -15743,6 +16077,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceManagementScripts.userRunStates_ListDeviceRunStates parameters: - name: deviceManagementScript-id @@ -15845,6 +16180,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Create new navigation property to deviceRunStates for deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceManagementScripts.userRunStates_CreateDeviceRunStates parameters: - name: deviceManagementScript-id @@ -15883,6 +16219,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceManagementScripts.userRunStates_GetDeviceRunStates parameters: - name: deviceManagementScript-id @@ -15958,6 +16295,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Update the navigation property deviceRunStates in deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceManagementScripts.userRunStates_UpdateDeviceRunStates parameters: - name: deviceManagementScript-id @@ -15998,6 +16336,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Delete navigation property deviceRunStates for deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceManagementScripts.userRunStates_DeleteDeviceRunStates parameters: - name: deviceManagementScript-id @@ -16037,6 +16376,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates_GetManagedDevice parameters: - name: deviceManagementScript-id @@ -16071,6 +16411,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -16148,8 +16489,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -16170,8 +16511,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -16189,14 +16530,14 @@ paths: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' links: - deviceCompliancePolicyStates: - operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates + assignmentFilterEvaluationStatusDetails: + operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails parameters: deviceManagementScript-id: $request.path.deviceManagementScript-id deviceManagementScriptUserState-id: $request.path.deviceManagementScriptUserState-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id - assignmentFilterEvaluationStatusDetails: - operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails + deviceCompliancePolicyStates: + operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates parameters: deviceManagementScript-id: $request.path.deviceManagementScript-id deviceManagementScriptUserState-id: $request.path.deviceManagementScriptUserState-id @@ -16257,6 +16598,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get ref of managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates_GetRefManagedDevice parameters: - name: deviceManagementScript-id @@ -16288,14 +16630,14 @@ paths: schema: type: string links: - deviceCompliancePolicyStates: - operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates + assignmentFilterEvaluationStatusDetails: + operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails parameters: deviceManagementScript-id: $request.path.deviceManagementScript-id deviceManagementScriptUserState-id: $request.path.deviceManagementScriptUserState-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id - assignmentFilterEvaluationStatusDetails: - operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails + deviceCompliancePolicyStates: + operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates parameters: deviceManagementScript-id: $request.path.deviceManagementScript-id deviceManagementScriptUserState-id: $request.path.deviceManagementScriptUserState-id @@ -16355,6 +16697,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Update the ref of navigation property managedDevice in deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates_SetRefManagedDevice parameters: - name: deviceManagementScript-id @@ -16397,6 +16740,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Delete ref of navigation property managedDevice for deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates_DeleteRefManagedDevice parameters: - name: deviceManagementScript-id @@ -16436,6 +16780,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceShellScripts from deviceManagement + description: The list of device shell scripts associated with the tenant. operationId: deviceManagement_ListDeviceShellScripts parameters: - $ref: '#/components/parameters/top' @@ -16550,6 +16895,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Create new navigation property to deviceShellScripts for deviceManagement + description: The list of device shell scripts associated with the tenant. operationId: deviceManagement_CreateDeviceShellScripts requestBody: description: New navigation property @@ -16573,6 +16919,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceShellScripts from deviceManagement + description: The list of device shell scripts associated with the tenant. operationId: deviceManagement_GetDeviceShellScripts parameters: - name: deviceShellScript-id @@ -16662,6 +17009,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Update the navigation property deviceShellScripts in deviceManagement + description: The list of device shell scripts associated with the tenant. operationId: deviceManagement_UpdateDeviceShellScripts parameters: - name: deviceShellScript-id @@ -16688,6 +17036,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Delete navigation property deviceShellScripts for deviceManagement + description: The list of device shell scripts associated with the tenant. operationId: deviceManagement_DeleteDeviceShellScripts parameters: - name: deviceShellScript-id @@ -16713,6 +17062,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_ListAssignments parameters: - name: deviceShellScript-id @@ -16794,6 +17144,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Create new navigation property to assignments for deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_CreateAssignments parameters: - name: deviceShellScript-id @@ -16825,6 +17176,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_GetAssignments parameters: - name: deviceShellScript-id @@ -16880,6 +17232,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Update the navigation property assignments in deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_UpdateAssignments parameters: - name: deviceShellScript-id @@ -16913,6 +17266,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Delete navigation property assignments for deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_DeleteAssignments parameters: - name: deviceShellScript-id @@ -16945,6 +17299,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceShellScripts_ListDeviceRunStates parameters: - name: deviceShellScript-id @@ -17040,6 +17395,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Create new navigation property to deviceRunStates for deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceShellScripts_CreateDeviceRunStates parameters: - name: deviceShellScript-id @@ -17071,6 +17427,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceShellScripts_GetDeviceRunStates parameters: - name: deviceShellScript-id @@ -17138,6 +17495,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Update the navigation property deviceRunStates in deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceShellScripts_UpdateDeviceRunStates parameters: - name: deviceShellScript-id @@ -17171,6 +17529,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Delete navigation property deviceRunStates for deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceShellScripts_DeleteDeviceRunStates parameters: - name: deviceShellScript-id @@ -17203,6 +17562,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceShellScripts.deviceRunStates_GetManagedDevice parameters: - name: deviceShellScript-id @@ -17230,6 +17590,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -17307,8 +17668,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -17329,8 +17690,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -17348,13 +17709,13 @@ paths: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' links: - deviceCompliancePolicyStates: - operationId: deviceManagement.deviceShellScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates + assignmentFilterEvaluationStatusDetails: + operationId: deviceManagement.deviceShellScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails parameters: deviceShellScript-id: $request.path.deviceShellScript-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id - assignmentFilterEvaluationStatusDetails: - operationId: deviceManagement.deviceShellScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails + deviceCompliancePolicyStates: + operationId: deviceManagement.deviceShellScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates parameters: deviceShellScript-id: $request.path.deviceShellScript-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id @@ -17406,6 +17767,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get ref of managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceShellScripts.deviceRunStates_GetRefManagedDevice parameters: - name: deviceShellScript-id @@ -17430,13 +17792,13 @@ paths: schema: type: string links: - deviceCompliancePolicyStates: - operationId: deviceManagement.deviceShellScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates + assignmentFilterEvaluationStatusDetails: + operationId: deviceManagement.deviceShellScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails parameters: deviceShellScript-id: $request.path.deviceShellScript-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id - assignmentFilterEvaluationStatusDetails: - operationId: deviceManagement.deviceShellScripts.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails + deviceCompliancePolicyStates: + operationId: deviceManagement.deviceShellScripts.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates parameters: deviceShellScript-id: $request.path.deviceShellScript-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id @@ -17487,6 +17849,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Update the ref of navigation property managedDevice in deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceShellScripts.deviceRunStates_SetRefManagedDevice parameters: - name: deviceShellScript-id @@ -17522,6 +17885,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Delete ref of navigation property managedDevice for deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceShellScripts.deviceRunStates_DeleteRefManagedDevice parameters: - name: deviceShellScript-id @@ -17554,6 +17918,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_ListGroupAssignments parameters: - name: deviceShellScript-id @@ -17635,6 +18000,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Create new navigation property to groupAssignments for deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_CreateGroupAssignments parameters: - name: deviceShellScript-id @@ -17666,6 +18032,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_GetGroupAssignments parameters: - name: deviceShellScript-id @@ -17721,6 +18088,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Update the navigation property groupAssignments in deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_UpdateGroupAssignments parameters: - name: deviceShellScript-id @@ -17754,6 +18122,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Delete navigation property groupAssignments for deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_DeleteGroupAssignments parameters: - name: deviceShellScript-id @@ -17786,6 +18155,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get runSummary from deviceManagement + description: Run summary for device management script. operationId: deviceManagement.deviceShellScripts_GetRunSummary parameters: - name: deviceShellScript-id @@ -17838,6 +18208,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get ref of runSummary from deviceManagement + description: Run summary for device management script. operationId: deviceManagement.deviceShellScripts_GetRefRunSummary parameters: - name: deviceShellScript-id @@ -17861,6 +18232,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Update the ref of navigation property runSummary in deviceManagement + description: Run summary for device management script. operationId: deviceManagement.deviceShellScripts_SetRefRunSummary parameters: - name: deviceShellScript-id @@ -17889,6 +18261,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Delete ref of navigation property runSummary for deviceManagement + description: Run summary for device management script. operationId: deviceManagement.deviceShellScripts_DeleteRefRunSummary parameters: - name: deviceShellScript-id @@ -17914,6 +18287,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get userRunStates from deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceShellScripts_ListUserRunStates parameters: - name: deviceShellScript-id @@ -18003,6 +18377,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Create new navigation property to userRunStates for deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceShellScripts_CreateUserRunStates parameters: - name: deviceShellScript-id @@ -18034,6 +18409,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get userRunStates from deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceShellScripts_GetUserRunStates parameters: - name: deviceShellScript-id @@ -18099,6 +18475,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Update the navigation property userRunStates in deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceShellScripts_UpdateUserRunStates parameters: - name: deviceShellScript-id @@ -18132,6 +18509,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Delete navigation property userRunStates for deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceShellScripts_DeleteUserRunStates parameters: - name: deviceShellScript-id @@ -18164,6 +18542,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceShellScripts.userRunStates_ListDeviceRunStates parameters: - name: deviceShellScript-id @@ -18266,6 +18645,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Create new navigation property to deviceRunStates for deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceShellScripts.userRunStates_CreateDeviceRunStates parameters: - name: deviceShellScript-id @@ -18304,6 +18684,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceShellScripts.userRunStates_GetDeviceRunStates parameters: - name: deviceShellScript-id @@ -18379,6 +18760,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Update the navigation property deviceRunStates in deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceShellScripts.userRunStates_UpdateDeviceRunStates parameters: - name: deviceShellScript-id @@ -18419,6 +18801,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Delete navigation property deviceRunStates for deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceShellScripts.userRunStates_DeleteDeviceRunStates parameters: - name: deviceShellScript-id @@ -18458,6 +18841,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates_GetManagedDevice parameters: - name: deviceShellScript-id @@ -18492,6 +18876,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -18569,8 +18954,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -18591,8 +18976,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -18610,14 +18995,14 @@ paths: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' links: - deviceCompliancePolicyStates: - operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates + assignmentFilterEvaluationStatusDetails: + operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails parameters: deviceShellScript-id: $request.path.deviceShellScript-id deviceManagementScriptUserState-id: $request.path.deviceManagementScriptUserState-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id - assignmentFilterEvaluationStatusDetails: - operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails + deviceCompliancePolicyStates: + operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates parameters: deviceShellScript-id: $request.path.deviceShellScript-id deviceManagementScriptUserState-id: $request.path.deviceManagementScriptUserState-id @@ -18678,6 +19063,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get ref of managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates_GetRefManagedDevice parameters: - name: deviceShellScript-id @@ -18709,14 +19095,14 @@ paths: schema: type: string links: - deviceCompliancePolicyStates: - operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates + assignmentFilterEvaluationStatusDetails: + operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails parameters: deviceShellScript-id: $request.path.deviceShellScript-id deviceManagementScriptUserState-id: $request.path.deviceManagementScriptUserState-id deviceManagementScriptDeviceState-id: $request.path.deviceManagementScriptDeviceState-id - assignmentFilterEvaluationStatusDetails: - operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.ManagedDevice.ListAssignmentFilterEvaluationStatusDetails + deviceCompliancePolicyStates: + operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates.ManagedDevice.ListDeviceCompliancePolicyStates parameters: deviceShellScript-id: $request.path.deviceShellScript-id deviceManagementScriptUserState-id: $request.path.deviceManagementScriptUserState-id @@ -18776,6 +19162,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Update the ref of navigation property managedDevice in deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates_SetRefManagedDevice parameters: - name: deviceShellScript-id @@ -18818,6 +19205,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Delete ref of navigation property managedDevice for deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates_DeleteRefManagedDevice parameters: - name: deviceShellScript-id @@ -18857,6 +19245,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get embeddedSIMActivationCodePools from deviceManagement + description: The embedded SIM activation code pools created by this account. operationId: deviceManagement_ListEmbeddedSIMActivationCodePools parameters: - $ref: '#/components/parameters/top' @@ -18947,6 +19336,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Create new navigation property to embeddedSIMActivationCodePools for deviceManagement + description: The embedded SIM activation code pools created by this account. operationId: deviceManagement_CreateEmbeddedSIMActivationCodePools requestBody: description: New navigation property @@ -18970,6 +19360,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get embeddedSIMActivationCodePools from deviceManagement + description: The embedded SIM activation code pools created by this account. operationId: deviceManagement_GetEmbeddedSIMActivationCodePools parameters: - name: embeddedSIMActivationCodePool-id @@ -19035,6 +19426,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Update the navigation property embeddedSIMActivationCodePools in deviceManagement + description: The embedded SIM activation code pools created by this account. operationId: deviceManagement_UpdateEmbeddedSIMActivationCodePools parameters: - name: embeddedSIMActivationCodePool-id @@ -19061,6 +19453,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Delete navigation property embeddedSIMActivationCodePools for deviceManagement + description: The embedded SIM activation code pools created by this account. operationId: deviceManagement_DeleteEmbeddedSIMActivationCodePools parameters: - name: embeddedSIMActivationCodePool-id @@ -19086,6 +19479,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get assignments from deviceManagement + description: Navigational property to a list of targets to which this pool is assigned. operationId: deviceManagement.embeddedSIMActivationCodePools_ListAssignments parameters: - name: embeddedSIMActivationCodePool-id @@ -19167,6 +19561,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Create new navigation property to assignments for deviceManagement + description: Navigational property to a list of targets to which this pool is assigned. operationId: deviceManagement.embeddedSIMActivationCodePools_CreateAssignments parameters: - name: embeddedSIMActivationCodePool-id @@ -19198,6 +19593,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get assignments from deviceManagement + description: Navigational property to a list of targets to which this pool is assigned. operationId: deviceManagement.embeddedSIMActivationCodePools_GetAssignments parameters: - name: embeddedSIMActivationCodePool-id @@ -19253,6 +19649,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Update the navigation property assignments in deviceManagement + description: Navigational property to a list of targets to which this pool is assigned. operationId: deviceManagement.embeddedSIMActivationCodePools_UpdateAssignments parameters: - name: embeddedSIMActivationCodePool-id @@ -19286,6 +19683,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Delete navigation property assignments for deviceManagement + description: Navigational property to a list of targets to which this pool is assigned. operationId: deviceManagement.embeddedSIMActivationCodePools_DeleteAssignments parameters: - name: embeddedSIMActivationCodePool-id @@ -19318,6 +19716,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get deviceStates from deviceManagement + description: Navigational property to a list of device states for this pool. operationId: deviceManagement.embeddedSIMActivationCodePools_ListDeviceStates parameters: - name: embeddedSIMActivationCodePool-id @@ -19420,6 +19819,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Create new navigation property to deviceStates for deviceManagement + description: Navigational property to a list of device states for this pool. operationId: deviceManagement.embeddedSIMActivationCodePools_CreateDeviceStates parameters: - name: embeddedSIMActivationCodePool-id @@ -19451,6 +19851,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get deviceStates from deviceManagement + description: Navigational property to a list of device states for this pool. operationId: deviceManagement.embeddedSIMActivationCodePools_GetDeviceStates parameters: - name: embeddedSIMActivationCodePool-id @@ -19513,6 +19914,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Update the navigation property deviceStates in deviceManagement + description: Navigational property to a list of device states for this pool. operationId: deviceManagement.embeddedSIMActivationCodePools_UpdateDeviceStates parameters: - name: embeddedSIMActivationCodePool-id @@ -19546,6 +19948,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Delete navigation property deviceStates for deviceManagement + description: Navigational property to a list of device states for this pool. operationId: deviceManagement.embeddedSIMActivationCodePools_DeleteDeviceStates parameters: - name: embeddedSIMActivationCodePool-id @@ -19578,6 +19981,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get groupPolicyConfigurations from deviceManagement + description: The group policy configurations created by this account. operationId: deviceManagement_ListGroupPolicyConfigurations parameters: - $ref: '#/components/parameters/top' @@ -19668,6 +20072,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Create new navigation property to groupPolicyConfigurations for deviceManagement + description: The group policy configurations created by this account. operationId: deviceManagement_CreateGroupPolicyConfigurations requestBody: description: New navigation property @@ -19691,6 +20096,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get groupPolicyConfigurations from deviceManagement + description: The group policy configurations created by this account. operationId: deviceManagement_GetGroupPolicyConfigurations parameters: - name: groupPolicyConfiguration-id @@ -19756,6 +20162,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Update the navigation property groupPolicyConfigurations in deviceManagement + description: The group policy configurations created by this account. operationId: deviceManagement_UpdateGroupPolicyConfigurations parameters: - name: groupPolicyConfiguration-id @@ -19782,6 +20189,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Delete navigation property groupPolicyConfigurations for deviceManagement + description: The group policy configurations created by this account. operationId: deviceManagement_DeleteGroupPolicyConfigurations parameters: - name: groupPolicyConfiguration-id @@ -19807,6 +20215,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get assignments from deviceManagement + description: The list of group assignments for the configuration. operationId: deviceManagement.groupPolicyConfigurations_ListAssignments parameters: - name: groupPolicyConfiguration-id @@ -19891,6 +20300,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Create new navigation property to assignments for deviceManagement + description: The list of group assignments for the configuration. operationId: deviceManagement.groupPolicyConfigurations_CreateAssignments parameters: - name: groupPolicyConfiguration-id @@ -19922,6 +20332,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get assignments from deviceManagement + description: The list of group assignments for the configuration. operationId: deviceManagement.groupPolicyConfigurations_GetAssignments parameters: - name: groupPolicyConfiguration-id @@ -19978,6 +20389,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Update the navigation property assignments in deviceManagement + description: The list of group assignments for the configuration. operationId: deviceManagement.groupPolicyConfigurations_UpdateAssignments parameters: - name: groupPolicyConfiguration-id @@ -20011,6 +20423,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Delete navigation property assignments for deviceManagement + description: The list of group assignments for the configuration. operationId: deviceManagement.groupPolicyConfigurations_DeleteAssignments parameters: - name: groupPolicyConfiguration-id @@ -20043,6 +20456,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get definitionValues from deviceManagement + description: The list of enabled or disabled group policy definition values for the configuration. operationId: deviceManagement.groupPolicyConfigurations_ListDefinitionValues parameters: - name: groupPolicyConfiguration-id @@ -20137,6 +20551,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Create new navigation property to definitionValues for deviceManagement + description: The list of enabled or disabled group policy definition values for the configuration. operationId: deviceManagement.groupPolicyConfigurations_CreateDefinitionValues parameters: - name: groupPolicyConfiguration-id @@ -20168,6 +20583,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get definitionValues from deviceManagement + description: The list of enabled or disabled group policy definition values for the configuration. operationId: deviceManagement.groupPolicyConfigurations_GetDefinitionValues parameters: - name: groupPolicyConfiguration-id @@ -20241,6 +20657,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Update the navigation property definitionValues in deviceManagement + description: The list of enabled or disabled group policy definition values for the configuration. operationId: deviceManagement.groupPolicyConfigurations_UpdateDefinitionValues parameters: - name: groupPolicyConfiguration-id @@ -20274,6 +20691,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Delete navigation property definitionValues for deviceManagement + description: The list of enabled or disabled group policy definition values for the configuration. operationId: deviceManagement.groupPolicyConfigurations_DeleteDefinitionValues parameters: - name: groupPolicyConfiguration-id @@ -20306,6 +20724,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get definition from deviceManagement + description: The associated group policy definition with the value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_GetDefinition parameters: - name: groupPolicyConfiguration-id @@ -20391,6 +20810,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get ref of definition from deviceManagement + description: The associated group policy definition with the value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_GetRefDefinition parameters: - name: groupPolicyConfiguration-id @@ -20437,6 +20857,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Update the ref of navigation property definition in deviceManagement + description: The associated group policy definition with the value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_SetRefDefinition parameters: - name: groupPolicyConfiguration-id @@ -20472,6 +20893,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Delete ref of navigation property definition for deviceManagement + description: The associated group policy definition with the value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_DeleteRefDefinition parameters: - name: groupPolicyConfiguration-id @@ -20504,6 +20926,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get presentationValues from deviceManagement + description: The associated group policy presentation values with the definition value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_ListPresentationValues parameters: - name: groupPolicyConfiguration-id @@ -20599,6 +21022,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Create new navigation property to presentationValues for deviceManagement + description: The associated group policy presentation values with the definition value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_CreatePresentationValues parameters: - name: groupPolicyConfiguration-id @@ -20637,6 +21061,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get presentationValues from deviceManagement + description: The associated group policy presentation values with the definition value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_GetPresentationValues parameters: - name: groupPolicyConfiguration-id @@ -20717,6 +21142,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Update the navigation property presentationValues in deviceManagement + description: The associated group policy presentation values with the definition value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_UpdatePresentationValues parameters: - name: groupPolicyConfiguration-id @@ -20757,6 +21183,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Delete navigation property presentationValues for deviceManagement + description: The associated group policy presentation values with the definition value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_DeletePresentationValues parameters: - name: groupPolicyConfiguration-id @@ -20796,6 +21223,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get definitionValue from deviceManagement + description: The group policy definition value associated with the presentation value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues.presentationValues_GetDefinitionValue parameters: - name: groupPolicyConfiguration-id @@ -20879,6 +21307,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get ref of definitionValue from deviceManagement + description: The group policy definition value associated with the presentation value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues.presentationValues_GetRefDefinitionValue parameters: - name: groupPolicyConfiguration-id @@ -20929,6 +21358,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Update the ref of navigation property definitionValue in deviceManagement + description: The group policy definition value associated with the presentation value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues.presentationValues_SetRefDefinitionValue parameters: - name: groupPolicyConfiguration-id @@ -20971,6 +21401,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Delete ref of navigation property definitionValue for deviceManagement + description: The group policy definition value associated with the presentation value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues.presentationValues_DeleteRefDefinitionValue parameters: - name: groupPolicyConfiguration-id @@ -21010,6 +21441,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get presentation from deviceManagement + description: The group policy presentation associated with the presentation value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues.presentationValues_GetPresentation parameters: - name: groupPolicyConfiguration-id @@ -21083,6 +21515,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get ref of presentation from deviceManagement + description: The group policy presentation associated with the presentation value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues.presentationValues_GetRefPresentation parameters: - name: groupPolicyConfiguration-id @@ -21127,6 +21560,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Update the ref of navigation property presentation in deviceManagement + description: The group policy presentation associated with the presentation value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues.presentationValues_SetRefPresentation parameters: - name: groupPolicyConfiguration-id @@ -21169,6 +21603,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Delete ref of navigation property presentation for deviceManagement + description: The group policy presentation associated with the presentation value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues.presentationValues_DeleteRefPresentation parameters: - name: groupPolicyConfiguration-id @@ -21208,6 +21643,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get intents from deviceManagement + description: The device management intents operationId: deviceManagement_ListIntents parameters: - $ref: '#/components/parameters/top' @@ -21313,6 +21749,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Create new navigation property to intents for deviceManagement + description: The device management intents operationId: deviceManagement_CreateIntents requestBody: description: New navigation property @@ -21336,6 +21773,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get intents from deviceManagement + description: The device management intents operationId: deviceManagement_GetIntents parameters: - name: deviceManagementIntent-id @@ -21438,6 +21876,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Update the navigation property intents in deviceManagement + description: The device management intents operationId: deviceManagement_UpdateIntents parameters: - name: deviceManagementIntent-id @@ -21464,6 +21903,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Delete navigation property intents for deviceManagement + description: The device management intents operationId: deviceManagement_DeleteIntents parameters: - name: deviceManagementIntent-id @@ -21489,6 +21929,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get assignments from deviceManagement + description: Collection of assignments operationId: deviceManagement.intents_ListAssignments parameters: - name: deviceManagementIntent-id @@ -21570,6 +22011,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Create new navigation property to assignments for deviceManagement + description: Collection of assignments operationId: deviceManagement.intents_CreateAssignments parameters: - name: deviceManagementIntent-id @@ -21601,6 +22043,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get assignments from deviceManagement + description: Collection of assignments operationId: deviceManagement.intents_GetAssignments parameters: - name: deviceManagementIntent-id @@ -21656,6 +22099,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Update the navigation property assignments in deviceManagement + description: Collection of assignments operationId: deviceManagement.intents_UpdateAssignments parameters: - name: deviceManagementIntent-id @@ -21689,6 +22133,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Delete navigation property assignments for deviceManagement + description: Collection of assignments operationId: deviceManagement.intents_DeleteAssignments parameters: - name: deviceManagementIntent-id @@ -21721,6 +22166,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get categories from deviceManagement + description: Collection of setting categories within the intent operationId: deviceManagement.intents_ListCategories parameters: - name: deviceManagementIntent-id @@ -21809,6 +22255,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Create new navigation property to categories for deviceManagement + description: Collection of setting categories within the intent operationId: deviceManagement.intents_CreateCategories parameters: - name: deviceManagementIntent-id @@ -21840,6 +22287,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get categories from deviceManagement + description: Collection of setting categories within the intent operationId: deviceManagement.intents_GetCategories parameters: - name: deviceManagementIntent-id @@ -21911,6 +22359,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Update the navigation property categories in deviceManagement + description: Collection of setting categories within the intent operationId: deviceManagement.intents_UpdateCategories parameters: - name: deviceManagementIntent-id @@ -21944,6 +22393,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Delete navigation property categories for deviceManagement + description: Collection of setting categories within the intent operationId: deviceManagement.intents_DeleteCategories parameters: - name: deviceManagementIntent-id @@ -21976,6 +22426,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get settings from deviceManagement + description: The settings this category contains operationId: deviceManagement.intents.categories_ListSettings parameters: - name: deviceManagementIntent-id @@ -22067,6 +22518,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Create new navigation property to settings for deviceManagement + description: The settings this category contains operationId: deviceManagement.intents.categories_CreateSettings parameters: - name: deviceManagementIntent-id @@ -22105,6 +22557,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get settings from deviceManagement + description: The settings this category contains operationId: deviceManagement.intents.categories_GetSettings parameters: - name: deviceManagementIntent-id @@ -22168,6 +22621,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Update the navigation property settings in deviceManagement + description: The settings this category contains operationId: deviceManagement.intents.categories_UpdateSettings parameters: - name: deviceManagementIntent-id @@ -22208,6 +22662,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Delete navigation property settings for deviceManagement + description: The settings this category contains operationId: deviceManagement.intents.categories_DeleteSettings parameters: - name: deviceManagementIntent-id @@ -22247,6 +22702,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get deviceSettingStateSummaries from deviceManagement + description: Collection of settings and their states and counts of devices that belong to corresponding state for all settings within the intent operationId: deviceManagement.intents_ListDeviceSettingStateSummaries parameters: - name: deviceManagementIntent-id @@ -22346,6 +22802,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Create new navigation property to deviceSettingStateSummaries for deviceManagement + description: Collection of settings and their states and counts of devices that belong to corresponding state for all settings within the intent operationId: deviceManagement.intents_CreateDeviceSettingStateSummaries parameters: - name: deviceManagementIntent-id @@ -22377,6 +22834,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get deviceSettingStateSummaries from deviceManagement + description: Collection of settings and their states and counts of devices that belong to corresponding state for all settings within the intent operationId: deviceManagement.intents_GetDeviceSettingStateSummaries parameters: - name: deviceManagementIntent-id @@ -22438,6 +22896,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Update the navigation property deviceSettingStateSummaries in deviceManagement + description: Collection of settings and their states and counts of devices that belong to corresponding state for all settings within the intent operationId: deviceManagement.intents_UpdateDeviceSettingStateSummaries parameters: - name: deviceManagementIntent-id @@ -22471,6 +22930,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Delete navigation property deviceSettingStateSummaries for deviceManagement + description: Collection of settings and their states and counts of devices that belong to corresponding state for all settings within the intent operationId: deviceManagement.intents_DeleteDeviceSettingStateSummaries parameters: - name: deviceManagementIntent-id @@ -22503,6 +22963,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get deviceStates from deviceManagement + description: Collection of states of all devices that the intent is applied to operationId: deviceManagement.intents_ListDeviceStates parameters: - name: deviceManagementIntent-id @@ -22599,6 +23060,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Create new navigation property to deviceStates for deviceManagement + description: Collection of states of all devices that the intent is applied to operationId: deviceManagement.intents_CreateDeviceStates parameters: - name: deviceManagementIntent-id @@ -22630,6 +23092,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get deviceStates from deviceManagement + description: Collection of states of all devices that the intent is applied to operationId: deviceManagement.intents_GetDeviceStates parameters: - name: deviceManagementIntent-id @@ -22690,6 +23153,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Update the navigation property deviceStates in deviceManagement + description: Collection of states of all devices that the intent is applied to operationId: deviceManagement.intents_UpdateDeviceStates parameters: - name: deviceManagementIntent-id @@ -22723,6 +23187,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Delete navigation property deviceStates for deviceManagement + description: Collection of states of all devices that the intent is applied to operationId: deviceManagement.intents_DeleteDeviceStates parameters: - name: deviceManagementIntent-id @@ -22755,6 +23220,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get deviceStateSummary from deviceManagement + description: A summary of device states and counts of devices that belong to corresponding state for all devices that the intent is applied to operationId: deviceManagement.intents_GetDeviceStateSummary parameters: - name: deviceManagementIntent-id @@ -22808,6 +23274,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Update the navigation property deviceStateSummary in deviceManagement + description: A summary of device states and counts of devices that belong to corresponding state for all devices that the intent is applied to operationId: deviceManagement.intents_UpdateDeviceStateSummary parameters: - name: deviceManagementIntent-id @@ -22834,6 +23301,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Delete navigation property deviceStateSummary for deviceManagement + description: A summary of device states and counts of devices that belong to corresponding state for all devices that the intent is applied to operationId: deviceManagement.intents_DeleteDeviceStateSummary parameters: - name: deviceManagementIntent-id @@ -22859,6 +23327,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get settings from deviceManagement + description: Collection of all settings to be applied operationId: deviceManagement.intents_ListSettings parameters: - name: deviceManagementIntent-id @@ -22943,6 +23412,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Create new navigation property to settings for deviceManagement + description: Collection of all settings to be applied operationId: deviceManagement.intents_CreateSettings parameters: - name: deviceManagementIntent-id @@ -22974,6 +23444,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get settings from deviceManagement + description: Collection of all settings to be applied operationId: deviceManagement.intents_GetSettings parameters: - name: deviceManagementIntent-id @@ -23030,6 +23501,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Update the navigation property settings in deviceManagement + description: Collection of all settings to be applied operationId: deviceManagement.intents_UpdateSettings parameters: - name: deviceManagementIntent-id @@ -23063,6 +23535,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Delete navigation property settings for deviceManagement + description: Collection of all settings to be applied operationId: deviceManagement.intents_DeleteSettings parameters: - name: deviceManagementIntent-id @@ -23095,6 +23568,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get userStates from deviceManagement + description: Collection of states of all users that the intent is applied to operationId: deviceManagement.intents_ListUserStates parameters: - name: deviceManagementIntent-id @@ -23188,6 +23662,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Create new navigation property to userStates for deviceManagement + description: Collection of states of all users that the intent is applied to operationId: deviceManagement.intents_CreateUserStates parameters: - name: deviceManagementIntent-id @@ -23219,6 +23694,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get userStates from deviceManagement + description: Collection of states of all users that the intent is applied to operationId: deviceManagement.intents_GetUserStates parameters: - name: deviceManagementIntent-id @@ -23278,6 +23754,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Update the navigation property userStates in deviceManagement + description: Collection of states of all users that the intent is applied to operationId: deviceManagement.intents_UpdateUserStates parameters: - name: deviceManagementIntent-id @@ -23311,6 +23788,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Delete navigation property userStates for deviceManagement + description: Collection of states of all users that the intent is applied to operationId: deviceManagement.intents_DeleteUserStates parameters: - name: deviceManagementIntent-id @@ -23343,6 +23821,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get userStateSummary from deviceManagement + description: A summary of user states and counts of users that belong to corresponding state for all users that the intent is applied to operationId: deviceManagement.intents_GetUserStateSummary parameters: - name: deviceManagementIntent-id @@ -23395,6 +23874,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Update the navigation property userStateSummary in deviceManagement + description: A summary of user states and counts of users that belong to corresponding state for all users that the intent is applied to operationId: deviceManagement.intents_UpdateUserStateSummary parameters: - name: deviceManagementIntent-id @@ -23421,6 +23901,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Delete navigation property userStateSummary for deviceManagement + description: A summary of user states and counts of users that belong to corresponding state for all users that the intent is applied to operationId: deviceManagement.intents_DeleteUserStateSummary parameters: - name: deviceManagementIntent-id @@ -23446,6 +23927,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get macOSSoftwareUpdateAccountSummaries from deviceManagement + description: The MacOS software update account summaries for this account. operationId: deviceManagement_ListMacOSSoftwareUpdateAccountSummaries parameters: - $ref: '#/components/parameters/top' @@ -23549,6 +24031,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Create new navigation property to macOSSoftwareUpdateAccountSummaries for deviceManagement + description: The MacOS software update account summaries for this account. operationId: deviceManagement_CreateMacOSSoftwareUpdateAccountSummaries requestBody: description: New navigation property @@ -23572,6 +24055,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get macOSSoftwareUpdateAccountSummaries from deviceManagement + description: The MacOS software update account summaries for this account. operationId: deviceManagement_GetMacOSSoftwareUpdateAccountSummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -23636,6 +24120,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Update the navigation property macOSSoftwareUpdateAccountSummaries in deviceManagement + description: The MacOS software update account summaries for this account. operationId: deviceManagement_UpdateMacOSSoftwareUpdateAccountSummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -23662,6 +24147,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Delete navigation property macOSSoftwareUpdateAccountSummaries for deviceManagement + description: The MacOS software update account summaries for this account. operationId: deviceManagement_DeleteMacOSSoftwareUpdateAccountSummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -23687,6 +24173,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get categorySummaries from deviceManagement + description: Summary of the updates by category. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries_ListCategorySummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -23791,6 +24278,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Create new navigation property to categorySummaries for deviceManagement + description: Summary of the updates by category. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries_CreateCategorySummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -23822,6 +24310,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get categorySummaries from deviceManagement + description: Summary of the updates by category. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries_GetCategorySummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -23892,6 +24381,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Update the navigation property categorySummaries in deviceManagement + description: Summary of the updates by category. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries_UpdateCategorySummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -23925,6 +24415,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Delete navigation property categorySummaries for deviceManagement + description: Summary of the updates by category. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries_DeleteCategorySummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -23957,6 +24448,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get updateStateSummaries from deviceManagement + description: Summary of the update states. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries.categorySummaries_ListUpdateStateSummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -24060,6 +24552,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Create new navigation property to updateStateSummaries for deviceManagement + description: Summary of the update states. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries.categorySummaries_CreateUpdateStateSummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -24098,6 +24591,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get updateStateSummaries from deviceManagement + description: Summary of the update states. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries.categorySummaries_GetUpdateStateSummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -24165,6 +24659,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Update the navigation property updateStateSummaries in deviceManagement + description: Summary of the update states. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries.categorySummaries_UpdateUpdateStateSummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -24205,6 +24700,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Delete navigation property updateStateSummaries for deviceManagement + description: Summary of the update states. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries.categorySummaries_DeleteUpdateStateSummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id @@ -24244,6 +24740,7 @@ paths: tags: - deviceManagement.managedDeviceEncryptionState summary: Get managedDeviceEncryptionStates from deviceManagement + description: Encryption report for devices in this account operationId: deviceManagement_ListManagedDeviceEncryptionStates parameters: - $ref: '#/components/parameters/top' @@ -24348,6 +24845,7 @@ paths: tags: - deviceManagement.managedDeviceEncryptionState summary: Create new navigation property to managedDeviceEncryptionStates for deviceManagement + description: Encryption report for devices in this account operationId: deviceManagement_CreateManagedDeviceEncryptionStates requestBody: description: New navigation property @@ -24371,6 +24869,7 @@ paths: tags: - deviceManagement.managedDeviceEncryptionState summary: Get managedDeviceEncryptionStates from deviceManagement + description: Encryption report for devices in this account operationId: deviceManagement_GetManagedDeviceEncryptionStates parameters: - name: managedDeviceEncryptionState-id @@ -24429,6 +24928,7 @@ paths: tags: - deviceManagement.managedDeviceEncryptionState summary: Update the navigation property managedDeviceEncryptionStates in deviceManagement + description: Encryption report for devices in this account operationId: deviceManagement_UpdateManagedDeviceEncryptionStates parameters: - name: managedDeviceEncryptionState-id @@ -24455,6 +24955,7 @@ paths: tags: - deviceManagement.managedDeviceEncryptionState summary: Delete navigation property managedDeviceEncryptionStates for deviceManagement + description: Encryption report for devices in this account operationId: deviceManagement_DeleteManagedDeviceEncryptionStates parameters: - name: managedDeviceEncryptionState-id @@ -24480,6 +24981,7 @@ paths: tags: - deviceManagement.managedDeviceOverview summary: Get managedDeviceOverview from deviceManagement + description: Device overview operationId: deviceManagement_GetManagedDeviceOverview parameters: - name: $select @@ -24528,6 +25030,7 @@ paths: tags: - deviceManagement.managedDeviceOverview summary: Get ref of managedDeviceOverview from deviceManagement + description: Device overview operationId: deviceManagement_GetRefManagedDeviceOverview responses: '200': @@ -24543,6 +25046,7 @@ paths: tags: - deviceManagement.managedDeviceOverview summary: Update the ref of navigation property managedDeviceOverview in deviceManagement + description: Device overview operationId: deviceManagement_SetRefManagedDeviceOverview requestBody: description: New navigation property ref values @@ -24563,6 +25067,7 @@ paths: tags: - deviceManagement.managedDeviceOverview summary: Delete ref of navigation property managedDeviceOverview for deviceManagement + description: Device overview operationId: deviceManagement_DeleteRefManagedDeviceOverview parameters: - name: If-Match @@ -24581,6 +25086,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDevices from deviceManagement + description: The list of managed devices. operationId: deviceManagement_ListManagedDevices parameters: - $ref: '#/components/parameters/top' @@ -24600,6 +25106,8 @@ paths: enum: - id - id desc + - cloudPcRemoteActionResults + - cloudPcRemoteActionResults desc - aadRegistered - aadRegistered desc - activationLockBypassCode @@ -24766,6 +25274,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -24843,8 +25352,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -24865,8 +25374,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -24903,6 +25412,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to managedDevices for deviceManagement + description: The list of managed devices. operationId: deviceManagement_CreateManagedDevices requestBody: description: New navigation property @@ -24926,6 +25436,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDevices from deviceManagement + description: The list of managed devices. operationId: deviceManagement_GetManagedDevices parameters: - name: managedDevice-id @@ -24946,6 +25457,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -25023,8 +25535,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -25045,8 +25557,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -25064,14 +25576,14 @@ paths: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' links: - deviceCompliancePolicyStates: - operationId: deviceManagement.ManagedDevices.ListDeviceCompliancePolicyStates - parameters: - managedDevice-id: $request.path.managedDevice-id assignmentFilterEvaluationStatusDetails: operationId: deviceManagement.ManagedDevices.ListAssignmentFilterEvaluationStatusDetails parameters: managedDevice-id: $request.path.managedDevice-id + deviceCompliancePolicyStates: + operationId: deviceManagement.ManagedDevices.ListDeviceCompliancePolicyStates + parameters: + managedDevice-id: $request.path.managedDevice-id deviceConfigurationStates: operationId: deviceManagement.ManagedDevices.ListDeviceConfigurationStates parameters: @@ -25111,6 +25623,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property managedDevices in deviceManagement + description: The list of managed devices. operationId: deviceManagement_UpdateManagedDevices parameters: - name: managedDevice-id @@ -25137,6 +25650,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property managedDevices for deviceManagement + description: The list of managed devices. operationId: deviceManagement_DeleteManagedDevices parameters: - name: managedDevice-id @@ -25162,6 +25676,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_ListAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id @@ -25243,6 +25758,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to assignmentFilterEvaluationStatusDetails for deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_CreateAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id @@ -25274,6 +25790,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_GetAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id @@ -25329,6 +25846,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property assignmentFilterEvaluationStatusDetails in deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_UpdateAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id @@ -25362,6 +25880,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property assignmentFilterEvaluationStatusDetails for deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_DeleteAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id @@ -25394,6 +25913,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedApps from deviceManagement + description: All applications currently installed on the device operationId: deviceManagement.managedDevices_ListDetectedApps parameters: - name: managedDevice-id @@ -25487,6 +26007,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get ref of detectedApps from deviceManagement + description: All applications currently installed on the device operationId: deviceManagement.managedDevices_ListRefDetectedApps parameters: - name: managedDevice-id @@ -25549,6 +26070,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property ref to detectedApps for deviceManagement + description: All applications currently installed on the device operationId: deviceManagement.managedDevices_CreateRefDetectedApps parameters: - name: managedDevice-id @@ -25584,6 +26106,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCategory from deviceManagement + description: Device category operationId: deviceManagement.managedDevices_GetDeviceCategory parameters: - name: managedDevice-id @@ -25634,6 +26157,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceCategory in deviceManagement + description: Device category operationId: deviceManagement.managedDevices_UpdateDeviceCategory parameters: - name: managedDevice-id @@ -25660,6 +26184,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceCategory for deviceManagement + description: Device category operationId: deviceManagement.managedDevices_DeleteDeviceCategory parameters: - name: managedDevice-id @@ -25685,6 +26210,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_ListDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -25787,6 +26313,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to deviceCompliancePolicyStates for deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_CreateDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -25818,6 +26345,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_GetDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -25880,6 +26408,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceCompliancePolicyStates in deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_UpdateDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -25913,6 +26442,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceCompliancePolicyStates for deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_DeleteDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -25945,6 +26475,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_ListDeviceConfigurationStates parameters: - name: managedDevice-id @@ -26047,6 +26578,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to deviceConfigurationStates for deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_CreateDeviceConfigurationStates parameters: - name: managedDevice-id @@ -26078,6 +26610,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_GetDeviceConfigurationStates parameters: - name: managedDevice-id @@ -26140,6 +26673,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceConfigurationStates in deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_UpdateDeviceConfigurationStates parameters: - name: managedDevice-id @@ -26173,6 +26707,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceConfigurationStates for deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_DeleteDeviceConfigurationStates parameters: - name: managedDevice-id @@ -26205,6 +26740,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get logCollectionRequests from deviceManagement + description: List of log collection requests operationId: deviceManagement.managedDevices_ListLogCollectionRequests parameters: - name: managedDevice-id @@ -26307,6 +26843,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to logCollectionRequests for deviceManagement + description: List of log collection requests operationId: deviceManagement.managedDevices_CreateLogCollectionRequests parameters: - name: managedDevice-id @@ -26338,6 +26875,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get logCollectionRequests from deviceManagement + description: List of log collection requests operationId: deviceManagement.managedDevices_GetLogCollectionRequests parameters: - name: managedDevice-id @@ -26400,6 +26938,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property logCollectionRequests in deviceManagement + description: List of log collection requests operationId: deviceManagement.managedDevices_UpdateLogCollectionRequests parameters: - name: managedDevice-id @@ -26433,6 +26972,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property logCollectionRequests for deviceManagement + description: List of log collection requests operationId: deviceManagement.managedDevices_DeleteLogCollectionRequests parameters: - name: managedDevice-id @@ -26465,6 +27005,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_ListManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id @@ -26567,6 +27108,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to managedDeviceMobileAppConfigurationStates for deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_CreateManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id @@ -26598,6 +27140,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_GetManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id @@ -26660,6 +27203,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property managedDeviceMobileAppConfigurationStates in deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_UpdateManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id @@ -26693,6 +27237,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property managedDeviceMobileAppConfigurationStates for deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_DeleteManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id @@ -26725,6 +27270,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get securityBaselineStates from deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.managedDevices_ListSecurityBaselineStates parameters: - name: managedDevice-id @@ -26817,6 +27363,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to securityBaselineStates for deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.managedDevices_CreateSecurityBaselineStates parameters: - name: managedDevice-id @@ -26848,6 +27395,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get securityBaselineStates from deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.managedDevices_GetSecurityBaselineStates parameters: - name: managedDevice-id @@ -26914,6 +27462,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property securityBaselineStates in deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.managedDevices_UpdateSecurityBaselineStates parameters: - name: managedDevice-id @@ -26947,6 +27496,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property securityBaselineStates for deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.managedDevices_DeleteSecurityBaselineStates parameters: - name: managedDevice-id @@ -26979,6 +27529,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get settingStates from deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.managedDevices.securityBaselineStates_ListSettingStates parameters: - name: managedDevice-id @@ -27088,6 +27639,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to settingStates for deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.managedDevices.securityBaselineStates_CreateSettingStates parameters: - name: managedDevice-id @@ -27126,6 +27678,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get settingStates from deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.managedDevices.securityBaselineStates_GetSettingStates parameters: - name: managedDevice-id @@ -27195,6 +27748,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property settingStates in deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.managedDevices.securityBaselineStates_UpdateSettingStates parameters: - name: managedDevice-id @@ -27235,6 +27789,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property settingStates for deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.managedDevices.securityBaselineStates_DeleteSettingStates parameters: - name: managedDevice-id @@ -27274,6 +27829,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get users from deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.managedDevices_ListUsers parameters: - name: managedDevice-id @@ -27552,6 +28108,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -27624,6 +28181,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -27697,6 +28255,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to users for deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.managedDevices_CreateUsers parameters: - name: managedDevice-id @@ -27728,6 +28287,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get users from deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.managedDevices_GetUsers parameters: - name: managedDevice-id @@ -27845,6 +28405,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -27917,6 +28478,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -28046,6 +28608,11 @@ paths: parameters: managedDevice-id: $request.path.managedDevice-id user-id: $request.path.user-id + transitiveReports: + operationId: deviceManagement.managedDevices.Users.ListTransitiveReports + parameters: + managedDevice-id: $request.path.managedDevice-id + user-id: $request.path.user-id calendar: operationId: deviceManagement.managedDevices.Users.GetCalendar parameters: @@ -28278,6 +28845,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property users in deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.managedDevices_UpdateUsers parameters: - name: managedDevice-id @@ -28311,6 +28879,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property users for deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.managedDevices_DeleteUsers parameters: - name: managedDevice-id @@ -28343,6 +28912,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get windowsProtectionState from deviceManagement + description: The device protection status. operationId: deviceManagement.managedDevices_GetWindowsProtectionState parameters: - name: managedDevice-id @@ -28417,6 +28987,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property windowsProtectionState in deviceManagement + description: The device protection status. operationId: deviceManagement.managedDevices_UpdateWindowsProtectionState parameters: - name: managedDevice-id @@ -28443,6 +29014,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property windowsProtectionState for deviceManagement + description: The device protection status. operationId: deviceManagement.managedDevices_DeleteWindowsProtectionState parameters: - name: managedDevice-id @@ -28468,6 +29040,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedMalwareState from deviceManagement + description: Device malware list operationId: deviceManagement.managedDevices.windowsProtectionState_ListDetectedMalwareState parameters: - name: managedDevice-id @@ -28576,6 +29149,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to detectedMalwareState for deviceManagement + description: Device malware list operationId: deviceManagement.managedDevices.windowsProtectionState_CreateDetectedMalwareState parameters: - name: managedDevice-id @@ -28607,6 +29181,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedMalwareState from deviceManagement + description: Device malware list operationId: deviceManagement.managedDevices.windowsProtectionState_GetDetectedMalwareState parameters: - name: managedDevice-id @@ -28671,6 +29246,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property detectedMalwareState in deviceManagement + description: Device malware list operationId: deviceManagement.managedDevices.windowsProtectionState_UpdateDetectedMalwareState parameters: - name: managedDevice-id @@ -28704,6 +29280,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property detectedMalwareState for deviceManagement + description: Device malware list operationId: deviceManagement.managedDevices.windowsProtectionState_DeleteDetectedMalwareState parameters: - name: managedDevice-id @@ -28736,6 +29313,7 @@ paths: tags: - deviceManagement.managementCondition summary: Get managementConditions from deviceManagement + description: The management conditions associated with device management of the company. operationId: deviceManagement_ListManagementConditions parameters: - $ref: '#/components/parameters/top' @@ -28830,6 +29408,7 @@ paths: tags: - deviceManagement.managementCondition summary: Create new navigation property to managementConditions for deviceManagement + description: The management conditions associated with device management of the company. operationId: deviceManagement_CreateManagementConditions requestBody: description: New navigation property @@ -28853,6 +29432,7 @@ paths: tags: - deviceManagement.managementCondition summary: Get managementConditions from deviceManagement + description: The management conditions associated with device management of the company. operationId: deviceManagement_GetManagementConditions parameters: - name: managementCondition-id @@ -28914,6 +29494,7 @@ paths: tags: - deviceManagement.managementCondition summary: Update the navigation property managementConditions in deviceManagement + description: The management conditions associated with device management of the company. operationId: deviceManagement_UpdateManagementConditions parameters: - name: managementCondition-id @@ -28940,6 +29521,7 @@ paths: tags: - deviceManagement.managementCondition summary: Delete navigation property managementConditions for deviceManagement + description: The management conditions associated with device management of the company. operationId: deviceManagement_DeleteManagementConditions parameters: - name: managementCondition-id @@ -28965,6 +29547,7 @@ paths: tags: - deviceManagement.managementCondition summary: Get managementConditionStatements from deviceManagement + description: The management condition statements associated to the management condition. operationId: deviceManagement.managementConditions_ListManagementConditionStatements parameters: - name: managementCondition-id @@ -29067,6 +29650,7 @@ paths: tags: - deviceManagement.managementCondition summary: Get ref of managementConditionStatements from deviceManagement + description: The management condition statements associated to the management condition. operationId: deviceManagement.managementConditions_ListRefManagementConditionStatements parameters: - name: managementCondition-id @@ -29135,6 +29719,7 @@ paths: tags: - deviceManagement.managementCondition summary: Create new navigation property ref to managementConditionStatements for deviceManagement + description: The management condition statements associated to the management condition. operationId: deviceManagement.managementConditions_CreateRefManagementConditionStatements parameters: - name: managementCondition-id @@ -29170,6 +29755,7 @@ paths: tags: - deviceManagement.managementConditionStatement summary: Get managementConditionStatements from deviceManagement + description: The management condition statements associated with device management of the company. operationId: deviceManagement_ListManagementConditionStatements parameters: - $ref: '#/components/parameters/top' @@ -29264,6 +29850,7 @@ paths: tags: - deviceManagement.managementConditionStatement summary: Create new navigation property to managementConditionStatements for deviceManagement + description: The management condition statements associated with device management of the company. operationId: deviceManagement_CreateManagementConditionStatements requestBody: description: New navigation property @@ -29287,6 +29874,7 @@ paths: tags: - deviceManagement.managementConditionStatement summary: Get managementConditionStatements from deviceManagement + description: The management condition statements associated with device management of the company. operationId: deviceManagement_GetManagementConditionStatements parameters: - name: managementConditionStatement-id @@ -29348,6 +29936,7 @@ paths: tags: - deviceManagement.managementConditionStatement summary: Update the navigation property managementConditionStatements in deviceManagement + description: The management condition statements associated with device management of the company. operationId: deviceManagement_UpdateManagementConditionStatements parameters: - name: managementConditionStatement-id @@ -29374,6 +29963,7 @@ paths: tags: - deviceManagement.managementConditionStatement summary: Delete navigation property managementConditionStatements for deviceManagement + description: The management condition statements associated with device management of the company. operationId: deviceManagement_DeleteManagementConditionStatements parameters: - name: managementConditionStatement-id @@ -29399,6 +29989,7 @@ paths: tags: - deviceManagement.managementConditionStatement summary: Get managementConditions from deviceManagement + description: The management conditions associated to the management condition statement. operationId: deviceManagement.managementConditionStatements_ListManagementConditions parameters: - name: managementConditionStatement-id @@ -29501,6 +30092,7 @@ paths: tags: - deviceManagement.managementConditionStatement summary: Get ref of managementConditions from deviceManagement + description: The management conditions associated to the management condition statement. operationId: deviceManagement.managementConditionStatements_ListRefManagementConditions parameters: - name: managementConditionStatement-id @@ -29569,6 +30161,7 @@ paths: tags: - deviceManagement.managementConditionStatement summary: Create new navigation property ref to managementConditions for deviceManagement + description: The management conditions associated to the management condition statement. operationId: deviceManagement.managementConditionStatements_CreateRefManagementConditions parameters: - name: managementConditionStatement-id @@ -29604,6 +30197,7 @@ paths: tags: - deviceManagement.microsoftTunnelConfiguration summary: Get microsoftTunnelConfigurations from deviceManagement + description: Collection of MicrosoftTunnelConfiguration settings associated with account. operationId: deviceManagement_ListMicrosoftTunnelConfigurations parameters: - $ref: '#/components/parameters/top' @@ -29711,6 +30305,7 @@ paths: tags: - deviceManagement.microsoftTunnelConfiguration summary: Create new navigation property to microsoftTunnelConfigurations for deviceManagement + description: Collection of MicrosoftTunnelConfiguration settings associated with account. operationId: deviceManagement_CreateMicrosoftTunnelConfigurations requestBody: description: New navigation property @@ -29734,6 +30329,7 @@ paths: tags: - deviceManagement.microsoftTunnelConfiguration summary: Get microsoftTunnelConfigurations from deviceManagement + description: Collection of MicrosoftTunnelConfiguration settings associated with account. operationId: deviceManagement_GetMicrosoftTunnelConfigurations parameters: - name: microsoftTunnelConfiguration-id @@ -29793,6 +30389,7 @@ paths: tags: - deviceManagement.microsoftTunnelConfiguration summary: Update the navigation property microsoftTunnelConfigurations in deviceManagement + description: Collection of MicrosoftTunnelConfiguration settings associated with account. operationId: deviceManagement_UpdateMicrosoftTunnelConfigurations parameters: - name: microsoftTunnelConfiguration-id @@ -29819,6 +30416,7 @@ paths: tags: - deviceManagement.microsoftTunnelConfiguration summary: Delete navigation property microsoftTunnelConfigurations for deviceManagement + description: Collection of MicrosoftTunnelConfiguration settings associated with account. operationId: deviceManagement_DeleteMicrosoftTunnelConfigurations parameters: - name: microsoftTunnelConfiguration-id @@ -29844,6 +30442,7 @@ paths: tags: - deviceManagement.microsoftTunnelHealthThreshold summary: Get microsoftTunnelHealthThresholds from deviceManagement + description: Collection of MicrosoftTunnelHealthThreshold settings associated with account. operationId: deviceManagement_ListMicrosoftTunnelHealthThresholds parameters: - $ref: '#/components/parameters/top' @@ -29927,6 +30526,7 @@ paths: tags: - deviceManagement.microsoftTunnelHealthThreshold summary: Create new navigation property to microsoftTunnelHealthThresholds for deviceManagement + description: Collection of MicrosoftTunnelHealthThreshold settings associated with account. operationId: deviceManagement_CreateMicrosoftTunnelHealthThresholds requestBody: description: New navigation property @@ -29950,6 +30550,7 @@ paths: tags: - deviceManagement.microsoftTunnelHealthThreshold summary: Get microsoftTunnelHealthThresholds from deviceManagement + description: Collection of MicrosoftTunnelHealthThreshold settings associated with account. operationId: deviceManagement_GetMicrosoftTunnelHealthThresholds parameters: - name: microsoftTunnelHealthThreshold-id @@ -30001,6 +30602,7 @@ paths: tags: - deviceManagement.microsoftTunnelHealthThreshold summary: Update the navigation property microsoftTunnelHealthThresholds in deviceManagement + description: Collection of MicrosoftTunnelHealthThreshold settings associated with account. operationId: deviceManagement_UpdateMicrosoftTunnelHealthThresholds parameters: - name: microsoftTunnelHealthThreshold-id @@ -30027,6 +30629,7 @@ paths: tags: - deviceManagement.microsoftTunnelHealthThreshold summary: Delete navigation property microsoftTunnelHealthThresholds for deviceManagement + description: Collection of MicrosoftTunnelHealthThreshold settings associated with account. operationId: deviceManagement_DeleteMicrosoftTunnelHealthThresholds parameters: - name: microsoftTunnelHealthThreshold-id @@ -30052,6 +30655,7 @@ paths: tags: - deviceManagement.microsoftTunnelServerLogCollectionResponse summary: Get microsoftTunnelServerLogCollectionResponses from deviceManagement + description: Collection of MicrosoftTunnelServerLogCollectionResponse settings associated with account. operationId: deviceManagement_ListMicrosoftTunnelServerLogCollectionResponses parameters: - $ref: '#/components/parameters/top' @@ -30144,6 +30748,7 @@ paths: tags: - deviceManagement.microsoftTunnelServerLogCollectionResponse summary: Create new navigation property to microsoftTunnelServerLogCollectionResponses for deviceManagement + description: Collection of MicrosoftTunnelServerLogCollectionResponse settings associated with account. operationId: deviceManagement_CreateMicrosoftTunnelServerLogCollectionResponses requestBody: description: New navigation property @@ -30167,6 +30772,7 @@ paths: tags: - deviceManagement.microsoftTunnelServerLogCollectionResponse summary: Get microsoftTunnelServerLogCollectionResponses from deviceManagement + description: Collection of MicrosoftTunnelServerLogCollectionResponse settings associated with account. operationId: deviceManagement_GetMicrosoftTunnelServerLogCollectionResponses parameters: - name: microsoftTunnelServerLogCollectionResponse-id @@ -30221,6 +30827,7 @@ paths: tags: - deviceManagement.microsoftTunnelServerLogCollectionResponse summary: Update the navigation property microsoftTunnelServerLogCollectionResponses in deviceManagement + description: Collection of MicrosoftTunnelServerLogCollectionResponse settings associated with account. operationId: deviceManagement_UpdateMicrosoftTunnelServerLogCollectionResponses parameters: - name: microsoftTunnelServerLogCollectionResponse-id @@ -30247,6 +30854,7 @@ paths: tags: - deviceManagement.microsoftTunnelServerLogCollectionResponse summary: Delete navigation property microsoftTunnelServerLogCollectionResponses for deviceManagement + description: Collection of MicrosoftTunnelServerLogCollectionResponse settings associated with account. operationId: deviceManagement_DeleteMicrosoftTunnelServerLogCollectionResponses parameters: - name: microsoftTunnelServerLogCollectionResponse-id @@ -30272,6 +30880,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Get microsoftTunnelSites from deviceManagement + description: Collection of MicrosoftTunnelSite settings associated with account. operationId: deviceManagement_ListMicrosoftTunnelSites parameters: - $ref: '#/components/parameters/top' @@ -30299,6 +30908,16 @@ paths: - publicAddress desc - roleScopeTagIds - roleScopeTagIds desc + - upgradeAutomatically + - upgradeAutomatically desc + - upgradeAvailable + - upgradeAvailable desc + - upgradeWindowEndTime + - upgradeWindowEndTime desc + - upgradeWindowStartTime + - upgradeWindowStartTime desc + - upgradeWindowUtcOffsetInMinutes + - upgradeWindowUtcOffsetInMinutes desc type: string - name: $select in: query @@ -30315,6 +30934,11 @@ paths: - displayName - publicAddress - roleScopeTagIds + - upgradeAutomatically + - upgradeAvailable + - upgradeWindowEndTime + - upgradeWindowStartTime + - upgradeWindowUtcOffsetInMinutes - microsoftTunnelConfiguration - microsoftTunnelServers type: string @@ -30359,6 +30983,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Create new navigation property to microsoftTunnelSites for deviceManagement + description: Collection of MicrosoftTunnelSite settings associated with account. operationId: deviceManagement_CreateMicrosoftTunnelSites requestBody: description: New navigation property @@ -30382,6 +31007,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Get microsoftTunnelSites from deviceManagement + description: Collection of MicrosoftTunnelSite settings associated with account. operationId: deviceManagement_GetMicrosoftTunnelSites parameters: - name: microsoftTunnelSite-id @@ -30406,6 +31032,11 @@ paths: - displayName - publicAddress - roleScopeTagIds + - upgradeAutomatically + - upgradeAvailable + - upgradeWindowEndTime + - upgradeWindowStartTime + - upgradeWindowUtcOffsetInMinutes - microsoftTunnelConfiguration - microsoftTunnelServers type: string @@ -30446,6 +31077,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Update the navigation property microsoftTunnelSites in deviceManagement + description: Collection of MicrosoftTunnelSite settings associated with account. operationId: deviceManagement_UpdateMicrosoftTunnelSites parameters: - name: microsoftTunnelSite-id @@ -30472,6 +31104,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Delete navigation property microsoftTunnelSites for deviceManagement + description: Collection of MicrosoftTunnelSite settings associated with account. operationId: deviceManagement_DeleteMicrosoftTunnelSites parameters: - name: microsoftTunnelSite-id @@ -30497,6 +31130,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Get microsoftTunnelConfiguration from deviceManagement + description: The MicrosoftTunnelConfiguration that has been applied to this MicrosoftTunnelSite operationId: deviceManagement.microsoftTunnelSites_GetMicrosoftTunnelConfiguration parameters: - name: microsoftTunnelSite-id @@ -30556,6 +31190,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Update the navigation property microsoftTunnelConfiguration in deviceManagement + description: The MicrosoftTunnelConfiguration that has been applied to this MicrosoftTunnelSite operationId: deviceManagement.microsoftTunnelSites_UpdateMicrosoftTunnelConfiguration parameters: - name: microsoftTunnelSite-id @@ -30582,6 +31217,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Delete navigation property microsoftTunnelConfiguration for deviceManagement + description: The MicrosoftTunnelConfiguration that has been applied to this MicrosoftTunnelSite operationId: deviceManagement.microsoftTunnelSites_DeleteMicrosoftTunnelConfiguration parameters: - name: microsoftTunnelSite-id @@ -30607,6 +31243,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Get microsoftTunnelServers from deviceManagement + description: A list of MicrosoftTunnelServers that are registered to this MicrosoftTunnelSite operationId: deviceManagement.microsoftTunnelSites_ListMicrosoftTunnelServers parameters: - name: microsoftTunnelSite-id @@ -30633,10 +31270,14 @@ paths: enum: - id - id desc + - agentImageDigest + - agentImageDigest desc - displayName - displayName desc - lastCheckinDateTime - lastCheckinDateTime desc + - serverImageDigest + - serverImageDigest desc - tunnelServerHealthStatus - tunnelServerHealthStatus desc type: string @@ -30651,8 +31292,10 @@ paths: items: enum: - id + - agentImageDigest - displayName - lastCheckinDateTime + - serverImageDigest - tunnelServerHealthStatus type: string - name: $expand @@ -30694,6 +31337,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Create new navigation property to microsoftTunnelServers for deviceManagement + description: A list of MicrosoftTunnelServers that are registered to this MicrosoftTunnelSite operationId: deviceManagement.microsoftTunnelSites_CreateMicrosoftTunnelServers parameters: - name: microsoftTunnelSite-id @@ -30725,6 +31369,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Get microsoftTunnelServers from deviceManagement + description: A list of MicrosoftTunnelServers that are registered to this MicrosoftTunnelSite operationId: deviceManagement.microsoftTunnelSites_GetMicrosoftTunnelServers parameters: - name: microsoftTunnelSite-id @@ -30752,8 +31397,10 @@ paths: items: enum: - id + - agentImageDigest - displayName - lastCheckinDateTime + - serverImageDigest - tunnelServerHealthStatus type: string - name: $expand @@ -30782,6 +31429,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Update the navigation property microsoftTunnelServers in deviceManagement + description: A list of MicrosoftTunnelServers that are registered to this MicrosoftTunnelSite operationId: deviceManagement.microsoftTunnelSites_UpdateMicrosoftTunnelServers parameters: - name: microsoftTunnelSite-id @@ -30815,6 +31463,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Delete navigation property microsoftTunnelServers for deviceManagement + description: A list of MicrosoftTunnelServers that are registered to this MicrosoftTunnelSite operationId: deviceManagement.microsoftTunnelSites_DeleteMicrosoftTunnelServers parameters: - name: microsoftTunnelSite-id @@ -30847,6 +31496,7 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Get mobileAppTroubleshootingEvents from deviceManagement + description: The collection property of MobileAppTroubleshootingEvent. operationId: deviceManagement_ListMobileAppTroubleshootingEvents parameters: - $ref: '#/components/parameters/top' @@ -30947,6 +31597,7 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Create new navigation property to mobileAppTroubleshootingEvents for deviceManagement + description: The collection property of MobileAppTroubleshootingEvent. operationId: deviceManagement_CreateMobileAppTroubleshootingEvents requestBody: description: New navigation property @@ -30970,6 +31621,7 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Get mobileAppTroubleshootingEvents from deviceManagement + description: The collection property of MobileAppTroubleshootingEvent. operationId: deviceManagement_GetMobileAppTroubleshootingEvents parameters: - name: mobileAppTroubleshootingEvent-id @@ -31033,6 +31685,7 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Update the navigation property mobileAppTroubleshootingEvents in deviceManagement + description: The collection property of MobileAppTroubleshootingEvent. operationId: deviceManagement_UpdateMobileAppTroubleshootingEvents parameters: - name: mobileAppTroubleshootingEvent-id @@ -31059,6 +31712,7 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Delete navigation property mobileAppTroubleshootingEvents for deviceManagement + description: The collection property of MobileAppTroubleshootingEvent. operationId: deviceManagement_DeleteMobileAppTroubleshootingEvents parameters: - name: mobileAppTroubleshootingEvent-id @@ -31084,6 +31738,7 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Get appLogCollectionRequests from deviceManagement + description: The collection property of AppLogUploadRequest. operationId: deviceManagement.mobileAppTroubleshootingEvents_ListAppLogCollectionRequests parameters: - name: mobileAppTroubleshootingEvent-id @@ -31174,6 +31829,7 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Create new navigation property to appLogCollectionRequests for deviceManagement + description: The collection property of AppLogUploadRequest. operationId: deviceManagement.mobileAppTroubleshootingEvents_CreateAppLogCollectionRequests parameters: - name: mobileAppTroubleshootingEvent-id @@ -31205,6 +31861,7 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Get appLogCollectionRequests from deviceManagement + description: The collection property of AppLogUploadRequest. operationId: deviceManagement.mobileAppTroubleshootingEvents_GetAppLogCollectionRequests parameters: - name: mobileAppTroubleshootingEvent-id @@ -31263,6 +31920,7 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Update the navigation property appLogCollectionRequests in deviceManagement + description: The collection property of AppLogUploadRequest. operationId: deviceManagement.mobileAppTroubleshootingEvents_UpdateAppLogCollectionRequests parameters: - name: mobileAppTroubleshootingEvent-id @@ -31296,6 +31954,7 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Delete navigation property appLogCollectionRequests for deviceManagement + description: The collection property of AppLogUploadRequest. operationId: deviceManagement.mobileAppTroubleshootingEvents_DeleteAppLogCollectionRequests parameters: - name: mobileAppTroubleshootingEvent-id @@ -31328,6 +31987,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get notificationMessageTemplates from deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_ListNotificationMessageTemplates parameters: - $ref: '#/components/parameters/top' @@ -31416,6 +32076,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Create new navigation property to notificationMessageTemplates for deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_CreateNotificationMessageTemplates requestBody: description: New navigation property @@ -31439,6 +32100,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get notificationMessageTemplates from deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_GetNotificationMessageTemplates parameters: - name: notificationMessageTemplate-id @@ -31498,6 +32160,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Update the navigation property notificationMessageTemplates in deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_UpdateNotificationMessageTemplates parameters: - name: notificationMessageTemplate-id @@ -31524,6 +32187,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Delete navigation property notificationMessageTemplates for deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_DeleteNotificationMessageTemplates parameters: - name: notificationMessageTemplate-id @@ -31549,6 +32213,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get localizedNotificationMessages from deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_ListLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id @@ -31642,6 +32307,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Create new navigation property to localizedNotificationMessages for deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_CreateLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id @@ -31673,6 +32339,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get localizedNotificationMessages from deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_GetLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id @@ -31732,6 +32399,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Update the navigation property localizedNotificationMessages in deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_UpdateLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id @@ -31765,6 +32433,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Delete navigation property localizedNotificationMessages for deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_DeleteLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id @@ -31797,6 +32466,7 @@ paths: tags: - deviceManagement.remoteActionAudit summary: Get remoteActionAudits from deviceManagement + description: The list of device remote action audits with the tenant. operationId: deviceManagement_ListRemoteActionAudits parameters: - $ref: '#/components/parameters/top' @@ -31895,6 +32565,7 @@ paths: tags: - deviceManagement.remoteActionAudit summary: Create new navigation property to remoteActionAudits for deviceManagement + description: The list of device remote action audits with the tenant. operationId: deviceManagement_CreateRemoteActionAudits requestBody: description: New navigation property @@ -31918,6 +32589,7 @@ paths: tags: - deviceManagement.remoteActionAudit summary: Get remoteActionAudits from deviceManagement + description: The list of device remote action audits with the tenant. operationId: deviceManagement_GetRemoteActionAudits parameters: - name: remoteActionAudit-id @@ -31974,6 +32646,7 @@ paths: tags: - deviceManagement.remoteActionAudit summary: Update the navigation property remoteActionAudits in deviceManagement + description: The list of device remote action audits with the tenant. operationId: deviceManagement_UpdateRemoteActionAudits parameters: - name: remoteActionAudit-id @@ -32000,6 +32673,7 @@ paths: tags: - deviceManagement.remoteActionAudit summary: Delete navigation property remoteActionAudits for deviceManagement + description: The list of device remote action audits with the tenant. operationId: deviceManagement_DeleteRemoteActionAudits parameters: - name: remoteActionAudit-id @@ -32025,6 +32699,7 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Get resourceAccessProfiles from deviceManagement + description: Collection of resource access settings associated with account. operationId: deviceManagement_ListResourceAccessProfiles parameters: - $ref: '#/components/parameters/top' @@ -32116,6 +32791,7 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Create new navigation property to resourceAccessProfiles for deviceManagement + description: Collection of resource access settings associated with account. operationId: deviceManagement_CreateResourceAccessProfiles requestBody: description: New navigation property @@ -32139,6 +32815,7 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Get resourceAccessProfiles from deviceManagement + description: Collection of resource access settings associated with account. operationId: deviceManagement_GetResourceAccessProfiles parameters: - name: deviceManagementResourceAccessProfileBase-id @@ -32199,6 +32876,7 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Update the navigation property resourceAccessProfiles in deviceManagement + description: Collection of resource access settings associated with account. operationId: deviceManagement_UpdateResourceAccessProfiles parameters: - name: deviceManagementResourceAccessProfileBase-id @@ -32225,6 +32903,7 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Delete navigation property resourceAccessProfiles for deviceManagement + description: Collection of resource access settings associated with account. operationId: deviceManagement_DeleteResourceAccessProfiles parameters: - name: deviceManagementResourceAccessProfileBase-id @@ -32250,6 +32929,7 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Get assignments from deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.resourceAccessProfiles_ListAssignments parameters: - name: deviceManagementResourceAccessProfileBase-id @@ -32337,6 +33017,7 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Create new navigation property to assignments for deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.resourceAccessProfiles_CreateAssignments parameters: - name: deviceManagementResourceAccessProfileBase-id @@ -32368,6 +33049,7 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Get assignments from deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.resourceAccessProfiles_GetAssignments parameters: - name: deviceManagementResourceAccessProfileBase-id @@ -32425,6 +33107,7 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Update the navigation property assignments in deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.resourceAccessProfiles_UpdateAssignments parameters: - name: deviceManagementResourceAccessProfileBase-id @@ -32458,6 +33141,7 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Delete navigation property assignments for deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.resourceAccessProfiles_DeleteAssignments parameters: - name: deviceManagementResourceAccessProfileBase-id @@ -32490,6 +33174,7 @@ paths: tags: - deviceManagement.deviceManagementSettingDefinition summary: Get settingDefinitions from deviceManagement + description: The device management intent setting definitions operationId: deviceManagement_ListSettingDefinitions parameters: - $ref: '#/components/parameters/top' @@ -32594,6 +33279,7 @@ paths: tags: - deviceManagement.deviceManagementSettingDefinition summary: Create new navigation property to settingDefinitions for deviceManagement + description: The device management intent setting definitions operationId: deviceManagement_CreateSettingDefinitions requestBody: description: New navigation property @@ -32617,6 +33303,7 @@ paths: tags: - deviceManagement.deviceManagementSettingDefinition summary: Get settingDefinitions from deviceManagement + description: The device management intent setting definitions operationId: deviceManagement_GetSettingDefinitions parameters: - name: deviceManagementSettingDefinition-id @@ -32675,6 +33362,7 @@ paths: tags: - deviceManagement.deviceManagementSettingDefinition summary: Update the navigation property settingDefinitions in deviceManagement + description: The device management intent setting definitions operationId: deviceManagement_UpdateSettingDefinitions parameters: - name: deviceManagementSettingDefinition-id @@ -32701,6 +33389,7 @@ paths: tags: - deviceManagement.deviceManagementSettingDefinition summary: Delete navigation property settingDefinitions for deviceManagement + description: The device management intent setting definitions operationId: deviceManagement_DeleteSettingDefinitions parameters: - name: deviceManagementSettingDefinition-id @@ -32726,6 +33415,7 @@ paths: tags: - deviceManagement.softwareUpdateStatusSummary summary: Get softwareUpdateStatusSummary from deviceManagement + description: The software update status summary. operationId: deviceManagement_GetSoftwareUpdateStatusSummary parameters: - name: $select @@ -32782,6 +33472,7 @@ paths: tags: - deviceManagement.softwareUpdateStatusSummary summary: Get ref of softwareUpdateStatusSummary from deviceManagement + description: The software update status summary. operationId: deviceManagement_GetRefSoftwareUpdateStatusSummary responses: '200': @@ -32797,6 +33488,7 @@ paths: tags: - deviceManagement.softwareUpdateStatusSummary summary: Update the ref of navigation property softwareUpdateStatusSummary in deviceManagement + description: The software update status summary. operationId: deviceManagement_SetRefSoftwareUpdateStatusSummary requestBody: description: New navigation property ref values @@ -32817,6 +33509,7 @@ paths: tags: - deviceManagement.softwareUpdateStatusSummary summary: Delete ref of navigation property softwareUpdateStatusSummary for deviceManagement + description: The software update status summary. operationId: deviceManagement_DeleteRefSoftwareUpdateStatusSummary parameters: - name: If-Match @@ -32835,6 +33528,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get templates from deviceManagement + description: The available templates operationId: deviceManagement_ListTemplates parameters: - $ref: '#/components/parameters/top' @@ -32939,6 +33633,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Create new navigation property to templates for deviceManagement + description: The available templates operationId: deviceManagement_CreateTemplates requestBody: description: New navigation property @@ -32962,6 +33657,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get templates from deviceManagement + description: The available templates operationId: deviceManagement_GetTemplates parameters: - name: deviceManagementTemplate-id @@ -33037,6 +33733,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Update the navigation property templates in deviceManagement + description: The available templates operationId: deviceManagement_UpdateTemplates parameters: - name: deviceManagementTemplate-id @@ -33063,6 +33760,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Delete navigation property templates for deviceManagement + description: The available templates operationId: deviceManagement_DeleteTemplates parameters: - name: deviceManagementTemplate-id @@ -33088,6 +33786,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get categories from deviceManagement + description: Collection of setting categories within the template operationId: deviceManagement.templates_ListCategories parameters: - name: deviceManagementTemplate-id @@ -33176,6 +33875,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Create new navigation property to categories for deviceManagement + description: Collection of setting categories within the template operationId: deviceManagement.templates_CreateCategories parameters: - name: deviceManagementTemplate-id @@ -33207,6 +33907,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get categories from deviceManagement + description: Collection of setting categories within the template operationId: deviceManagement.templates_GetCategories parameters: - name: deviceManagementTemplate-id @@ -33278,6 +33979,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Update the navigation property categories in deviceManagement + description: Collection of setting categories within the template operationId: deviceManagement.templates_UpdateCategories parameters: - name: deviceManagementTemplate-id @@ -33311,6 +34013,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Delete navigation property categories for deviceManagement + description: Collection of setting categories within the template operationId: deviceManagement.templates_DeleteCategories parameters: - name: deviceManagementTemplate-id @@ -33343,6 +34046,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get recommendedSettings from deviceManagement + description: The settings this category contains operationId: deviceManagement.templates.categories_ListRecommendedSettings parameters: - name: deviceManagementTemplate-id @@ -33434,6 +34138,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Create new navigation property to recommendedSettings for deviceManagement + description: The settings this category contains operationId: deviceManagement.templates.categories_CreateRecommendedSettings parameters: - name: deviceManagementTemplate-id @@ -33472,6 +34177,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get recommendedSettings from deviceManagement + description: The settings this category contains operationId: deviceManagement.templates.categories_GetRecommendedSettings parameters: - name: deviceManagementTemplate-id @@ -33535,6 +34241,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Update the navigation property recommendedSettings in deviceManagement + description: The settings this category contains operationId: deviceManagement.templates.categories_UpdateRecommendedSettings parameters: - name: deviceManagementTemplate-id @@ -33575,6 +34282,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Delete navigation property recommendedSettings for deviceManagement + description: The settings this category contains operationId: deviceManagement.templates.categories_DeleteRecommendedSettings parameters: - name: deviceManagementTemplate-id @@ -33614,6 +34322,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get migratableTo from deviceManagement + description: Collection of templates this template can migrate to operationId: deviceManagement.templates_ListMigratableTo parameters: - name: deviceManagementTemplate-id @@ -33725,6 +34434,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Create new navigation property to migratableTo for deviceManagement + description: Collection of templates this template can migrate to operationId: deviceManagement.templates_CreateMigratableTo parameters: - name: deviceManagementTemplate-id @@ -33756,6 +34466,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get migratableTo from deviceManagement + description: Collection of templates this template can migrate to operationId: deviceManagement.templates_GetMigratableTo parameters: - name: deviceManagementTemplate-id @@ -33841,6 +34552,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Update the navigation property migratableTo in deviceManagement + description: Collection of templates this template can migrate to operationId: deviceManagement.templates_UpdateMigratableTo parameters: - name: deviceManagementTemplate-id @@ -33874,6 +34586,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Delete navigation property migratableTo for deviceManagement + description: Collection of templates this template can migrate to operationId: deviceManagement.templates_DeleteMigratableTo parameters: - name: deviceManagementTemplate-id @@ -33906,6 +34619,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get settings from deviceManagement + description: Collection of all settings this template has operationId: deviceManagement.templates_ListSettings parameters: - name: deviceManagementTemplate-id @@ -33990,6 +34704,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Create new navigation property to settings for deviceManagement + description: Collection of all settings this template has operationId: deviceManagement.templates_CreateSettings parameters: - name: deviceManagementTemplate-id @@ -34021,6 +34736,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get settings from deviceManagement + description: Collection of all settings this template has operationId: deviceManagement.templates_GetSettings parameters: - name: deviceManagementTemplate-id @@ -34077,6 +34793,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Update the navigation property settings in deviceManagement + description: Collection of all settings this template has operationId: deviceManagement.templates_UpdateSettings parameters: - name: deviceManagementTemplate-id @@ -34110,6 +34827,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Delete navigation property settings for deviceManagement + description: Collection of all settings this template has operationId: deviceManagement.templates_DeleteSettings parameters: - name: deviceManagementTemplate-id @@ -34142,6 +34860,7 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Get troubleshootingEvents from deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_ListTroubleshootingEvents parameters: - $ref: '#/components/parameters/top' @@ -34228,6 +34947,7 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Create new navigation property to troubleshootingEvents for deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_CreateTroubleshootingEvents requestBody: description: New navigation property @@ -34251,6 +34971,7 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Get troubleshootingEvents from deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_GetTroubleshootingEvents parameters: - name: deviceManagementTroubleshootingEvent-id @@ -34303,6 +35024,7 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Update the navigation property troubleshootingEvents in deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_UpdateTroubleshootingEvents parameters: - name: deviceManagementTroubleshootingEvent-id @@ -34329,6 +35051,7 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Delete navigation property troubleshootingEvents for deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_DeleteTroubleshootingEvents parameters: - name: deviceManagementTroubleshootingEvent-id @@ -34354,6 +35077,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthApplicationPerformance summary: Get userExperienceAnalyticsAppHealthApplicationPerformance from deviceManagement + description: User experience analytics appHealth Application Performance operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthApplicationPerformance parameters: - $ref: '#/components/parameters/top' @@ -34455,6 +35179,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthApplicationPerformance summary: Create new navigation property to userExperienceAnalyticsAppHealthApplicationPerformance for deviceManagement + description: User experience analytics appHealth Application Performance operationId: deviceManagement_CreateUserExperienceAnalyticsAppHealthApplicationPerformance requestBody: description: New navigation property @@ -34478,6 +35203,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthApplicationPerformance summary: Get userExperienceAnalyticsAppHealthApplicationPerformance from deviceManagement + description: User experience analytics appHealth Application Performance operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthApplicationPerformance parameters: - name: userExperienceAnalyticsAppHealthApplicationPerformance-id @@ -34535,6 +35261,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthApplicationPerformance summary: Update the navigation property userExperienceAnalyticsAppHealthApplicationPerformance in deviceManagement + description: User experience analytics appHealth Application Performance operationId: deviceManagement_UpdateUserExperienceAnalyticsAppHealthApplicationPerformance parameters: - name: userExperienceAnalyticsAppHealthApplicationPerformance-id @@ -34561,6 +35288,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthApplicationPerformance summary: Delete navigation property userExperienceAnalyticsAppHealthApplicationPerformance for deviceManagement + description: User experience analytics appHealth Application Performance operationId: deviceManagement_DeleteUserExperienceAnalyticsAppHealthApplicationPerformance parameters: - name: userExperienceAnalyticsAppHealthApplicationPerformance-id @@ -34586,6 +35314,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByAppVersion summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion from deviceManagement + description: User experience analytics appHealth Application Performance by App Version operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion parameters: - $ref: '#/components/parameters/top' @@ -34678,6 +35407,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByAppVersion summary: Create new navigation property to userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion for deviceManagement + description: User experience analytics appHealth Application Performance by App Version operationId: deviceManagement_CreateUserExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion requestBody: description: New navigation property @@ -34701,6 +35431,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByAppVersion summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion from deviceManagement + description: User experience analytics appHealth Application Performance by App Version operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion parameters: - name: userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id @@ -34755,6 +35486,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByAppVersion summary: Update the navigation property userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion in deviceManagement + description: User experience analytics appHealth Application Performance by App Version operationId: deviceManagement_UpdateUserExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion parameters: - name: userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id @@ -34781,6 +35513,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByAppVersion summary: Delete navigation property userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion for deviceManagement + description: User experience analytics appHealth Application Performance by App Version operationId: deviceManagement_DeleteUserExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion parameters: - name: userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id @@ -34806,6 +35539,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByOSVersion summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion from deviceManagement + description: User experience analytics appHealth Application Performance by OS Version operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion parameters: - $ref: '#/components/parameters/top' @@ -34904,6 +35638,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByOSVersion summary: Create new navigation property to userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion for deviceManagement + description: User experience analytics appHealth Application Performance by OS Version operationId: deviceManagement_CreateUserExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion requestBody: description: New navigation property @@ -34927,6 +35662,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByOSVersion summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion from deviceManagement + description: User experience analytics appHealth Application Performance by OS Version operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion parameters: - name: userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id @@ -34983,6 +35719,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByOSVersion summary: Update the navigation property userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion in deviceManagement + description: User experience analytics appHealth Application Performance by OS Version operationId: deviceManagement_UpdateUserExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion parameters: - name: userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id @@ -35009,6 +35746,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByOSVersion summary: Delete navigation property userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion for deviceManagement + description: User experience analytics appHealth Application Performance by OS Version operationId: deviceManagement_DeleteUserExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion parameters: - name: userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id @@ -35034,6 +35772,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDeviceModelPerformance summary: Get userExperienceAnalyticsAppHealthDeviceModelPerformance from deviceManagement + description: User experience analytics appHealth Model Performance operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthDeviceModelPerformance parameters: - $ref: '#/components/parameters/top' @@ -35123,6 +35862,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDeviceModelPerformance summary: Create new navigation property to userExperienceAnalyticsAppHealthDeviceModelPerformance for deviceManagement + description: User experience analytics appHealth Model Performance operationId: deviceManagement_CreateUserExperienceAnalyticsAppHealthDeviceModelPerformance requestBody: description: New navigation property @@ -35146,6 +35886,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDeviceModelPerformance summary: Get userExperienceAnalyticsAppHealthDeviceModelPerformance from deviceManagement + description: User experience analytics appHealth Model Performance operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthDeviceModelPerformance parameters: - name: userExperienceAnalyticsAppHealthDeviceModelPerformance-id @@ -35199,6 +35940,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDeviceModelPerformance summary: Update the navigation property userExperienceAnalyticsAppHealthDeviceModelPerformance in deviceManagement + description: User experience analytics appHealth Model Performance operationId: deviceManagement_UpdateUserExperienceAnalyticsAppHealthDeviceModelPerformance parameters: - name: userExperienceAnalyticsAppHealthDeviceModelPerformance-id @@ -35225,6 +35967,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDeviceModelPerformance summary: Delete navigation property userExperienceAnalyticsAppHealthDeviceModelPerformance for deviceManagement + description: User experience analytics appHealth Model Performance operationId: deviceManagement_DeleteUserExperienceAnalyticsAppHealthDeviceModelPerformance parameters: - name: userExperienceAnalyticsAppHealthDeviceModelPerformance-id @@ -35250,6 +35993,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformance summary: Get userExperienceAnalyticsAppHealthDevicePerformance from deviceManagement + description: User experience analytics appHealth Device Performance operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthDevicePerformance parameters: - $ref: '#/components/parameters/top' @@ -35351,6 +36095,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformance summary: Create new navigation property to userExperienceAnalyticsAppHealthDevicePerformance for deviceManagement + description: User experience analytics appHealth Device Performance operationId: deviceManagement_CreateUserExperienceAnalyticsAppHealthDevicePerformance requestBody: description: New navigation property @@ -35374,6 +36119,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformance summary: Get userExperienceAnalyticsAppHealthDevicePerformance from deviceManagement + description: User experience analytics appHealth Device Performance operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthDevicePerformance parameters: - name: userExperienceAnalyticsAppHealthDevicePerformance-id @@ -35431,6 +36177,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformance summary: Update the navigation property userExperienceAnalyticsAppHealthDevicePerformance in deviceManagement + description: User experience analytics appHealth Device Performance operationId: deviceManagement_UpdateUserExperienceAnalyticsAppHealthDevicePerformance parameters: - name: userExperienceAnalyticsAppHealthDevicePerformance-id @@ -35457,6 +36204,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformance summary: Delete navigation property userExperienceAnalyticsAppHealthDevicePerformance for deviceManagement + description: User experience analytics appHealth Device Performance operationId: deviceManagement_DeleteUserExperienceAnalyticsAppHealthDevicePerformance parameters: - name: userExperienceAnalyticsAppHealthDevicePerformance-id @@ -35482,6 +36230,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformanceDetails summary: Get userExperienceAnalyticsAppHealthDevicePerformanceDetails from deviceManagement + description: User experience analytics device performance details operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthDevicePerformanceDetails parameters: - $ref: '#/components/parameters/top' @@ -35568,6 +36317,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformanceDetails summary: Create new navigation property to userExperienceAnalyticsAppHealthDevicePerformanceDetails for deviceManagement + description: User experience analytics device performance details operationId: deviceManagement_CreateUserExperienceAnalyticsAppHealthDevicePerformanceDetails requestBody: description: New navigation property @@ -35591,6 +36341,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformanceDetails summary: Get userExperienceAnalyticsAppHealthDevicePerformanceDetails from deviceManagement + description: User experience analytics device performance details operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthDevicePerformanceDetails parameters: - name: userExperienceAnalyticsAppHealthDevicePerformanceDetails-id @@ -35643,6 +36394,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformanceDetails summary: Update the navigation property userExperienceAnalyticsAppHealthDevicePerformanceDetails in deviceManagement + description: User experience analytics device performance details operationId: deviceManagement_UpdateUserExperienceAnalyticsAppHealthDevicePerformanceDetails parameters: - name: userExperienceAnalyticsAppHealthDevicePerformanceDetails-id @@ -35669,6 +36421,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformanceDetails summary: Delete navigation property userExperienceAnalyticsAppHealthDevicePerformanceDetails for deviceManagement + description: User experience analytics device performance details operationId: deviceManagement_DeleteUserExperienceAnalyticsAppHealthDevicePerformanceDetails parameters: - name: userExperienceAnalyticsAppHealthDevicePerformanceDetails-id @@ -35694,6 +36447,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthOSVersionPerformance summary: Get userExperienceAnalyticsAppHealthOSVersionPerformance from deviceManagement + description: User experience analytics appHealth OS version Performance operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthOSVersionPerformance parameters: - $ref: '#/components/parameters/top' @@ -35783,6 +36537,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthOSVersionPerformance summary: Create new navigation property to userExperienceAnalyticsAppHealthOSVersionPerformance for deviceManagement + description: User experience analytics appHealth OS version Performance operationId: deviceManagement_CreateUserExperienceAnalyticsAppHealthOSVersionPerformance requestBody: description: New navigation property @@ -35806,6 +36561,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthOSVersionPerformance summary: Get userExperienceAnalyticsAppHealthOSVersionPerformance from deviceManagement + description: User experience analytics appHealth OS version Performance operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthOSVersionPerformance parameters: - name: userExperienceAnalyticsAppHealthOSVersionPerformance-id @@ -35859,6 +36615,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthOSVersionPerformance summary: Update the navigation property userExperienceAnalyticsAppHealthOSVersionPerformance in deviceManagement + description: User experience analytics appHealth OS version Performance operationId: deviceManagement_UpdateUserExperienceAnalyticsAppHealthOSVersionPerformance parameters: - name: userExperienceAnalyticsAppHealthOSVersionPerformance-id @@ -35885,6 +36642,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthOSVersionPerformance summary: Delete navigation property userExperienceAnalyticsAppHealthOSVersionPerformance for deviceManagement + description: User experience analytics appHealth OS version Performance operationId: deviceManagement_DeleteUserExperienceAnalyticsAppHealthOSVersionPerformance parameters: - name: userExperienceAnalyticsAppHealthOSVersionPerformance-id @@ -35910,6 +36668,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get userExperienceAnalyticsAppHealthOverview from deviceManagement + description: User experience analytics appHealth overview operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthOverview parameters: - name: $select @@ -35956,6 +36715,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Update the navigation property userExperienceAnalyticsAppHealthOverview in deviceManagement + description: User experience analytics appHealth overview operationId: deviceManagement_UpdateUserExperienceAnalyticsAppHealthOverview requestBody: description: New navigation property values @@ -35974,6 +36734,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Delete navigation property userExperienceAnalyticsAppHealthOverview for deviceManagement + description: User experience analytics appHealth overview operationId: deviceManagement_DeleteUserExperienceAnalyticsAppHealthOverview parameters: - name: If-Match @@ -35992,6 +36753,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get metricValues from deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsAppHealthOverview_ListMetricValues parameters: - $ref: '#/components/parameters/top' @@ -36069,6 +36831,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Create new navigation property to metricValues for deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsAppHealthOverview_CreateMetricValues requestBody: description: New navigation property @@ -36092,6 +36855,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get metricValues from deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsAppHealthOverview_GetMetricValues parameters: - name: userExperienceAnalyticsMetric-id @@ -36141,6 +36905,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Update the navigation property metricValues in deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsAppHealthOverview_UpdateMetricValues parameters: - name: userExperienceAnalyticsMetric-id @@ -36167,6 +36932,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Delete navigation property metricValues for deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsAppHealthOverview_DeleteMetricValues parameters: - name: userExperienceAnalyticsMetric-id @@ -36192,6 +36958,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get userExperienceAnalyticsBaselines from deviceManagement + description: User experience analytics baselines operationId: deviceManagement_ListUserExperienceAnalyticsBaselines parameters: - $ref: '#/components/parameters/top' @@ -36284,6 +37051,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Create new navigation property to userExperienceAnalyticsBaselines for deviceManagement + description: User experience analytics baselines operationId: deviceManagement_CreateUserExperienceAnalyticsBaselines requestBody: description: New navigation property @@ -36307,6 +37075,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get userExperienceAnalyticsBaselines from deviceManagement + description: User experience analytics baselines operationId: deviceManagement_GetUserExperienceAnalyticsBaselines parameters: - name: userExperienceAnalyticsBaseline-id @@ -36394,6 +37163,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Update the navigation property userExperienceAnalyticsBaselines in deviceManagement + description: User experience analytics baselines operationId: deviceManagement_UpdateUserExperienceAnalyticsBaselines parameters: - name: userExperienceAnalyticsBaseline-id @@ -36420,6 +37190,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Delete navigation property userExperienceAnalyticsBaselines for deviceManagement + description: User experience analytics baselines operationId: deviceManagement_DeleteUserExperienceAnalyticsBaselines parameters: - name: userExperienceAnalyticsBaseline-id @@ -36445,6 +37216,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get appHealthMetrics from deviceManagement + description: The user experience analytics app health metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetAppHealthMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36501,6 +37273,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get ref of appHealthMetrics from deviceManagement + description: The user experience analytics app health metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetRefAppHealthMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36529,6 +37302,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Update the ref of navigation property appHealthMetrics in deviceManagement + description: The user experience analytics app health metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_SetRefAppHealthMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36557,6 +37331,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Delete ref of navigation property appHealthMetrics for deviceManagement + description: The user experience analytics app health metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_DeleteRefAppHealthMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36582,6 +37357,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get bestPracticesMetrics from deviceManagement + description: The user experience analytics best practices metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetBestPracticesMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36638,6 +37414,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get ref of bestPracticesMetrics from deviceManagement + description: The user experience analytics best practices metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetRefBestPracticesMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36666,6 +37443,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Update the ref of navigation property bestPracticesMetrics in deviceManagement + description: The user experience analytics best practices metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_SetRefBestPracticesMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36694,6 +37472,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Delete ref of navigation property bestPracticesMetrics for deviceManagement + description: The user experience analytics best practices metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_DeleteRefBestPracticesMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36719,6 +37498,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get deviceBootPerformanceMetrics from deviceManagement + description: The user experience analytics device boot performance metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetDeviceBootPerformanceMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36775,6 +37555,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get ref of deviceBootPerformanceMetrics from deviceManagement + description: The user experience analytics device boot performance metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetRefDeviceBootPerformanceMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36803,6 +37584,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Update the ref of navigation property deviceBootPerformanceMetrics in deviceManagement + description: The user experience analytics device boot performance metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_SetRefDeviceBootPerformanceMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36831,6 +37613,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Delete ref of navigation property deviceBootPerformanceMetrics for deviceManagement + description: The user experience analytics device boot performance metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_DeleteRefDeviceBootPerformanceMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36856,6 +37639,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get rebootAnalyticsMetrics from deviceManagement + description: The user experience analytics reboot analytics metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetRebootAnalyticsMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36912,6 +37696,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get ref of rebootAnalyticsMetrics from deviceManagement + description: The user experience analytics reboot analytics metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetRefRebootAnalyticsMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36940,6 +37725,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Update the ref of navigation property rebootAnalyticsMetrics in deviceManagement + description: The user experience analytics reboot analytics metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_SetRefRebootAnalyticsMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36968,6 +37754,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Delete ref of navigation property rebootAnalyticsMetrics for deviceManagement + description: The user experience analytics reboot analytics metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_DeleteRefRebootAnalyticsMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -36993,6 +37780,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get resourcePerformanceMetrics from deviceManagement + description: The user experience analytics resource performance metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetResourcePerformanceMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -37049,6 +37837,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get ref of resourcePerformanceMetrics from deviceManagement + description: The user experience analytics resource performance metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetRefResourcePerformanceMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -37077,6 +37866,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Update the ref of navigation property resourcePerformanceMetrics in deviceManagement + description: The user experience analytics resource performance metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_SetRefResourcePerformanceMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -37105,6 +37895,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Delete ref of navigation property resourcePerformanceMetrics for deviceManagement + description: The user experience analytics resource performance metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_DeleteRefResourcePerformanceMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -37130,6 +37921,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get workFromAnywhereMetrics from deviceManagement + description: The user experience analytics work from anywhere metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetWorkFromAnywhereMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -37186,6 +37978,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get ref of workFromAnywhereMetrics from deviceManagement + description: The user experience analytics work from anywhere metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetRefWorkFromAnywhereMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -37214,6 +38007,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Update the ref of navigation property workFromAnywhereMetrics in deviceManagement + description: The user experience analytics work from anywhere metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_SetRefWorkFromAnywhereMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -37242,6 +38036,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Delete ref of navigation property workFromAnywhereMetrics for deviceManagement + description: The user experience analytics work from anywhere metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_DeleteRefWorkFromAnywhereMetrics parameters: - name: userExperienceAnalyticsBaseline-id @@ -37267,6 +38062,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get userExperienceAnalyticsCategories from deviceManagement + description: User experience analytics categories operationId: deviceManagement_ListUserExperienceAnalyticsCategories parameters: - $ref: '#/components/parameters/top' @@ -37343,6 +38139,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Create new navigation property to userExperienceAnalyticsCategories for deviceManagement + description: User experience analytics categories operationId: deviceManagement_CreateUserExperienceAnalyticsCategories requestBody: description: New navigation property @@ -37366,6 +38163,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get userExperienceAnalyticsCategories from deviceManagement + description: User experience analytics categories operationId: deviceManagement_GetUserExperienceAnalyticsCategories parameters: - name: userExperienceAnalyticsCategory-id @@ -37421,6 +38219,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Update the navigation property userExperienceAnalyticsCategories in deviceManagement + description: User experience analytics categories operationId: deviceManagement_UpdateUserExperienceAnalyticsCategories parameters: - name: userExperienceAnalyticsCategory-id @@ -37447,6 +38246,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Delete navigation property userExperienceAnalyticsCategories for deviceManagement + description: User experience analytics categories operationId: deviceManagement_DeleteUserExperienceAnalyticsCategories parameters: - name: userExperienceAnalyticsCategory-id @@ -37472,6 +38272,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get metricValues from deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsCategories_ListMetricValues parameters: - name: userExperienceAnalyticsCategory-id @@ -37556,6 +38357,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Create new navigation property to metricValues for deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsCategories_CreateMetricValues parameters: - name: userExperienceAnalyticsCategory-id @@ -37587,6 +38389,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get metricValues from deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsCategories_GetMetricValues parameters: - name: userExperienceAnalyticsCategory-id @@ -37643,6 +38446,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Update the navigation property metricValues in deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsCategories_UpdateMetricValues parameters: - name: userExperienceAnalyticsCategory-id @@ -37676,6 +38480,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Delete navigation property metricValues for deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsCategories_DeleteMetricValues parameters: - name: userExperienceAnalyticsCategory-id @@ -37708,6 +38513,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get userExperienceAnalyticsDeviceMetricHistory from deviceManagement + description: User experience analytics device metric history operationId: deviceManagement_ListUserExperienceAnalyticsDeviceMetricHistory parameters: - $ref: '#/components/parameters/top' @@ -37790,6 +38596,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Create new navigation property to userExperienceAnalyticsDeviceMetricHistory for deviceManagement + description: User experience analytics device metric history operationId: deviceManagement_CreateUserExperienceAnalyticsDeviceMetricHistory requestBody: description: New navigation property @@ -37813,6 +38620,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get userExperienceAnalyticsDeviceMetricHistory from deviceManagement + description: User experience analytics device metric history operationId: deviceManagement_GetUserExperienceAnalyticsDeviceMetricHistory parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -37870,6 +38678,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Update the navigation property userExperienceAnalyticsDeviceMetricHistory in deviceManagement + description: User experience analytics device metric history operationId: deviceManagement_UpdateUserExperienceAnalyticsDeviceMetricHistory parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -37896,6 +38705,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Delete navigation property userExperienceAnalyticsDeviceMetricHistory for deviceManagement + description: User experience analytics device metric history operationId: deviceManagement_DeleteUserExperienceAnalyticsDeviceMetricHistory parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -37921,6 +38731,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get userExperienceAnalyticsMetric from deviceManagement + description: User experience analytics metric. operationId: deviceManagement.userExperienceAnalyticsDeviceMetricHistory_GetUserExperienceAnalyticsMetric parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -37971,6 +38782,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get ref of userExperienceAnalyticsMetric from deviceManagement + description: User experience analytics metric. operationId: deviceManagement.userExperienceAnalyticsDeviceMetricHistory_GetRefUserExperienceAnalyticsMetric parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -37994,6 +38806,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Update the ref of navigation property userExperienceAnalyticsMetric in deviceManagement + description: User experience analytics metric. operationId: deviceManagement.userExperienceAnalyticsDeviceMetricHistory_SetRefUserExperienceAnalyticsMetric parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -38022,6 +38835,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Delete ref of navigation property userExperienceAnalyticsMetric for deviceManagement + description: User experience analytics metric. operationId: deviceManagement.userExperienceAnalyticsDeviceMetricHistory_DeleteRefUserExperienceAnalyticsMetric parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -38047,6 +38861,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDevicePerformance summary: Get userExperienceAnalyticsDevicePerformance from deviceManagement + description: User experience analytics device performance operationId: deviceManagement_ListUserExperienceAnalyticsDevicePerformance parameters: - $ref: '#/components/parameters/top' @@ -38172,6 +38987,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDevicePerformance summary: Create new navigation property to userExperienceAnalyticsDevicePerformance for deviceManagement + description: User experience analytics device performance operationId: deviceManagement_CreateUserExperienceAnalyticsDevicePerformance requestBody: description: New navigation property @@ -38195,6 +39011,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDevicePerformance summary: Get userExperienceAnalyticsDevicePerformance from deviceManagement + description: User experience analytics device performance operationId: deviceManagement_GetUserExperienceAnalyticsDevicePerformance parameters: - name: userExperienceAnalyticsDevicePerformance-id @@ -38260,6 +39077,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDevicePerformance summary: Update the navigation property userExperienceAnalyticsDevicePerformance in deviceManagement + description: User experience analytics device performance operationId: deviceManagement_UpdateUserExperienceAnalyticsDevicePerformance parameters: - name: userExperienceAnalyticsDevicePerformance-id @@ -38286,6 +39104,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDevicePerformance summary: Delete navigation property userExperienceAnalyticsDevicePerformance for deviceManagement + description: User experience analytics device performance operationId: deviceManagement_DeleteUserExperienceAnalyticsDevicePerformance parameters: - name: userExperienceAnalyticsDevicePerformance-id @@ -38306,11 +39125,233 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + /deviceManagement/userExperienceAnalyticsDeviceScores: + get: + tags: + - deviceManagement.userExperienceAnalyticsDeviceScores + summary: Get userExperienceAnalyticsDeviceScores from deviceManagement + description: User experience analytics device scores + operationId: deviceManagement_ListUserExperienceAnalyticsDeviceScores + 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 + - appReliabilityScore + - appReliabilityScore desc + - deviceName + - deviceName desc + - endpointAnalyticsScore + - endpointAnalyticsScore desc + - manufacturer + - manufacturer desc + - model + - model desc + - startupPerformanceScore + - startupPerformanceScore 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 + - appReliabilityScore + - deviceName + - endpointAnalyticsScore + - manufacturer + - model + - startupPerformanceScore + 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 userExperienceAnalyticsDeviceScores + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsDeviceScores' + '@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.userExperienceAnalyticsDeviceScores + summary: Create new navigation property to userExperienceAnalyticsDeviceScores for deviceManagement + description: User experience analytics device scores + operationId: deviceManagement_CreateUserExperienceAnalyticsDeviceScores + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsDeviceScores' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsDeviceScores' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}': + get: + tags: + - deviceManagement.userExperienceAnalyticsDeviceScores + summary: Get userExperienceAnalyticsDeviceScores from deviceManagement + description: User experience analytics device scores + operationId: deviceManagement_GetUserExperienceAnalyticsDeviceScores + parameters: + - name: userExperienceAnalyticsDeviceScores-id + in: path + description: 'key: id of userExperienceAnalyticsDeviceScores' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsDeviceScores + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - appReliabilityScore + - deviceName + - endpointAnalyticsScore + - manufacturer + - model + - startupPerformanceScore + 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.userExperienceAnalyticsDeviceScores' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - deviceManagement.userExperienceAnalyticsDeviceScores + summary: Update the navigation property userExperienceAnalyticsDeviceScores in deviceManagement + description: User experience analytics device scores + operationId: deviceManagement_UpdateUserExperienceAnalyticsDeviceScores + parameters: + - name: userExperienceAnalyticsDeviceScores-id + in: path + description: 'key: id of userExperienceAnalyticsDeviceScores' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsDeviceScores + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsDeviceScores' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - deviceManagement.userExperienceAnalyticsDeviceScores + summary: Delete navigation property userExperienceAnalyticsDeviceScores for deviceManagement + description: User experience analytics device scores + operationId: deviceManagement_DeleteUserExperienceAnalyticsDeviceScores + parameters: + - name: userExperienceAnalyticsDeviceScores-id + in: path + description: 'key: id of userExperienceAnalyticsDeviceScores' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsDeviceScores + - 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/userExperienceAnalyticsDeviceStartupHistory: get: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupHistory summary: Get userExperienceAnalyticsDeviceStartupHistory from deviceManagement + description: User experience analytics device Startup History operationId: deviceManagement_ListUserExperienceAnalyticsDeviceStartupHistory parameters: - $ref: '#/components/parameters/top' @@ -38430,6 +39471,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupHistory summary: Create new navigation property to userExperienceAnalyticsDeviceStartupHistory for deviceManagement + description: User experience analytics device Startup History operationId: deviceManagement_CreateUserExperienceAnalyticsDeviceStartupHistory requestBody: description: New navigation property @@ -38453,6 +39495,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupHistory summary: Get userExperienceAnalyticsDeviceStartupHistory from deviceManagement + description: User experience analytics device Startup History operationId: deviceManagement_GetUserExperienceAnalyticsDeviceStartupHistory parameters: - name: userExperienceAnalyticsDeviceStartupHistory-id @@ -38516,6 +39559,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupHistory summary: Update the navigation property userExperienceAnalyticsDeviceStartupHistory in deviceManagement + description: User experience analytics device Startup History operationId: deviceManagement_UpdateUserExperienceAnalyticsDeviceStartupHistory parameters: - name: userExperienceAnalyticsDeviceStartupHistory-id @@ -38542,6 +39586,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupHistory summary: Delete navigation property userExperienceAnalyticsDeviceStartupHistory for deviceManagement + description: User experience analytics device Startup History operationId: deviceManagement_DeleteUserExperienceAnalyticsDeviceStartupHistory parameters: - name: userExperienceAnalyticsDeviceStartupHistory-id @@ -38567,6 +39612,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcess summary: Get userExperienceAnalyticsDeviceStartupProcesses from deviceManagement + description: User experience analytics device Startup Processes operationId: deviceManagement_ListUserExperienceAnalyticsDeviceStartupProcesses parameters: - $ref: '#/components/parameters/top' @@ -38653,6 +39699,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcess summary: Create new navigation property to userExperienceAnalyticsDeviceStartupProcesses for deviceManagement + description: User experience analytics device Startup Processes operationId: deviceManagement_CreateUserExperienceAnalyticsDeviceStartupProcesses requestBody: description: New navigation property @@ -38676,6 +39723,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcess summary: Get userExperienceAnalyticsDeviceStartupProcesses from deviceManagement + description: User experience analytics device Startup Processes operationId: deviceManagement_GetUserExperienceAnalyticsDeviceStartupProcesses parameters: - name: userExperienceAnalyticsDeviceStartupProcess-id @@ -38728,6 +39776,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcess summary: Update the navigation property userExperienceAnalyticsDeviceStartupProcesses in deviceManagement + description: User experience analytics device Startup Processes operationId: deviceManagement_UpdateUserExperienceAnalyticsDeviceStartupProcesses parameters: - name: userExperienceAnalyticsDeviceStartupProcess-id @@ -38754,6 +39803,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcess summary: Delete navigation property userExperienceAnalyticsDeviceStartupProcesses for deviceManagement + description: User experience analytics device Startup Processes operationId: deviceManagement_DeleteUserExperienceAnalyticsDeviceStartupProcesses parameters: - name: userExperienceAnalyticsDeviceStartupProcess-id @@ -38779,6 +39829,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcessPerformance summary: Get userExperienceAnalyticsDeviceStartupProcessPerformance from deviceManagement + description: User experience analytics device Startup Process Performance operationId: deviceManagement_ListUserExperienceAnalyticsDeviceStartupProcessPerformance parameters: - $ref: '#/components/parameters/top' @@ -38868,6 +39919,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcessPerformance summary: Create new navigation property to userExperienceAnalyticsDeviceStartupProcessPerformance for deviceManagement + description: User experience analytics device Startup Process Performance operationId: deviceManagement_CreateUserExperienceAnalyticsDeviceStartupProcessPerformance requestBody: description: New navigation property @@ -38891,6 +39943,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcessPerformance summary: Get userExperienceAnalyticsDeviceStartupProcessPerformance from deviceManagement + description: User experience analytics device Startup Process Performance operationId: deviceManagement_GetUserExperienceAnalyticsDeviceStartupProcessPerformance parameters: - name: userExperienceAnalyticsDeviceStartupProcessPerformance-id @@ -38944,6 +39997,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcessPerformance summary: Update the navigation property userExperienceAnalyticsDeviceStartupProcessPerformance in deviceManagement + description: User experience analytics device Startup Process Performance operationId: deviceManagement_UpdateUserExperienceAnalyticsDeviceStartupProcessPerformance parameters: - name: userExperienceAnalyticsDeviceStartupProcessPerformance-id @@ -38970,6 +40024,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcessPerformance summary: Delete navigation property userExperienceAnalyticsDeviceStartupProcessPerformance for deviceManagement + description: User experience analytics device Startup Process Performance operationId: deviceManagement_DeleteUserExperienceAnalyticsDeviceStartupProcessPerformance parameters: - name: userExperienceAnalyticsDeviceStartupProcessPerformance-id @@ -38995,6 +40050,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceWithoutCloudIdentity summary: Get userExperienceAnalyticsDevicesWithoutCloudIdentity from deviceManagement + description: User experience analytics devices without cloud identity. operationId: deviceManagement_ListUserExperienceAnalyticsDevicesWithoutCloudIdentity parameters: - $ref: '#/components/parameters/top' @@ -39072,6 +40128,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceWithoutCloudIdentity summary: Create new navigation property to userExperienceAnalyticsDevicesWithoutCloudIdentity for deviceManagement + description: User experience analytics devices without cloud identity. operationId: deviceManagement_CreateUserExperienceAnalyticsDevicesWithoutCloudIdentity requestBody: description: New navigation property @@ -39095,6 +40152,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceWithoutCloudIdentity summary: Get userExperienceAnalyticsDevicesWithoutCloudIdentity from deviceManagement + description: User experience analytics devices without cloud identity. operationId: deviceManagement_GetUserExperienceAnalyticsDevicesWithoutCloudIdentity parameters: - name: userExperienceAnalyticsDeviceWithoutCloudIdentity-id @@ -39144,6 +40202,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceWithoutCloudIdentity summary: Update the navigation property userExperienceAnalyticsDevicesWithoutCloudIdentity in deviceManagement + description: User experience analytics devices without cloud identity. operationId: deviceManagement_UpdateUserExperienceAnalyticsDevicesWithoutCloudIdentity parameters: - name: userExperienceAnalyticsDeviceWithoutCloudIdentity-id @@ -39170,6 +40229,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceWithoutCloudIdentity summary: Delete navigation property userExperienceAnalyticsDevicesWithoutCloudIdentity for deviceManagement + description: User experience analytics devices without cloud identity. operationId: deviceManagement_DeleteUserExperienceAnalyticsDevicesWithoutCloudIdentity parameters: - name: userExperienceAnalyticsDeviceWithoutCloudIdentity-id @@ -39195,6 +40255,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsImpactingProcess summary: Get userExperienceAnalyticsImpactingProcess from deviceManagement + description: User experience analytics impacting process operationId: deviceManagement_ListUserExperienceAnalyticsImpactingProcess parameters: - $ref: '#/components/parameters/top' @@ -39284,6 +40345,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsImpactingProcess summary: Create new navigation property to userExperienceAnalyticsImpactingProcess for deviceManagement + description: User experience analytics impacting process operationId: deviceManagement_CreateUserExperienceAnalyticsImpactingProcess requestBody: description: New navigation property @@ -39307,6 +40369,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsImpactingProcess summary: Get userExperienceAnalyticsImpactingProcess from deviceManagement + description: User experience analytics impacting process operationId: deviceManagement_GetUserExperienceAnalyticsImpactingProcess parameters: - name: userExperienceAnalyticsImpactingProcess-id @@ -39360,6 +40423,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsImpactingProcess summary: Update the navigation property userExperienceAnalyticsImpactingProcess in deviceManagement + description: User experience analytics impacting process operationId: deviceManagement_UpdateUserExperienceAnalyticsImpactingProcess parameters: - name: userExperienceAnalyticsImpactingProcess-id @@ -39386,6 +40450,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsImpactingProcess summary: Delete navigation property userExperienceAnalyticsImpactingProcess for deviceManagement + description: User experience analytics impacting process operationId: deviceManagement_DeleteUserExperienceAnalyticsImpactingProcess parameters: - name: userExperienceAnalyticsImpactingProcess-id @@ -39411,6 +40476,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get userExperienceAnalyticsMetricHistory from deviceManagement + description: User experience analytics metric history operationId: deviceManagement_ListUserExperienceAnalyticsMetricHistory parameters: - $ref: '#/components/parameters/top' @@ -39493,6 +40559,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Create new navigation property to userExperienceAnalyticsMetricHistory for deviceManagement + description: User experience analytics metric history operationId: deviceManagement_CreateUserExperienceAnalyticsMetricHistory requestBody: description: New navigation property @@ -39516,6 +40583,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get userExperienceAnalyticsMetricHistory from deviceManagement + description: User experience analytics metric history operationId: deviceManagement_GetUserExperienceAnalyticsMetricHistory parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -39573,6 +40641,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Update the navigation property userExperienceAnalyticsMetricHistory in deviceManagement + description: User experience analytics metric history operationId: deviceManagement_UpdateUserExperienceAnalyticsMetricHistory parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -39599,6 +40668,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Delete navigation property userExperienceAnalyticsMetricHistory for deviceManagement + description: User experience analytics metric history operationId: deviceManagement_DeleteUserExperienceAnalyticsMetricHistory parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -39624,6 +40694,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get userExperienceAnalyticsMetric from deviceManagement + description: User experience analytics metric. operationId: deviceManagement.userExperienceAnalyticsMetricHistory_GetUserExperienceAnalyticsMetric parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -39674,6 +40745,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get ref of userExperienceAnalyticsMetric from deviceManagement + description: User experience analytics metric. operationId: deviceManagement.userExperienceAnalyticsMetricHistory_GetRefUserExperienceAnalyticsMetric parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -39697,6 +40769,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Update the ref of navigation property userExperienceAnalyticsMetric in deviceManagement + description: User experience analytics metric. operationId: deviceManagement.userExperienceAnalyticsMetricHistory_SetRefUserExperienceAnalyticsMetric parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -39725,6 +40798,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Delete ref of navigation property userExperienceAnalyticsMetric for deviceManagement + description: User experience analytics metric. operationId: deviceManagement.userExperienceAnalyticsMetricHistory_DeleteRefUserExperienceAnalyticsMetric parameters: - name: userExperienceAnalyticsMetricHistory-id @@ -39750,6 +40824,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_ListUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - $ref: '#/components/parameters/top' @@ -39848,6 +40923,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Create new navigation property to userExperienceAnalyticsNotAutopilotReadyDevice for deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_CreateUserExperienceAnalyticsNotAutopilotReadyDevice requestBody: description: New navigation property @@ -39871,6 +40947,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_GetUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - name: userExperienceAnalyticsNotAutopilotReadyDevice-id @@ -39927,6 +41004,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Update the navigation property userExperienceAnalyticsNotAutopilotReadyDevice in deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_UpdateUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - name: userExperienceAnalyticsNotAutopilotReadyDevice-id @@ -39953,6 +41031,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Delete navigation property userExperienceAnalyticsNotAutopilotReadyDevice for deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_DeleteUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - name: userExperienceAnalyticsNotAutopilotReadyDevice-id @@ -39978,6 +41057,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsOverview summary: Get userExperienceAnalyticsOverview from deviceManagement + description: User experience analytics overview operationId: deviceManagement_GetUserExperienceAnalyticsOverview parameters: - name: $select @@ -40019,6 +41099,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsOverview summary: Update the navigation property userExperienceAnalyticsOverview in deviceManagement + description: User experience analytics overview operationId: deviceManagement_UpdateUserExperienceAnalyticsOverview requestBody: description: New navigation property values @@ -40037,6 +41118,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsOverview summary: Delete navigation property userExperienceAnalyticsOverview for deviceManagement + description: User experience analytics overview operationId: deviceManagement_DeleteUserExperienceAnalyticsOverview parameters: - name: If-Match @@ -40055,6 +41137,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get userExperienceAnalyticsRegressionSummary from deviceManagement + description: User experience analytics regression summary operationId: deviceManagement_GetUserExperienceAnalyticsRegressionSummary parameters: - name: $select @@ -40108,6 +41191,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Update the navigation property userExperienceAnalyticsRegressionSummary in deviceManagement + description: User experience analytics regression summary operationId: deviceManagement_UpdateUserExperienceAnalyticsRegressionSummary requestBody: description: New navigation property values @@ -40126,6 +41210,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Delete navigation property userExperienceAnalyticsRegressionSummary for deviceManagement + description: User experience analytics regression summary operationId: deviceManagement_DeleteUserExperienceAnalyticsRegressionSummary parameters: - name: If-Match @@ -40144,6 +41229,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get manufacturerRegression from deviceManagement + description: The metric values for the user experience analytics Manufacturer regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_ListManufacturerRegression parameters: - $ref: '#/components/parameters/top' @@ -40221,6 +41307,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Create new navigation property to manufacturerRegression for deviceManagement + description: The metric values for the user experience analytics Manufacturer regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_CreateManufacturerRegression requestBody: description: New navigation property @@ -40244,6 +41331,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get manufacturerRegression from deviceManagement + description: The metric values for the user experience analytics Manufacturer regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_GetManufacturerRegression parameters: - name: userExperienceAnalyticsMetric-id @@ -40293,6 +41381,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Update the navigation property manufacturerRegression in deviceManagement + description: The metric values for the user experience analytics Manufacturer regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_UpdateManufacturerRegression parameters: - name: userExperienceAnalyticsMetric-id @@ -40319,6 +41408,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Delete navigation property manufacturerRegression for deviceManagement + description: The metric values for the user experience analytics Manufacturer regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_DeleteManufacturerRegression parameters: - name: userExperienceAnalyticsMetric-id @@ -40344,6 +41434,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get modelRegression from deviceManagement + description: The metric values for the user experience analytics model regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_ListModelRegression parameters: - $ref: '#/components/parameters/top' @@ -40421,6 +41512,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Create new navigation property to modelRegression for deviceManagement + description: The metric values for the user experience analytics model regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_CreateModelRegression requestBody: description: New navigation property @@ -40444,6 +41536,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get modelRegression from deviceManagement + description: The metric values for the user experience analytics model regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_GetModelRegression parameters: - name: userExperienceAnalyticsMetric-id @@ -40493,6 +41586,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Update the navigation property modelRegression in deviceManagement + description: The metric values for the user experience analytics model regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_UpdateModelRegression parameters: - name: userExperienceAnalyticsMetric-id @@ -40519,6 +41613,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Delete navigation property modelRegression for deviceManagement + description: The metric values for the user experience analytics model regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_DeleteModelRegression parameters: - name: userExperienceAnalyticsMetric-id @@ -40544,6 +41639,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get operatingSystemRegression from deviceManagement + description: The metric values for the user experience analytics operating system regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_ListOperatingSystemRegression parameters: - $ref: '#/components/parameters/top' @@ -40621,6 +41717,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Create new navigation property to operatingSystemRegression for deviceManagement + description: The metric values for the user experience analytics operating system regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_CreateOperatingSystemRegression requestBody: description: New navigation property @@ -40644,6 +41741,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get operatingSystemRegression from deviceManagement + description: The metric values for the user experience analytics operating system regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_GetOperatingSystemRegression parameters: - name: userExperienceAnalyticsMetric-id @@ -40693,6 +41791,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Update the navigation property operatingSystemRegression in deviceManagement + description: The metric values for the user experience analytics operating system regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_UpdateOperatingSystemRegression parameters: - name: userExperienceAnalyticsMetric-id @@ -40719,6 +41818,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Delete navigation property operatingSystemRegression for deviceManagement + description: The metric values for the user experience analytics operating system regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_DeleteOperatingSystemRegression parameters: - name: userExperienceAnalyticsMetric-id @@ -40744,6 +41844,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRemoteConnection summary: Get userExperienceAnalyticsRemoteConnection from deviceManagement + description: User experience analytics remote connection operationId: deviceManagement_ListUserExperienceAnalyticsRemoteConnection parameters: - $ref: '#/components/parameters/top' @@ -40848,6 +41949,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRemoteConnection summary: Create new navigation property to userExperienceAnalyticsRemoteConnection for deviceManagement + description: User experience analytics remote connection operationId: deviceManagement_CreateUserExperienceAnalyticsRemoteConnection requestBody: description: New navigation property @@ -40871,6 +41973,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRemoteConnection summary: Get userExperienceAnalyticsRemoteConnection from deviceManagement + description: User experience analytics remote connection operationId: deviceManagement_GetUserExperienceAnalyticsRemoteConnection parameters: - name: userExperienceAnalyticsRemoteConnection-id @@ -40929,6 +42032,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRemoteConnection summary: Update the navigation property userExperienceAnalyticsRemoteConnection in deviceManagement + description: User experience analytics remote connection operationId: deviceManagement_UpdateUserExperienceAnalyticsRemoteConnection parameters: - name: userExperienceAnalyticsRemoteConnection-id @@ -40955,6 +42059,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRemoteConnection summary: Delete navigation property userExperienceAnalyticsRemoteConnection for deviceManagement + description: User experience analytics remote connection operationId: deviceManagement_DeleteUserExperienceAnalyticsRemoteConnection parameters: - name: userExperienceAnalyticsRemoteConnection-id @@ -40980,6 +42085,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsResourcePerformance summary: Get userExperienceAnalyticsResourcePerformance from deviceManagement + description: User experience analytics resource performance operationId: deviceManagement_ListUserExperienceAnalyticsResourcePerformance parameters: - $ref: '#/components/parameters/top' @@ -41087,6 +42193,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsResourcePerformance summary: Create new navigation property to userExperienceAnalyticsResourcePerformance for deviceManagement + description: User experience analytics resource performance operationId: deviceManagement_CreateUserExperienceAnalyticsResourcePerformance requestBody: description: New navigation property @@ -41110,6 +42217,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsResourcePerformance summary: Get userExperienceAnalyticsResourcePerformance from deviceManagement + description: User experience analytics resource performance operationId: deviceManagement_GetUserExperienceAnalyticsResourcePerformance parameters: - name: userExperienceAnalyticsResourcePerformance-id @@ -41169,6 +42277,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsResourcePerformance summary: Update the navigation property userExperienceAnalyticsResourcePerformance in deviceManagement + description: User experience analytics resource performance operationId: deviceManagement_UpdateUserExperienceAnalyticsResourcePerformance parameters: - name: userExperienceAnalyticsResourcePerformance-id @@ -41195,6 +42304,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsResourcePerformance summary: Delete navigation property userExperienceAnalyticsResourcePerformance for deviceManagement + description: User experience analytics resource performance operationId: deviceManagement_DeleteUserExperienceAnalyticsResourcePerformance parameters: - name: userExperienceAnalyticsResourcePerformance-id @@ -41220,6 +42330,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsScoreHistory summary: Get userExperienceAnalyticsScoreHistory from deviceManagement + description: User experience analytics device Startup Score History operationId: deviceManagement_ListUserExperienceAnalyticsScoreHistory parameters: - $ref: '#/components/parameters/top' @@ -41294,6 +42405,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsScoreHistory summary: Create new navigation property to userExperienceAnalyticsScoreHistory for deviceManagement + description: User experience analytics device Startup Score History operationId: deviceManagement_CreateUserExperienceAnalyticsScoreHistory requestBody: description: New navigation property @@ -41317,6 +42429,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsScoreHistory summary: Get userExperienceAnalyticsScoreHistory from deviceManagement + description: User experience analytics device Startup Score History operationId: deviceManagement_GetUserExperienceAnalyticsScoreHistory parameters: - name: userExperienceAnalyticsScoreHistory-id @@ -41365,6 +42478,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsScoreHistory summary: Update the navigation property userExperienceAnalyticsScoreHistory in deviceManagement + description: User experience analytics device Startup Score History operationId: deviceManagement_UpdateUserExperienceAnalyticsScoreHistory parameters: - name: userExperienceAnalyticsScoreHistory-id @@ -41391,6 +42505,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsScoreHistory summary: Delete navigation property userExperienceAnalyticsScoreHistory for deviceManagement + description: User experience analytics device Startup Score History operationId: deviceManagement_DeleteUserExperienceAnalyticsScoreHistory parameters: - name: userExperienceAnalyticsScoreHistory-id @@ -41411,11 +42526,503 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + /deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics: + get: + tags: + - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric + summary: Get userExperienceAnalyticsWorkFromAnywhereMetrics from deviceManagement + description: User experience analytics work from anywhere metrics. + operationId: deviceManagement_ListUserExperienceAnalyticsWorkFromAnywhereMetrics + 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 + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - metricDevices + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - metricDevices + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of userExperienceAnalyticsWorkFromAnywhereMetric + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereMetric' + '@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.userExperienceAnalyticsWorkFromAnywhereMetric + summary: Create new navigation property to userExperienceAnalyticsWorkFromAnywhereMetrics for deviceManagement + description: User experience analytics work from anywhere metrics. + operationId: deviceManagement_CreateUserExperienceAnalyticsWorkFromAnywhereMetrics + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereMetric' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereMetric' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}': + get: + tags: + - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric + summary: Get userExperienceAnalyticsWorkFromAnywhereMetrics from deviceManagement + description: User experience analytics work from anywhere metrics. + operationId: deviceManagement_GetUserExperienceAnalyticsWorkFromAnywhereMetrics + parameters: + - name: userExperienceAnalyticsWorkFromAnywhereMetric-id + in: path + description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - metricDevices + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - metricDevices + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereMetric' + links: + metricDevices: + operationId: deviceManagement.UserExperienceAnalyticsWorkFromAnywhereMetrics.ListMetricDevices + parameters: + userExperienceAnalyticsWorkFromAnywhereMetric-id: $request.path.userExperienceAnalyticsWorkFromAnywhereMetric-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric + summary: Update the navigation property userExperienceAnalyticsWorkFromAnywhereMetrics in deviceManagement + description: User experience analytics work from anywhere metrics. + operationId: deviceManagement_UpdateUserExperienceAnalyticsWorkFromAnywhereMetrics + parameters: + - name: userExperienceAnalyticsWorkFromAnywhereMetric-id + in: path + description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereMetric' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric + summary: Delete navigation property userExperienceAnalyticsWorkFromAnywhereMetrics for deviceManagement + description: User experience analytics work from anywhere metrics. + operationId: deviceManagement_DeleteUserExperienceAnalyticsWorkFromAnywhereMetrics + parameters: + - name: userExperienceAnalyticsWorkFromAnywhereMetric-id + in: path + description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric + - 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/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices': + get: + tags: + - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric + summary: Get metricDevices from deviceManagement + description: The work from anywhere metric devices. + operationId: deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetrics_ListMetricDevices + parameters: + - name: userExperienceAnalyticsWorkFromAnywhereMetric-id + in: path + description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric + - $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 + - azureAdDeviceId + - azureAdDeviceId desc + - azureAdJoinType + - azureAdJoinType desc + - azureAdRegistered + - azureAdRegistered desc + - deviceName + - deviceName desc + - managedBy + - managedBy desc + - manufacturer + - manufacturer desc + - model + - model desc + - osDescription + - osDescription desc + - osVersion + - osVersion desc + - ownership + - ownership 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 + - azureAdDeviceId + - azureAdJoinType + - azureAdRegistered + - deviceName + - managedBy + - manufacturer + - model + - osDescription + - osVersion + - ownership + - 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 userExperienceAnalyticsWorkFromAnywhereDevice + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereDevice' + '@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.userExperienceAnalyticsWorkFromAnywhereMetric + summary: Create new navigation property to metricDevices for deviceManagement + description: The work from anywhere metric devices. + operationId: deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetrics_CreateMetricDevices + parameters: + - name: userExperienceAnalyticsWorkFromAnywhereMetric-id + in: path + description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereDevice' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereDevice' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}': + get: + tags: + - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric + summary: Get metricDevices from deviceManagement + description: The work from anywhere metric devices. + operationId: deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetrics_GetMetricDevices + parameters: + - name: userExperienceAnalyticsWorkFromAnywhereMetric-id + in: path + description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric + - name: userExperienceAnalyticsWorkFromAnywhereDevice-id + in: path + description: 'key: id of userExperienceAnalyticsWorkFromAnywhereDevice' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereDevice + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - autoPilotProfileAssigned + - autoPilotRegistered + - azureAdDeviceId + - azureAdJoinType + - azureAdRegistered + - deviceName + - managedBy + - manufacturer + - model + - osDescription + - osVersion + - ownership + - 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.userExperienceAnalyticsWorkFromAnywhereDevice' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric + summary: Update the navigation property metricDevices in deviceManagement + description: The work from anywhere metric devices. + operationId: deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetrics_UpdateMetricDevices + parameters: + - name: userExperienceAnalyticsWorkFromAnywhereMetric-id + in: path + description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric + - name: userExperienceAnalyticsWorkFromAnywhereDevice-id + in: path + description: 'key: id of userExperienceAnalyticsWorkFromAnywhereDevice' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereDevice + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereDevice' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric + summary: Delete navigation property metricDevices for deviceManagement + description: The work from anywhere metric devices. + operationId: deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetrics_DeleteMetricDevices + parameters: + - name: userExperienceAnalyticsWorkFromAnywhereMetric-id + in: path + description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric + - name: userExperienceAnalyticsWorkFromAnywhereDevice-id + in: path + description: 'key: id of userExperienceAnalyticsWorkFromAnywhereDevice' + required: true + schema: + type: string + x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereDevice + - 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/windowsInformationProtectionAppLearningSummaries: get: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Get windowsInformationProtectionAppLearningSummaries from deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_ListWindowsInformationProtectionAppLearningSummaries parameters: - $ref: '#/components/parameters/top' @@ -41496,6 +43103,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Create new navigation property to windowsInformationProtectionAppLearningSummaries for deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_CreateWindowsInformationProtectionAppLearningSummaries requestBody: description: New navigation property @@ -41519,6 +43127,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Get windowsInformationProtectionAppLearningSummaries from deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_GetWindowsInformationProtectionAppLearningSummaries parameters: - name: windowsInformationProtectionAppLearningSummary-id @@ -41569,6 +43178,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Update the navigation property windowsInformationProtectionAppLearningSummaries in deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_UpdateWindowsInformationProtectionAppLearningSummaries parameters: - name: windowsInformationProtectionAppLearningSummary-id @@ -41595,6 +43205,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Delete navigation property windowsInformationProtectionAppLearningSummaries for deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_DeleteWindowsInformationProtectionAppLearningSummaries parameters: - name: windowsInformationProtectionAppLearningSummary-id @@ -41620,6 +43231,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Get windowsInformationProtectionNetworkLearningSummaries from deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_ListWindowsInformationProtectionNetworkLearningSummaries parameters: - $ref: '#/components/parameters/top' @@ -41697,6 +43309,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Create new navigation property to windowsInformationProtectionNetworkLearningSummaries for deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_CreateWindowsInformationProtectionNetworkLearningSummaries requestBody: description: New navigation property @@ -41720,6 +43333,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Get windowsInformationProtectionNetworkLearningSummaries from deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_GetWindowsInformationProtectionNetworkLearningSummaries parameters: - name: windowsInformationProtectionNetworkLearningSummary-id @@ -41769,6 +43383,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Update the navigation property windowsInformationProtectionNetworkLearningSummaries in deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_UpdateWindowsInformationProtectionNetworkLearningSummaries parameters: - name: windowsInformationProtectionNetworkLearningSummary-id @@ -41795,6 +43410,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Delete navigation property windowsInformationProtectionNetworkLearningSummaries for deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_DeleteWindowsInformationProtectionNetworkLearningSummaries parameters: - name: windowsInformationProtectionNetworkLearningSummary-id @@ -41820,6 +43436,7 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Get windowsMalwareInformation from deviceManagement + description: The list of affected malware in the tenant. operationId: deviceManagement_ListWindowsMalwareInformation parameters: - $ref: '#/components/parameters/top' @@ -41908,6 +43525,7 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Create new navigation property to windowsMalwareInformation for deviceManagement + description: The list of affected malware in the tenant. operationId: deviceManagement_CreateWindowsMalwareInformation requestBody: description: New navigation property @@ -41931,6 +43549,7 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Get windowsMalwareInformation from deviceManagement + description: The list of affected malware in the tenant. operationId: deviceManagement_GetWindowsMalwareInformation parameters: - name: windowsMalwareInformation-id @@ -41990,6 +43609,7 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Update the navigation property windowsMalwareInformation in deviceManagement + description: The list of affected malware in the tenant. operationId: deviceManagement_UpdateWindowsMalwareInformation parameters: - name: windowsMalwareInformation-id @@ -42016,6 +43636,7 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Delete navigation property windowsMalwareInformation for deviceManagement + description: The list of affected malware in the tenant. operationId: deviceManagement_DeleteWindowsMalwareInformation parameters: - name: windowsMalwareInformation-id @@ -42041,6 +43662,7 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Get deviceMalwareStates from deviceManagement + description: List of devices affected by current malware with the malware state on each device operationId: deviceManagement.windowsMalwareInformation_ListDeviceMalwareStates parameters: - name: windowsMalwareInformation-id @@ -42137,6 +43759,7 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Create new navigation property to deviceMalwareStates for deviceManagement + description: List of devices affected by current malware with the malware state on each device operationId: deviceManagement.windowsMalwareInformation_CreateDeviceMalwareStates parameters: - name: windowsMalwareInformation-id @@ -42168,6 +43791,7 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Get deviceMalwareStates from deviceManagement + description: List of devices affected by current malware with the malware state on each device operationId: deviceManagement.windowsMalwareInformation_GetDeviceMalwareStates parameters: - name: windowsMalwareInformation-id @@ -42228,6 +43852,7 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Update the navigation property deviceMalwareStates in deviceManagement + description: List of devices affected by current malware with the malware state on each device operationId: deviceManagement.windowsMalwareInformation_UpdateDeviceMalwareStates parameters: - name: windowsMalwareInformation-id @@ -42261,6 +43886,7 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Delete navigation property deviceMalwareStates for deviceManagement + description: List of devices affected by current malware with the malware state on each device operationId: deviceManagement.windowsMalwareInformation_DeleteDeviceMalwareStates parameters: - name: windowsMalwareInformation-id @@ -42467,11 +44093,31 @@ components: items: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' description: List of all Configuration policies + configurationPolicyTemplates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyTemplate' + description: List of all templates configurationSettings: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' description: List of all ConfigurationSettings + reusablePolicySettings: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementReusablePolicySetting' + description: List of all reusable settings that can be referred in a policy + reusableSettings: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' + description: List of all reusable settings + templateSettings: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingTemplate' + description: List of all TemplateSettings complianceManagementPartners: type: array items: @@ -42533,6 +44179,11 @@ components: description: The available templates applePushNotificationCertificate: $ref: '#/components/schemas/microsoft.graph.applePushNotificationCertificate' + cloudPCConnectivityIssues: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPCConnectivityIssue' + description: The list of CloudPC Connectivity Issue. comanagedDevices: type: array items: @@ -42652,6 +44303,11 @@ components: items: $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsDevicePerformance' description: User experience analytics device performance + userExperienceAnalyticsDeviceScores: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsDeviceScores' + description: User experience analytics device scores userExperienceAnalyticsDeviceStartupHistory: type: array items: @@ -42706,6 +44362,11 @@ components: items: $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsScoreHistory' description: User experience analytics device Startup Score History + userExperienceAnalyticsWorkFromAnywhereMetrics: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereMetric' + description: User experience analytics work from anywhere metrics. windowsMalwareInformation: type: array items: @@ -43291,6 +44952,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -43572,16 +45237,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -43945,7 +45610,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -43958,7 +45623,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -43970,12 +45635,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -43984,7 +45649,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -43992,7 +45657,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -44008,7 +45673,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -44024,7 +45689,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -44048,7 +45713,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -44067,11 +45732,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -44079,7 +45744,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -44126,7 +45791,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -44135,7 +45800,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -44173,15 +45838,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -44189,7 +45854,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -44318,6 +45983,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -45783,6 +47452,12 @@ components: - title: deviceHealthScriptDeviceState type: object properties: + assignmentFilterIds: + type: array + items: + type: string + nullable: true + description: A list of the assignment filter ids used for health script applicability evaluation detectionState: $ref: '#/components/schemas/microsoft.graph.runState' expectedStateUpdateDateTime: @@ -45840,6 +47515,12 @@ components: type: integer description: Number of devices on which the detection script execution encountered an error and did not complete format: int32 + detectionScriptNotApplicableDeviceCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Number of devices for which the detection script was not applicable + format: int32 detectionScriptPendingDeviceCount: maximum: 2147483647 minimum: -2147483648 @@ -47217,6 +48898,31 @@ components: type: string nullable: true description: List of Scope Tags for this Entity instance. + upgradeAutomatically: + type: boolean + description: 'The site''s automatic upgrade setting. True for automatic upgrades, false for manual control' + upgradeAvailable: + type: boolean + description: True if an upgrade is available + upgradeWindowEndTime: + pattern: '^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$' + type: string + description: The site's upgrade window end time of day + format: time + nullable: true + upgradeWindowStartTime: + pattern: '^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$' + type: string + description: The site's upgrade window start time of day + format: time + nullable: true + upgradeWindowUtcOffsetInMinutes: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The site's timezone represented as a minute offset from UTC + format: int32 + nullable: true microsoftTunnelConfiguration: $ref: '#/components/schemas/microsoft.graph.microsoftTunnelConfiguration' microsoftTunnelServers: @@ -47233,6 +48939,10 @@ components: - title: microsoftTunnelServer type: object properties: + agentImageDigest: + type: string + description: 'The digest of the current agent image running on this server ' + nullable: true displayName: type: string description: The MicrosoftTunnelServer's display name @@ -47242,6 +48952,10 @@ components: type: string description: When the MicrosoftTunnelServer last checked in format: date-time + serverImageDigest: + type: string + description: 'The digest of the current server image running on this server ' + nullable: true tunnelServerHealthStatus: $ref: '#/components/schemas/microsoft.graph.microsoftTunnelServerHealthStatus' additionalProperties: @@ -48167,6 +49881,39 @@ components: additionalProperties: type: object description: The user experience analytics device performance entity contains device boot performance details. + microsoft.graph.userExperienceAnalyticsDeviceScores: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: userExperienceAnalyticsDeviceScores + type: object + properties: + appReliabilityScore: + type: number + description: The user experience analytics device app reliability score. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 + format: double + deviceName: + type: string + description: The user experience analytics device name. + nullable: true + endpointAnalyticsScore: + type: number + description: The user experience analytics device score. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 + format: double + manufacturer: + type: string + description: The user experience analytics device manufacturer. + nullable: true + model: + type: string + description: The user experience analytics device model. + nullable: true + startupPerformanceScore: + type: number + description: The user experience analytics device startup performance score. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 + format: double + additionalProperties: + type: object + description: The user experience analytics device scores entity consolidates the various endpoint analytics scores. microsoft.graph.userExperienceAnalyticsDeviceStartupHistory: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -48388,7 +50135,9 @@ components: description: The intune device's azure Ad joinType. nullable: true azureAdRegistered: - $ref: '#/components/schemas/microsoft.graph.azureAdRegisteredState' + type: boolean + description: The intune device's azureAdRegistered. + nullable: true deviceName: type: string description: The intune device's name. @@ -48582,6 +50331,81 @@ components: additionalProperties: type: object description: The user experience analytics device startup score history. + microsoft.graph.userExperienceAnalyticsWorkFromAnywhereMetric: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: userExperienceAnalyticsWorkFromAnywhereMetric + type: object + properties: + metricDevices: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereDevice' + description: The work from anywhere metric devices. + additionalProperties: + type: object + description: The user experience analytics metric for work from anywhere report + microsoft.graph.userExperienceAnalyticsWorkFromAnywhereDevice: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: userExperienceAnalyticsWorkFromAnywhereDevice + type: object + properties: + autoPilotProfileAssigned: + type: boolean + description: The user experience analytics work from anywhere intune device's autopilotProfileAssigned. + nullable: true + autoPilotRegistered: + type: boolean + description: The user experience work from anywhere intune device's autopilotRegistered. + nullable: true + azureAdDeviceId: + type: string + description: The user experience work from anywhere azure Ad device Id. + nullable: true + azureAdJoinType: + type: string + description: The user experience work from anywhere device's azure Ad joinType. + nullable: true + azureAdRegistered: + type: boolean + description: The user experience work from anywhere device's azureAdRegistered. + nullable: true + deviceName: + type: string + description: The work from anywhere device's name. + nullable: true + managedBy: + type: string + description: The user experience work from anywhere management agent of the device. + nullable: true + manufacturer: + type: string + description: The user experience work from anywhere device's manufacturer. + nullable: true + model: + type: string + description: The user experience work from anywhere device's model. + nullable: true + osDescription: + type: string + description: The user experience work from anywhere device's OS Description. + nullable: true + osVersion: + type: string + description: The user experience work from anywhere device's OS Version. + nullable: true + ownership: + type: string + description: The user experience work from anywhere device's ownership. + nullable: true + serialNumber: + type: string + description: The user experience work from anywhere device's serial number. + nullable: true + additionalProperties: + type: object + description: The user experience analytics Device for work from anywhere report microsoft.graph.windowsInformationProtectionAppLearningSummary: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -49114,6 +50938,10 @@ components: items: $ref: '#/components/schemas/microsoft.graph.cloudPcProvisioningPolicy' description: cloud PC provisioning policy. + userSettings: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcUserSetting' additionalProperties: type: object microsoft.graph.androidForWorkEnrollmentProfile: @@ -49630,6 +51458,8 @@ components: format: int32 technologies: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationTechnologies' + templateReference: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyTemplateReference' assignments: type: array items: @@ -49643,6 +51473,59 @@ components: additionalProperties: type: object description: Device Management Configuration Policy + microsoft.graph.deviceManagementConfigurationPolicyTemplate: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deviceManagementConfigurationPolicyTemplate + type: object + properties: + allowUnmanagedSettings: + type: boolean + description: Allow unmanaged setting templates + baseId: + type: string + description: Template base identifier + nullable: true + description: + type: string + description: Template description + nullable: true + displayName: + type: string + description: Template display name + nullable: true + displayVersion: + type: string + description: Description of template version + nullable: true + lifecycleState: + $ref: '#/components/schemas/microsoft.graph.deviceManagementTemplateLifecycleState' + platforms: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPlatforms' + settingTemplateCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Number of setting templates. Valid values 0 to 2147483647. This property is read-only. + format: int32 + technologies: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationTechnologies' + templateFamily: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationTemplateFamily' + version: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Template version. Valid values 1 to 2147483647. This property is read-only. + format: int32 + settingTemplates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingTemplate' + description: Setting templates + additionalProperties: + type: object + description: Device Management Configuration Policy Template microsoft.graph.deviceManagementConfigurationSettingDefinition: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -49695,6 +51578,11 @@ components: type: string description: Offset CSP Path from Base nullable: true + referredSettingInformationList: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationReferredSettingInformation' + description: List of referred setting information. rootDefinitionId: type: string description: Root setting definition if the setting is a child setting. @@ -49711,6 +51599,71 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingVisibility' additionalProperties: type: object + microsoft.graph.deviceManagementReusablePolicySetting: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deviceManagementReusablePolicySetting + 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: reusable setting creation date and time. This property is read-only. + format: date-time + description: + type: string + description: reusable setting description supplied by user. + nullable: true + displayName: + type: string + description: reusable setting display name supplied by user. + 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: date and time when reusable setting was last modified. This property is read-only. + format: date-time + referencingConfigurationPolicyCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: count of configuration policies referencing the current reusable setting. Valid values 0 to 2147483647. This property is read-only. + format: int32 + settingDefinitionId: + type: string + description: setting definition id associated with this reusable setting. + nullable: true + settingInstance: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingInstance' + version: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: version number for reusable setting. Valid values 0 to 2147483647. This property is read-only. + format: int32 + referencingConfigurationPolicies: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' + description: configuration policies referencing the current reusable setting + additionalProperties: + type: object + description: Graph model for a reusable setting + microsoft.graph.deviceManagementConfigurationSettingTemplate: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deviceManagementConfigurationSettingTemplate + type: object + properties: + settingInstanceTemplate: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingInstanceTemplate' + settingDefinitions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' + description: List of related Setting Definitions + additionalProperties: + type: object + description: Setting Template microsoft.graph.complianceManagementPartner: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -50071,6 +52024,40 @@ components: additionalProperties: type: object description: Apple push notification certificate. + microsoft.graph.cloudPCConnectivityIssue: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: cloudPCConnectivityIssue + type: object + properties: + deviceId: + type: string + description: The Intune DeviceId of the device the connection is associated with. + nullable: true + errorCode: + type: string + description: The error code of the connectivity issue. + nullable: true + errorDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 that the connection initiated. The time is shown in ISO 8601 format and Coordinated Universal Time (UTC) time. + format: date-time + errorDescription: + type: string + description: The detailed description of what went wrong. + nullable: true + recommendedAction: + type: string + description: The recommended action to fix the corresponding error. + nullable: true + userId: + type: string + description: The unique id of user who initialize the connection. + nullable: true + additionalProperties: + type: object + description: The user experience analyte connectivity issue entity. microsoft.graph.comanagementEligibleDevice: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -51281,6 +53268,12 @@ components: displayName: type: string description: The display name of the profile. + endOfSupportDate: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 supported date for a feature update + format: date-time + nullable: true featureUpdateVersion: type: string description: 'The feature update version that will be deployed to the devices targeted by this profile. The version could be any supported version for example 1709, 1803 or 1809 and so on.' @@ -51364,6 +53357,12 @@ components: displayName: type: string description: The display name for the catalog item. + endOfSupportDate: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 supported date for a catalog item + format: date-time + nullable: true releaseDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -51817,6 +53816,35 @@ components: - collection - abstractComplex type: string + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -52182,6 +54210,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -52723,7 +54755,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -53057,7 +55089,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -53856,6 +55888,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -55170,11 +57203,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -55189,6 +57223,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -55198,7 +57233,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -55235,7 +57270,6 @@ components: 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: @@ -55439,7 +57473,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -56086,6 +58120,12 @@ components: type: integer description: Number of AOSP userless Android devices. Valid values 0 to 2147483647 format: int32 + chromeOSCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Number of Chrome OS devices. Valid values 0 to 2147483647 + format: int32 configMgrDeviceCount: maximum: 2147483647 minimum: -2147483648 @@ -56162,10 +58202,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -56243,6 +58283,7 @@ components: - rotateFileVaultKey - getFileVaultKey - setDeviceName + - activateDeviceEsim type: string microsoft.graph.actionState: title: actionState @@ -56369,13 +58410,6 @@ components: - bootError - update type: string - microsoft.graph.azureAdRegisteredState: - title: azureAdRegisteredState - enum: - - no - - yes - - unknown - type: string microsoft.graph.applicationType: title: applicationType enum: @@ -56643,6 +58677,11 @@ components: type: string description: The cloud PC display name. nullable: true + gracePeriodEndDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-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 imageDisplayName: type: string description: Name of the OS image that's on the cloud PC. @@ -56660,10 +58699,16 @@ components: type: string description: The cloud PC’s Intune device name. nullable: true + onPremisesConnectionName: + type: string + nullable: true provisioningPolicyId: type: string description: The cloud PC's provisioning policy ID. nullable: true + provisioningPolicyName: + type: string + nullable: true servicePlanId: type: string description: The cloud PC's service plan ID. @@ -56803,6 +58848,32 @@ components: description: A defined collection of provisioning policy assignments. Returned only on $expand. See an example of getting the assignments relationship. additionalProperties: type: object + microsoft.graph.cloudPcUserSetting: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: cloudPcUserSetting + type: object + properties: + displayName: + type: string + 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 + localAdminEnabled: + type: boolean + nullable: true + selfServiceEnabled: + type: boolean + nullable: true + assignments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcUserSettingAssignment' + additionalProperties: + type: object microsoft.graph.auditActor: title: auditActor type: object @@ -57025,7 +59096,29 @@ components: - mdm - windows10XManagement - configManager + - microsoftSense type: string + microsoft.graph.deviceManagementConfigurationPolicyTemplateReference: + title: deviceManagementConfigurationPolicyTemplateReference + type: object + properties: + templateDisplayName: + type: string + description: Template Display Name of the referenced template. This property is read-only. + nullable: true + templateDisplayVersion: + type: string + description: Template Display Version of the referenced Template. This property is read-only. + nullable: true + templateFamily: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationTemplateFamily' + templateId: + type: string + description: Template id + nullable: true + additionalProperties: + type: object + description: Policy template reference information microsoft.graph.deviceManagementConfigurationPolicyAssignment: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -57053,6 +59146,28 @@ components: additionalProperties: type: object description: Setting instance within policy + microsoft.graph.deviceManagementTemplateLifecycleState: + title: deviceManagementTemplateLifecycleState + enum: + - invalid + - draft + - active + - superseded + - deprecated + - retired + type: string + microsoft.graph.deviceManagementConfigurationTemplateFamily: + title: deviceManagementConfigurationTemplateFamily + enum: + - none + - endpointSecurityAntivirus + - endpointSecurityDiskEncryption + - endpointSecurityFirewall + - endpointSecurityEndpointDetectionAndResponse + - endpointSecurityAttackSurfaceReduction + - endpointSecurityAccountProtection + - endpointSecurityApplicationControl + type: string microsoft.graph.deviceManagementConfigurationSettingAccessTypes: title: deviceManagementConfigurationSettingAccessTypes enum: @@ -57100,6 +59215,17 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.deviceManagementConfigurationReferredSettingInformation: + title: deviceManagementConfigurationReferredSettingInformation + type: object + properties: + settingDefinitionId: + type: string + description: Setting definition id that is being referred to a setting. Applicable for reusable setting + nullable: true + additionalProperties: + type: object + description: Referred setting information about reusable setting microsoft.graph.deviceManagementConfigurationControlType: title: deviceManagementConfigurationControlType enum: @@ -57118,6 +59244,34 @@ components: - settingsCatalog - template type: string + microsoft.graph.deviceManagementConfigurationSettingInstance: + title: deviceManagementConfigurationSettingInstance + type: object + properties: + settingDefinitionId: + type: string + description: Setting Definition Id + settingInstanceTemplateReference: + $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingInstanceTemplateReference' + additionalProperties: + type: object + description: Setting instance within policy + microsoft.graph.deviceManagementConfigurationSettingInstanceTemplate: + title: deviceManagementConfigurationSettingInstanceTemplate + type: object + properties: + isRequired: + type: boolean + description: Indicates if a policy must specify this setting. + settingDefinitionId: + type: string + description: Setting Definition Id + settingInstanceTemplateId: + type: string + description: Setting Instance Template Id + additionalProperties: + type: object + description: Setting Instance Template microsoft.graph.complianceManagementPartnerAssignment: title: complianceManagementPartnerAssignment type: object @@ -57524,7 +59678,7 @@ components: nullable: true isSupervised: type: boolean - description: 'Indicates if the Apple device is supervised. More information is at: https://support.apple.com/HT202837' + description: 'Indicates if the Apple device is supervised. More information is at: https://support.apple.com/en-us/HT202837' lastContactedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -58303,6 +60457,25 @@ components: - bundleArray - hidden type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object microsoft.graph.configurationManagerClientState: title: configurationManagerClientState enum: @@ -59200,7 +61373,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -60370,53 +62543,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -61722,10 +63900,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -61796,18 +63986,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -61820,6 +64009,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -61875,7 +64065,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -62157,6 +64346,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -62737,30 +64928,13 @@ components: - notProvisioned - provisioning - provisioned - - upgrading - inGracePeriod - deprovisioning - failed + - provisionedWithWarnings + - resizing + - unknownFutureValue type: string - microsoft.graph.cloudPcStatusDetails: - title: cloudPcStatusDetails - type: object - properties: - additionalInformation: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.keyValuePair' - description: Any additional information about the cloud PC status. - code: - type: string - description: The code associated with the cloud PC status. - nullable: true - message: - type: string - description: The status message. - nullable: true - additionalProperties: - type: object microsoft.graph.cloudPcDeviceImageStatus: title: cloudPcDeviceImageStatus enum: @@ -62783,6 +64957,7 @@ components: - running - passed - failed + - warning - unknownFutureValue type: string microsoft.graph.cloudPcOnPremisesConnectionStatusDetails: @@ -62822,6 +64997,16 @@ components: $ref: '#/components/schemas/microsoft.graph.cloudPcManagementAssignmentTarget' additionalProperties: type: object + microsoft.graph.cloudPcUserSettingAssignment: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: cloudPcUserSettingAssignment + type: object + properties: + target: + $ref: '#/components/schemas/microsoft.graph.cloudPcManagementAssignmentTarget' + additionalProperties: + type: object microsoft.graph.roleScopeTagInfo: title: roleScopeTagInfo type: object @@ -62856,22 +65041,22 @@ components: additionalProperties: type: object description: A class containing the properties for Audit Property. - microsoft.graph.deviceManagementConfigurationSettingInstance: - title: deviceManagementConfigurationSettingInstance - type: object - properties: - settingDefinitionId: - type: string - description: Setting Definition Id - additionalProperties: - type: object - description: Setting instance within policy microsoft.graph.deviceManagementConfigurationDeviceMode: title: deviceManagementConfigurationDeviceMode enum: - none - kiosk type: string + microsoft.graph.deviceManagementConfigurationSettingInstanceTemplateReference: + title: deviceManagementConfigurationSettingInstanceTemplateReference + type: object + properties: + settingInstanceTemplateId: + type: string + description: Setting instance template id + additionalProperties: + type: object + description: Setting instance template reference information microsoft.graph.deviceManagementExchangeAccessRuleType: title: deviceManagementExchangeAccessRuleType enum: @@ -65217,7 +67402,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -65236,14 +67421,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -65252,18 +67437,18 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object microsoft.graph.resultantAppState: @@ -66047,18 +68232,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -66137,7 +68326,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -66161,7 +68350,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -66219,6 +68408,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -66251,6 +68445,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -66751,17 +68947,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -66769,9 +68970,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -67390,11 +69593,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -67850,16 +70053,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: @@ -67903,6 +70109,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' @@ -68183,12 +70390,17 @@ components: - adJoinCheckIncorrectCredentials - adJoinCheckOrganizationalUnitNotFound - adJoinCheckOrganizationalUnitIncorrectFormat + - adJoinCheckComputerObjectAlreadyExists + - adJoinCheckAccessDenied - adJoinCheckUnknownError - - endpointConnectivityCheckUrlNotWhitelisted + - endpointConnectivityCheckCloudPcUrlNotAllowListed + - endpointConnectivityCheckWVDUrlNotAllowListed + - endpointConnectivityCheckIntuneUrlNotAllowListed - endpointConnectivityCheckUnknownError - aadConnectivityCheckUnknownError - resourceAvailabilityCheckNoSubnetIP - resourceAvailabilityCheckSubscriptionDisabled + - resourceAvailabilityCheckUnsupportedVNetRegion - resourceAvailabilityCheckUnknownError - permissionCheckNoSubscriptionReaderRole - permissionCheckNoResourceGroupOwnerRole @@ -68402,7 +70614,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string diff --git a/openApiDocs/beta/Devices.CloudPrint.yml b/openApiDocs/beta/Devices.CloudPrint.yml index 25894263ef7..3d1cfab92fb 100644 --- a/openApiDocs/beta/Devices.CloudPrint.yml +++ b/openApiDocs/beta/Devices.CloudPrint.yml @@ -103,6 +103,7 @@ paths: tags: - print.printConnector summary: Get connectors from print + description: The list of available print connectors. operationId: print_ListConnectors parameters: - $ref: '#/components/parameters/top' @@ -198,6 +199,7 @@ paths: tags: - print.printConnector summary: Create new navigation property to connectors for print + description: The list of available print connectors. operationId: print_CreateConnectors requestBody: description: New navigation property @@ -221,6 +223,7 @@ paths: tags: - print.printConnector summary: Get connectors from print + description: The list of available print connectors. operationId: print_GetConnectors parameters: - name: printConnector-id @@ -276,6 +279,7 @@ paths: tags: - print.printConnector summary: Update the navigation property connectors in print + description: The list of available print connectors. operationId: print_UpdateConnectors parameters: - name: printConnector-id @@ -302,6 +306,7 @@ paths: tags: - print.printConnector summary: Delete navigation property connectors for print + description: The list of available print connectors. operationId: print_DeleteConnectors parameters: - name: printConnector-id @@ -327,6 +332,7 @@ paths: tags: - print.printOperation summary: Get operations from print + description: The list of print long running operations. operationId: print_ListOperations parameters: - $ref: '#/components/parameters/top' @@ -404,6 +410,7 @@ paths: tags: - print.printOperation summary: Create new navigation property to operations for print + description: The list of print long running operations. operationId: print_CreateOperations requestBody: description: New navigation property @@ -427,6 +434,7 @@ paths: tags: - print.printOperation summary: Get operations from print + description: The list of print long running operations. operationId: print_GetOperations parameters: - name: printOperation-id @@ -476,6 +484,7 @@ paths: tags: - print.printOperation summary: Update the navigation property operations in print + description: The list of print long running operations. operationId: print_UpdateOperations parameters: - name: printOperation-id @@ -502,6 +511,7 @@ paths: tags: - print.printOperation summary: Delete navigation property operations for print + description: The list of print long running operations. operationId: print_DeleteOperations parameters: - name: printOperation-id @@ -527,6 +537,7 @@ paths: tags: - print.printer summary: Get printers from print + description: The list of printers registered in the tenant. operationId: print_ListPrinters parameters: - $ref: '#/components/parameters/top' @@ -650,6 +661,7 @@ paths: tags: - print.printer summary: Create new navigation property to printers for print + description: The list of printers registered in the tenant. operationId: print_CreatePrinters requestBody: description: New navigation property @@ -673,6 +685,7 @@ paths: tags: - print.printer summary: Get printers from print + description: The list of printers registered in the tenant. operationId: print_GetPrinters parameters: - name: printer-id @@ -765,6 +778,7 @@ paths: tags: - print.printer summary: Update the navigation property printers in print + description: The list of printers registered in the tenant. operationId: print_UpdatePrinters parameters: - name: printer-id @@ -791,6 +805,7 @@ paths: tags: - print.printer summary: Delete navigation property printers for print + description: The list of printers registered in the tenant. operationId: print_DeletePrinters parameters: - name: printer-id @@ -816,6 +831,7 @@ paths: tags: - print.printer summary: Get connectors from print + description: The connectors that are associated with the printer. operationId: print.printers_ListConnectors parameters: - name: printer-id @@ -919,6 +935,7 @@ paths: tags: - print.printer summary: Get ref of connectors from print + description: The connectors that are associated with the printer. operationId: print.printers_ListRefConnectors parameters: - name: printer-id @@ -989,6 +1006,7 @@ paths: tags: - print.printer summary: Create new navigation property ref to connectors for print + description: The connectors that are associated with the printer. operationId: print.printers_CreateRefConnectors parameters: - name: printer-id @@ -1265,6 +1283,7 @@ paths: tags: - print.printer summary: Get shares from print + description: 'The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable.' operationId: print.printers_ListShares parameters: - name: printer-id @@ -1385,6 +1404,7 @@ paths: tags: - print.printer summary: Get ref of shares from print + description: 'The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable.' operationId: print.printers_ListRefShares parameters: - name: printer-id @@ -1461,6 +1481,7 @@ paths: tags: - print.printer summary: Create new navigation property ref to shares for print + description: 'The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable.' operationId: print.printers_CreateRefShares parameters: - name: printer-id @@ -1496,6 +1517,7 @@ paths: tags: - print.printer summary: Get taskTriggers from print + description: A list of task triggers that are associated with the printer. operationId: print.printers_ListTaskTriggers parameters: - name: printer-id @@ -1579,6 +1601,7 @@ paths: tags: - print.printer summary: Create new navigation property to taskTriggers for print + description: A list of task triggers that are associated with the printer. operationId: print.printers_CreateTaskTriggers parameters: - name: printer-id @@ -1610,6 +1633,7 @@ paths: tags: - print.printer summary: Get taskTriggers from print + description: A list of task triggers that are associated with the printer. operationId: print.printers_GetTaskTriggers parameters: - name: printer-id @@ -1673,6 +1697,7 @@ paths: tags: - print.printer summary: Update the navigation property taskTriggers in print + description: A list of task triggers that are associated with the printer. operationId: print.printers_UpdateTaskTriggers parameters: - name: printer-id @@ -1706,6 +1731,7 @@ paths: tags: - print.printer summary: Delete navigation property taskTriggers for print + description: A list of task triggers that are associated with the printer. operationId: print.printers_DeleteTaskTriggers parameters: - name: printer-id @@ -1738,6 +1764,7 @@ paths: tags: - print.printer summary: Get definition from print + description: An abstract definition that will be used to create a printTask when triggered by a print event. Read-only. operationId: print.printers.taskTriggers_GetDefinition parameters: - name: printer-id @@ -1803,6 +1830,7 @@ paths: tags: - print.printer summary: Get ref of definition from print + description: An abstract definition that will be used to create a printTask when triggered by a print event. Read-only. operationId: print.printers.taskTriggers_GetRefDefinition parameters: - name: printer-id @@ -1839,6 +1867,7 @@ paths: tags: - print.printer summary: Update the ref of navigation property definition in print + description: An abstract definition that will be used to create a printTask when triggered by a print event. Read-only. operationId: print.printers.taskTriggers_SetRefDefinition parameters: - name: printer-id @@ -1874,6 +1903,7 @@ paths: tags: - print.printer summary: Delete ref of navigation property definition for print + description: An abstract definition that will be used to create a printTask when triggered by a print event. Read-only. operationId: print.printers.taskTriggers_DeleteRefDefinition parameters: - name: printer-id @@ -2215,6 +2245,7 @@ paths: tags: - print.printerShare summary: Get allowedGroups from print + description: The groups whose users have access to print using the printer. operationId: print.printerShares_ListAllowedGroups parameters: - name: printerShare-id @@ -2497,6 +2528,7 @@ paths: tags: - print.printerShare summary: Get ref of allowedGroups from print + description: The groups whose users have access to print using the printer. operationId: print.printerShares_ListRefAllowedGroups parameters: - name: printerShare-id @@ -2649,6 +2681,7 @@ paths: tags: - print.printerShare summary: Create new navigation property ref to allowedGroups for print + description: The groups whose users have access to print using the printer. operationId: print.printerShares_CreateRefAllowedGroups parameters: - name: printerShare-id @@ -2684,6 +2717,7 @@ paths: tags: - print.printerShare summary: Get allowedUsers from print + description: The users who have access to print using the printer. operationId: print.printerShares_ListAllowedUsers parameters: - name: printerShare-id @@ -2962,6 +2996,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -3034,6 +3069,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -3108,6 +3144,7 @@ paths: tags: - print.printerShare summary: Get ref of allowedUsers from print + description: The users who have access to print using the printer. operationId: print.printerShares_ListRefAllowedUsers parameters: - name: printerShare-id @@ -3312,6 +3349,7 @@ paths: tags: - print.printerShare summary: Create new navigation property ref to allowedUsers for print + description: The users who have access to print using the printer. operationId: print.printerShares_CreateRefAllowedUsers parameters: - name: printerShare-id @@ -3347,6 +3385,7 @@ paths: tags: - print.printerShare summary: Get printer from print + description: The printer that this printer share is related to. operationId: print.printerShares_GetPrinter parameters: - name: printerShare-id @@ -3440,6 +3479,7 @@ paths: tags: - print.printerShare summary: Get ref of printer from print + description: The printer that this printer share is related to. operationId: print.printerShares_GetRefPrinter parameters: - name: printerShare-id @@ -3484,6 +3524,7 @@ paths: tags: - print.printerShare summary: Update the ref of navigation property printer in print + description: The printer that this printer share is related to. operationId: print.printerShares_SetRefPrinter parameters: - name: printerShare-id @@ -3512,6 +3553,7 @@ paths: tags: - print.printerShare summary: Delete ref of navigation property printer for print + description: The printer that this printer share is related to. operationId: print.printerShares_DeleteRefPrinter parameters: - name: printerShare-id @@ -3726,6 +3768,7 @@ paths: tags: - print.printService summary: Get services from print + description: The list of available Universal Print service endpoints. operationId: print_ListServices parameters: - $ref: '#/components/parameters/top' @@ -3799,6 +3842,7 @@ paths: tags: - print.printService summary: Create new navigation property to services for print + description: The list of available Universal Print service endpoints. operationId: print_CreateServices requestBody: description: New navigation property @@ -3822,6 +3866,7 @@ paths: tags: - print.printService summary: Get services from print + description: The list of available Universal Print service endpoints. operationId: print_GetServices parameters: - name: printService-id @@ -3876,6 +3921,7 @@ paths: tags: - print.printService summary: Update the navigation property services in print + description: The list of available Universal Print service endpoints. operationId: print_UpdateServices parameters: - name: printService-id @@ -3902,6 +3948,7 @@ paths: tags: - print.printService summary: Delete navigation property services for print + description: The list of available Universal Print service endpoints. operationId: print_DeleteServices parameters: - name: printService-id @@ -3927,6 +3974,7 @@ paths: tags: - print.printService summary: Get endpoints from print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_ListEndpoints parameters: - name: printService-id @@ -4011,6 +4059,7 @@ paths: tags: - print.printService summary: Create new navigation property to endpoints for print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_CreateEndpoints parameters: - name: printService-id @@ -4042,6 +4091,7 @@ paths: tags: - print.printService summary: Get endpoints from print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_GetEndpoints parameters: - name: printService-id @@ -4098,6 +4148,7 @@ paths: tags: - print.printService summary: Update the navigation property endpoints in print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_UpdateEndpoints parameters: - name: printService-id @@ -4131,6 +4182,7 @@ paths: tags: - print.printService summary: Delete navigation property endpoints for print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_DeleteEndpoints parameters: - name: printService-id @@ -4163,6 +4215,7 @@ paths: tags: - print.printerShare summary: Get shares from print + description: The list of printer shares registered in the tenant. operationId: print_ListShares parameters: - $ref: '#/components/parameters/top' @@ -4275,6 +4328,7 @@ paths: tags: - print.printerShare summary: Create new navigation property to shares for print + description: The list of printer shares registered in the tenant. operationId: print_CreateShares requestBody: description: New navigation property @@ -4298,6 +4352,7 @@ paths: tags: - print.printerShare summary: Get shares from print + description: The list of printer shares registered in the tenant. operationId: print_GetShares parameters: - name: printerShare-id @@ -4381,6 +4436,7 @@ paths: tags: - print.printerShare summary: Update the navigation property shares in print + description: The list of printer shares registered in the tenant. operationId: print_UpdateShares parameters: - name: printerShare-id @@ -4407,6 +4463,7 @@ paths: tags: - print.printerShare summary: Delete navigation property shares for print + description: The list of printer shares registered in the tenant. operationId: print_DeleteShares parameters: - name: printerShare-id @@ -4432,6 +4489,7 @@ paths: tags: - print.printerShare summary: Get allowedGroups from print + description: The groups whose users have access to print using the printer. operationId: print.shares_ListAllowedGroups parameters: - name: printerShare-id @@ -4714,6 +4772,7 @@ paths: tags: - print.printerShare summary: Get ref of allowedGroups from print + description: The groups whose users have access to print using the printer. operationId: print.shares_ListRefAllowedGroups parameters: - name: printerShare-id @@ -4866,6 +4925,7 @@ paths: tags: - print.printerShare summary: Create new navigation property ref to allowedGroups for print + description: The groups whose users have access to print using the printer. operationId: print.shares_CreateRefAllowedGroups parameters: - name: printerShare-id @@ -4901,6 +4961,7 @@ paths: tags: - print.printerShare summary: Get allowedUsers from print + description: The users who have access to print using the printer. operationId: print.shares_ListAllowedUsers parameters: - name: printerShare-id @@ -5179,6 +5240,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -5251,6 +5313,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -5325,6 +5388,7 @@ paths: tags: - print.printerShare summary: Get ref of allowedUsers from print + description: The users who have access to print using the printer. operationId: print.shares_ListRefAllowedUsers parameters: - name: printerShare-id @@ -5529,6 +5593,7 @@ paths: tags: - print.printerShare summary: Create new navigation property ref to allowedUsers for print + description: The users who have access to print using the printer. operationId: print.shares_CreateRefAllowedUsers parameters: - name: printerShare-id @@ -5564,6 +5629,7 @@ paths: tags: - print.printerShare summary: Get printer from print + description: The printer that this printer share is related to. operationId: print.shares_GetPrinter parameters: - name: printerShare-id @@ -5657,6 +5723,7 @@ paths: tags: - print.printerShare summary: Get ref of printer from print + description: The printer that this printer share is related to. operationId: print.shares_GetRefPrinter parameters: - name: printerShare-id @@ -5701,6 +5768,7 @@ paths: tags: - print.printerShare summary: Update the ref of navigation property printer in print + description: The printer that this printer share is related to. operationId: print.shares_SetRefPrinter parameters: - name: printerShare-id @@ -5729,6 +5797,7 @@ paths: tags: - print.printerShare summary: Delete ref of navigation property printer for print + description: The printer that this printer share is related to. operationId: print.shares_DeleteRefPrinter parameters: - name: printerShare-id @@ -5818,6 +5887,7 @@ paths: tags: - print.printTaskDefinition summary: Get taskDefinitions from print + description: List of abstract definition for a task that can be triggered when various events occur within Universal Print. operationId: print_ListTaskDefinitions parameters: - $ref: '#/components/parameters/top' @@ -5897,6 +5967,7 @@ paths: tags: - print.printTaskDefinition summary: Create new navigation property to taskDefinitions for print + description: List of abstract definition for a task that can be triggered when various events occur within Universal Print. operationId: print_CreateTaskDefinitions requestBody: description: New navigation property @@ -5920,6 +5991,7 @@ paths: tags: - print.printTaskDefinition summary: Get taskDefinitions from print + description: List of abstract definition for a task that can be triggered when various events occur within Universal Print. operationId: print_GetTaskDefinitions parameters: - name: printTaskDefinition-id @@ -5976,6 +6048,7 @@ paths: tags: - print.printTaskDefinition summary: Update the navigation property taskDefinitions in print + description: List of abstract definition for a task that can be triggered when various events occur within Universal Print. operationId: print_UpdateTaskDefinitions parameters: - name: printTaskDefinition-id @@ -6002,6 +6075,7 @@ paths: tags: - print.printTaskDefinition summary: Delete navigation property taskDefinitions for print + description: List of abstract definition for a task that can be triggered when various events occur within Universal Print. operationId: print_DeleteTaskDefinitions parameters: - name: printTaskDefinition-id @@ -6027,6 +6101,7 @@ paths: tags: - print.printTaskDefinition summary: Get tasks from print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_ListTasks parameters: - name: printTaskDefinition-id @@ -6115,6 +6190,7 @@ paths: tags: - print.printTaskDefinition summary: Create new navigation property to tasks for print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_CreateTasks parameters: - name: printTaskDefinition-id @@ -6146,6 +6222,7 @@ paths: tags: - print.printTaskDefinition summary: Get tasks from print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_GetTasks parameters: - name: printTaskDefinition-id @@ -6217,6 +6294,7 @@ paths: tags: - print.printTaskDefinition summary: Update the navigation property tasks in print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_UpdateTasks parameters: - name: printTaskDefinition-id @@ -6250,6 +6328,7 @@ paths: tags: - print.printTaskDefinition summary: Delete navigation property tasks for print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_DeleteTasks parameters: - name: printTaskDefinition-id @@ -6282,6 +6361,7 @@ paths: tags: - print.printTaskDefinition summary: Get definition from print + description: The printTaskDefinition that was used to create this task. Read-only. operationId: print.taskDefinitions.tasks_GetDefinition parameters: - name: printTaskDefinition-id @@ -6347,6 +6427,7 @@ paths: tags: - print.printTaskDefinition summary: Get ref of definition from print + description: The printTaskDefinition that was used to create this task. Read-only. operationId: print.taskDefinitions.tasks_GetRefDefinition parameters: - name: printTaskDefinition-id @@ -6383,6 +6464,7 @@ paths: tags: - print.printTaskDefinition summary: Update the ref of navigation property definition in print + description: The printTaskDefinition that was used to create this task. Read-only. operationId: print.taskDefinitions.tasks_SetRefDefinition parameters: - name: printTaskDefinition-id @@ -6418,6 +6500,7 @@ paths: tags: - print.printTaskDefinition summary: Delete ref of navigation property definition for print + description: The printTaskDefinition that was used to create this task. Read-only. operationId: print.taskDefinitions.tasks_DeleteRefDefinition parameters: - name: printTaskDefinition-id @@ -6450,6 +6533,7 @@ paths: tags: - print.printTaskDefinition summary: Get trigger from print + description: The printTaskTrigger that triggered this task's execution. Read-only. operationId: print.taskDefinitions.tasks_GetTrigger parameters: - name: printTaskDefinition-id @@ -6514,6 +6598,7 @@ paths: tags: - print.printTaskDefinition summary: Get ref of trigger from print + description: The printTaskTrigger that triggered this task's execution. Read-only. operationId: print.taskDefinitions.tasks_GetRefTrigger parameters: - name: printTaskDefinition-id @@ -6550,6 +6635,7 @@ paths: tags: - print.printTaskDefinition summary: Update the ref of navigation property trigger in print + description: The printTaskTrigger that triggered this task's execution. Read-only. operationId: print.taskDefinitions.tasks_SetRefTrigger parameters: - name: printTaskDefinition-id @@ -6585,6 +6671,7 @@ paths: tags: - print.printTaskDefinition summary: Delete ref of navigation property trigger for print + description: The printTaskTrigger that triggered this task's execution. Read-only. operationId: print.taskDefinitions.tasks_DeleteRefTrigger parameters: - name: printTaskDefinition-id @@ -6846,13 +6933,13 @@ components: items: type: string nullable: true - description: 'The media sizes supported by the printer. Supports standard size names for ISO and ANSI media sizes, along with any custom sizes supported by the associated printer.' + description: The media sizes supported by the printer. Supports standard size names for ISO and ANSI media sizes. Valid values are in the following table. mediaTypes: type: array items: type: string nullable: true - description: The media types supported by the printer. Valid values are described in the following table. + description: The media types supported by the printer. multipageLayouts: type: array items: @@ -7284,6 +7371,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -7387,7 +7475,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -7400,7 +7488,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -7412,12 +7500,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -7426,7 +7514,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -7434,7 +7522,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -7450,7 +7538,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -7466,7 +7554,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -7490,7 +7578,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -7509,11 +7597,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -7521,7 +7609,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -7568,7 +7656,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -7577,7 +7665,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -7615,15 +7703,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -7631,7 +7719,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -7760,6 +7848,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -8597,7 +8689,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -9211,7 +9303,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -9372,7 +9464,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -9639,7 +9731,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -10451,6 +10543,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -10732,16 +10828,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -11410,11 +11506,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -11429,6 +11526,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -11438,7 +11536,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -11475,7 +11573,6 @@ components: 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: @@ -11883,11 +11980,11 @@ components: nullable: true mediaSize: type: string - description: 'The default media size to use. Supports standard size names for ISO and ANSI media sizes, along with any custom sizes supported by the associated printer.' + description: The default media size to use. Supports standard size names for ISO and ANSI media sizes. Valid values are listed in the printerCapabilities topic. nullable: true mediaType: type: string - description: The default media (such as paper) type to print the document on. Valid values are described in the following table. + description: The default media (such as paper) type to print the document on. nullable: true multipageLayout: $ref: '#/components/schemas/microsoft.graph.printMultipageLayout' @@ -14433,53 +14530,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -14506,6 +14608,35 @@ components: additionalProperties: type: object description: Enrollment Configuration Assignment + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -14902,6 +15033,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -15095,6 +15230,19 @@ components: additionalProperties: type: object description: Logged On User + microsoft.graph.assignmentFilterEvaluationStatusDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: assignmentFilterEvaluationStatusDetails + type: object + properties: + payloadId: + type: string + description: PayloadId on which filter has been applied. + nullable: true + additionalProperties: + type: object + description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceCompliancePolicyState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -15136,19 +15284,6 @@ components: additionalProperties: type: object description: Device Compliance Policy State for a given device. - microsoft.graph.assignmentFilterEvaluationStatusDetails: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: assignmentFilterEvaluationStatusDetails - type: object - properties: - payloadId: - type: string - description: PayloadId on which filter has been applied. - nullable: true - additionalProperties: - type: object - description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceConfigurationState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -15539,10 +15674,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -16606,10 +16741,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -16680,18 +16827,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -16704,6 +16850,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -16759,7 +16906,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -17005,6 +17151,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -17377,11 +17525,11 @@ components: $ref: '#/components/schemas/microsoft.graph.printMargin' mediaSize: type: string - description: 'The media sizeto use when printing. Supports standard size names for ISO and ANSI media sizes, along with any custom sizes supported by the associated printer.' + description: The media sizeto use when printing. Supports standard size names for ISO and ANSI media sizes. Valid values are listed in the printerCapabilities topic. nullable: true mediaType: type: string - description: The default media (such as paper) type to print the document on. Valid values are described in the following table. + description: The default media (such as paper) type to print the document on. nullable: true multipageLayout: $ref: '#/components/schemas/microsoft.graph.printMultipageLayout' @@ -19170,7 +19318,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -19194,7 +19342,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -20025,7 +20173,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -20044,14 +20192,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -20060,18 +20208,18 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object microsoft.graph.deviceAndAppManagementAssignmentSource: @@ -20093,16 +20241,6 @@ components: additionalProperties: type: object description: Base type for assignment targets. - microsoft.graph.configurationManagerClientState: - title: configurationManagerClientState - enum: - - unknown - - installed - - healthy - - installFailed - - updateFailed - - communicationError - type: string microsoft.graph.actionState: title: actionState enum: @@ -20114,6 +20252,35 @@ components: - failed - notSupported type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object + microsoft.graph.configurationManagerClientState: + title: configurationManagerClientState + enum: + - unknown + - installed + - healthy + - installFailed + - updateFailed + - communicationError + type: string microsoft.graph.deviceGuardLocalSystemAuthorityCredentialGuardState: title: deviceGuardLocalSystemAuthorityCredentialGuardState enum: @@ -21125,18 +21292,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -21226,6 +21397,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -21258,6 +21434,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -22097,11 +22275,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -22355,6 +22533,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' @@ -22541,17 +22720,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -22559,9 +22743,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -23007,16 +23193,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: @@ -23311,7 +23500,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string diff --git a/openApiDocs/beta/Devices.CorporateManagement.yml b/openApiDocs/beta/Devices.CorporateManagement.yml index 9bd9b47b8f4..3c681f1534d 100644 --- a/openApiDocs/beta/Devices.CorporateManagement.yml +++ b/openApiDocs/beta/Devices.CorporateManagement.yml @@ -176,6 +176,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get androidManagedAppProtections from deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_ListAndroidManagedAppProtections parameters: - $ref: '#/components/parameters/top' @@ -505,6 +506,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Create new navigation property to androidManagedAppProtections for deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_CreateAndroidManagedAppProtections requestBody: description: New navigation property @@ -528,6 +530,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get androidManagedAppProtections from deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_GetAndroidManagedAppProtections parameters: - name: androidManagedAppProtection-id @@ -678,6 +681,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Update the navigation property androidManagedAppProtections in deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_UpdateAndroidManagedAppProtections parameters: - name: androidManagedAppProtection-id @@ -704,6 +708,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Delete navigation property androidManagedAppProtections for deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_DeleteAndroidManagedAppProtections parameters: - name: androidManagedAppProtection-id @@ -729,6 +734,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_ListApps parameters: - name: androidManagedAppProtection-id @@ -813,6 +819,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Create new navigation property to apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_CreateApps parameters: - name: androidManagedAppProtection-id @@ -844,6 +851,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_GetApps parameters: - name: androidManagedAppProtection-id @@ -900,6 +908,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Update the navigation property apps in deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_UpdateApps parameters: - name: androidManagedAppProtection-id @@ -933,6 +942,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Delete navigation property apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_DeleteApps parameters: - name: androidManagedAppProtection-id @@ -965,6 +975,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.androidManagedAppProtections_GetDeploymentSummary parameters: - name: androidManagedAppProtection-id @@ -1017,6 +1028,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Update the navigation property deploymentSummary in deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.androidManagedAppProtections_UpdateDeploymentSummary parameters: - name: androidManagedAppProtection-id @@ -1043,6 +1055,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Delete navigation property deploymentSummary for deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.androidManagedAppProtections_DeleteDeploymentSummary parameters: - name: androidManagedAppProtection-id @@ -1101,6 +1114,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get defaultManagedAppProtections from deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_ListDefaultManagedAppProtections parameters: - $ref: '#/components/parameters/top' @@ -1458,6 +1472,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Create new navigation property to defaultManagedAppProtections for deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_CreateDefaultManagedAppProtections requestBody: description: New navigation property @@ -1481,6 +1496,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get defaultManagedAppProtections from deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_GetDefaultManagedAppProtections parameters: - name: defaultManagedAppProtection-id @@ -1635,6 +1651,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Update the navigation property defaultManagedAppProtections in deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_UpdateDefaultManagedAppProtections parameters: - name: defaultManagedAppProtection-id @@ -1661,6 +1678,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Delete navigation property defaultManagedAppProtections for deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_DeleteDefaultManagedAppProtections parameters: - name: defaultManagedAppProtection-id @@ -1686,6 +1704,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_ListApps parameters: - name: defaultManagedAppProtection-id @@ -1770,6 +1789,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Create new navigation property to apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_CreateApps parameters: - name: defaultManagedAppProtection-id @@ -1801,6 +1821,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_GetApps parameters: - name: defaultManagedAppProtection-id @@ -1857,6 +1878,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Update the navigation property apps in deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_UpdateApps parameters: - name: defaultManagedAppProtection-id @@ -1890,6 +1912,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Delete navigation property apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_DeleteApps parameters: - name: defaultManagedAppProtection-id @@ -1922,6 +1945,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.defaultManagedAppProtections_GetDeploymentSummary parameters: - name: defaultManagedAppProtection-id @@ -1974,6 +1998,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Update the navigation property deploymentSummary in deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.defaultManagedAppProtections_UpdateDeploymentSummary parameters: - name: defaultManagedAppProtection-id @@ -2000,6 +2025,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Delete navigation property deploymentSummary for deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.defaultManagedAppProtections_DeleteDeploymentSummary parameters: - name: defaultManagedAppProtection-id @@ -2025,6 +2051,7 @@ paths: tags: - deviceAppManagement.deviceAppManagementTask summary: Get deviceAppManagementTasks from deviceAppManagement + description: Device app management tasks. operationId: deviceAppManagement_ListDeviceAppManagementTasks parameters: - $ref: '#/components/parameters/top' @@ -2126,6 +2153,7 @@ paths: tags: - deviceAppManagement.deviceAppManagementTask summary: Create new navigation property to deviceAppManagementTasks for deviceAppManagement + description: Device app management tasks. operationId: deviceAppManagement_CreateDeviceAppManagementTasks requestBody: description: New navigation property @@ -2149,6 +2177,7 @@ paths: tags: - deviceAppManagement.deviceAppManagementTask summary: Get deviceAppManagementTasks from deviceAppManagement + description: Device app management tasks. operationId: deviceAppManagement_GetDeviceAppManagementTasks parameters: - name: deviceAppManagementTask-id @@ -2206,6 +2235,7 @@ paths: tags: - deviceAppManagement.deviceAppManagementTask summary: Update the navigation property deviceAppManagementTasks in deviceAppManagement + description: Device app management tasks. operationId: deviceAppManagement_UpdateDeviceAppManagementTasks parameters: - name: deviceAppManagementTask-id @@ -2232,6 +2262,7 @@ paths: tags: - deviceAppManagement.deviceAppManagementTask summary: Delete navigation property deviceAppManagementTasks for deviceAppManagement + description: Device app management tasks. operationId: deviceAppManagement_DeleteDeviceAppManagementTasks parameters: - name: deviceAppManagementTask-id @@ -2257,6 +2288,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action updateStatus + description: Set the task's status and attach a note. operationId: deviceAppManagement.deviceAppManagementTasks_updateStatus parameters: - name: deviceAppManagementTask-id @@ -2292,6 +2324,7 @@ paths: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Get enterpriseCodeSigningCertificates from deviceAppManagement + description: The Windows Enterprise Code Signing Certificate. operationId: deviceAppManagement_ListEnterpriseCodeSigningCertificates parameters: - $ref: '#/components/parameters/top' @@ -2387,6 +2420,7 @@ paths: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Create new navigation property to enterpriseCodeSigningCertificates for deviceAppManagement + description: The Windows Enterprise Code Signing Certificate. operationId: deviceAppManagement_CreateEnterpriseCodeSigningCertificates requestBody: description: New navigation property @@ -2410,6 +2444,7 @@ paths: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Get enterpriseCodeSigningCertificates from deviceAppManagement + description: The Windows Enterprise Code Signing Certificate. operationId: deviceAppManagement_GetEnterpriseCodeSigningCertificates parameters: - name: enterpriseCodeSigningCertificate-id @@ -2465,6 +2500,7 @@ paths: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Update the navigation property enterpriseCodeSigningCertificates in deviceAppManagement + description: The Windows Enterprise Code Signing Certificate. operationId: deviceAppManagement_UpdateEnterpriseCodeSigningCertificates parameters: - name: enterpriseCodeSigningCertificate-id @@ -2491,6 +2527,7 @@ paths: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Delete navigation property enterpriseCodeSigningCertificates for deviceAppManagement + description: The Windows Enterprise Code Signing Certificate. operationId: deviceAppManagement_DeleteEnterpriseCodeSigningCertificates parameters: - name: enterpriseCodeSigningCertificate-id @@ -2516,6 +2553,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get iosLobAppProvisioningConfigurations from deviceAppManagement + description: The IOS Lob App Provisioning Configurations. operationId: deviceAppManagement_ListIosLobAppProvisioningConfigurations parameters: - $ref: '#/components/parameters/top' @@ -2622,6 +2660,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Create new navigation property to iosLobAppProvisioningConfigurations for deviceAppManagement + description: The IOS Lob App Provisioning Configurations. operationId: deviceAppManagement_CreateIosLobAppProvisioningConfigurations requestBody: description: New navigation property @@ -2645,6 +2684,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get iosLobAppProvisioningConfigurations from deviceAppManagement + description: The IOS Lob App Provisioning Configurations. operationId: deviceAppManagement_GetIosLobAppProvisioningConfigurations parameters: - name: iosLobAppProvisioningConfiguration-id @@ -2726,6 +2766,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Update the navigation property iosLobAppProvisioningConfigurations in deviceAppManagement + description: The IOS Lob App Provisioning Configurations. operationId: deviceAppManagement_UpdateIosLobAppProvisioningConfigurations parameters: - name: iosLobAppProvisioningConfiguration-id @@ -2752,6 +2793,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Delete navigation property iosLobAppProvisioningConfigurations for deviceAppManagement + description: The IOS Lob App Provisioning Configurations. operationId: deviceAppManagement_DeleteIosLobAppProvisioningConfigurations parameters: - name: iosLobAppProvisioningConfiguration-id @@ -2777,6 +2819,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get assignments from deviceAppManagement + description: The associated group assignments for IosLobAppProvisioningConfiguration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_ListAssignments parameters: - name: iosLobAppProvisioningConfiguration-id @@ -2858,6 +2901,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Create new navigation property to assignments for deviceAppManagement + description: The associated group assignments for IosLobAppProvisioningConfiguration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_CreateAssignments parameters: - name: iosLobAppProvisioningConfiguration-id @@ -2889,6 +2933,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get assignments from deviceAppManagement + description: The associated group assignments for IosLobAppProvisioningConfiguration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_GetAssignments parameters: - name: iosLobAppProvisioningConfiguration-id @@ -2944,6 +2989,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Update the navigation property assignments in deviceAppManagement + description: The associated group assignments for IosLobAppProvisioningConfiguration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_UpdateAssignments parameters: - name: iosLobAppProvisioningConfiguration-id @@ -2977,6 +3023,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Delete navigation property assignments for deviceAppManagement + description: The associated group assignments for IosLobAppProvisioningConfiguration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_DeleteAssignments parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3009,6 +3056,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get deviceStatuses from deviceAppManagement + description: The list of device installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_ListDeviceStatuses parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3111,6 +3159,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Create new navigation property to deviceStatuses for deviceAppManagement + description: The list of device installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_CreateDeviceStatuses parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3142,6 +3191,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get deviceStatuses from deviceAppManagement + description: The list of device installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_GetDeviceStatuses parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3204,6 +3254,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Update the navigation property deviceStatuses in deviceAppManagement + description: The list of device installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_UpdateDeviceStatuses parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3237,6 +3288,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Delete navigation property deviceStatuses for deviceAppManagement + description: The list of device installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_DeleteDeviceStatuses parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3269,6 +3321,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get groupAssignments from deviceAppManagement + description: The associated group assignments. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_ListGroupAssignments parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3350,6 +3403,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Create new navigation property to groupAssignments for deviceAppManagement + description: The associated group assignments. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_CreateGroupAssignments parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3381,6 +3435,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get groupAssignments from deviceAppManagement + description: The associated group assignments. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_GetGroupAssignments parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3436,6 +3491,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Update the navigation property groupAssignments in deviceAppManagement + description: The associated group assignments. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_UpdateGroupAssignments parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3469,6 +3525,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Delete navigation property groupAssignments for deviceAppManagement + description: The associated group assignments. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_DeleteGroupAssignments parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3539,6 +3596,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get userStatuses from deviceAppManagement + description: The list of user installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_ListUserStatuses parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3632,6 +3690,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Create new navigation property to userStatuses for deviceAppManagement + description: The list of user installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_CreateUserStatuses parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3663,6 +3722,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get userStatuses from deviceAppManagement + description: The list of user installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_GetUserStatuses parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3722,6 +3782,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Update the navigation property userStatuses in deviceAppManagement + description: The list of user installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_UpdateUserStatuses parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3755,6 +3816,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Delete navigation property userStatuses for deviceAppManagement + description: The list of user installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_DeleteUserStatuses parameters: - name: iosLobAppProvisioningConfiguration-id @@ -3820,6 +3882,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get iosManagedAppProtections from deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_ListIosManagedAppProtections parameters: - $ref: '#/components/parameters/top' @@ -4095,6 +4158,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Create new navigation property to iosManagedAppProtections for deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_CreateIosManagedAppProtections requestBody: description: New navigation property @@ -4118,6 +4182,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get iosManagedAppProtections from deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_GetIosManagedAppProtections parameters: - name: iosManagedAppProtection-id @@ -4250,6 +4315,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Update the navigation property iosManagedAppProtections in deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_UpdateIosManagedAppProtections parameters: - name: iosManagedAppProtection-id @@ -4276,6 +4342,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Delete navigation property iosManagedAppProtections for deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_DeleteIosManagedAppProtections parameters: - name: iosManagedAppProtection-id @@ -4301,6 +4368,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_ListApps parameters: - name: iosManagedAppProtection-id @@ -4385,6 +4453,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Create new navigation property to apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_CreateApps parameters: - name: iosManagedAppProtection-id @@ -4416,6 +4485,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_GetApps parameters: - name: iosManagedAppProtection-id @@ -4472,6 +4542,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Update the navigation property apps in deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_UpdateApps parameters: - name: iosManagedAppProtection-id @@ -4505,6 +4576,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Delete navigation property apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_DeleteApps parameters: - name: iosManagedAppProtection-id @@ -4537,6 +4609,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.iosManagedAppProtections_GetDeploymentSummary parameters: - name: iosManagedAppProtection-id @@ -4589,6 +4662,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Update the navigation property deploymentSummary in deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.iosManagedAppProtections_UpdateDeploymentSummary parameters: - name: iosManagedAppProtection-id @@ -4615,6 +4689,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Delete navigation property deploymentSummary for deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.iosManagedAppProtections_DeleteDeploymentSummary parameters: - name: iosManagedAppProtection-id @@ -4673,6 +4748,7 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Get managedAppPolicies from deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_ListManagedAppPolicies parameters: - $ref: '#/components/parameters/top' @@ -4762,6 +4838,7 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Create new navigation property to managedAppPolicies for deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_CreateManagedAppPolicies requestBody: description: New navigation property @@ -4785,6 +4862,7 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Get managedAppPolicies from deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_GetManagedAppPolicies parameters: - name: managedAppPolicy-id @@ -4838,6 +4916,7 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Update the navigation property managedAppPolicies in deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_UpdateManagedAppPolicies parameters: - name: managedAppPolicy-id @@ -4864,6 +4943,7 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Delete navigation property managedAppPolicies for deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_DeleteManagedAppPolicies parameters: - name: managedAppPolicy-id @@ -5025,6 +5105,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get managedAppRegistrations from deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_ListManagedAppRegistrations parameters: - $ref: '#/components/parameters/top' @@ -5150,6 +5231,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to managedAppRegistrations for deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_CreateManagedAppRegistrations requestBody: description: New navigation property @@ -5173,6 +5255,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get managedAppRegistrations from deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_GetManagedAppRegistrations parameters: - name: managedAppRegistration-id @@ -5255,6 +5338,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property managedAppRegistrations in deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_UpdateManagedAppRegistrations parameters: - name: managedAppRegistration-id @@ -5281,6 +5365,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property managedAppRegistrations for deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_DeleteManagedAppRegistrations parameters: - name: managedAppRegistration-id @@ -5306,6 +5391,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get appliedPolicies from deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_ListAppliedPolicies parameters: - name: managedAppRegistration-id @@ -5402,6 +5488,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to appliedPolicies for deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_CreateAppliedPolicies parameters: - name: managedAppRegistration-id @@ -5433,6 +5520,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get appliedPolicies from deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_GetAppliedPolicies parameters: - name: managedAppRegistration-id @@ -5493,6 +5581,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property appliedPolicies in deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_UpdateAppliedPolicies parameters: - name: managedAppRegistration-id @@ -5526,6 +5615,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property appliedPolicies for deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_DeleteAppliedPolicies parameters: - name: managedAppRegistration-id @@ -5722,6 +5812,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get intendedPolicies from deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_ListIntendedPolicies parameters: - name: managedAppRegistration-id @@ -5818,6 +5909,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to intendedPolicies for deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_CreateIntendedPolicies parameters: - name: managedAppRegistration-id @@ -5849,6 +5941,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get intendedPolicies from deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_GetIntendedPolicies parameters: - name: managedAppRegistration-id @@ -5909,6 +6002,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property intendedPolicies in deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_UpdateIntendedPolicies parameters: - name: managedAppRegistration-id @@ -5942,6 +6036,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property intendedPolicies for deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_DeleteIntendedPolicies parameters: - name: managedAppRegistration-id @@ -6138,6 +6233,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get operations from deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_ListOperations parameters: - name: managedAppRegistration-id @@ -6228,6 +6324,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to operations for deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_CreateOperations parameters: - name: managedAppRegistration-id @@ -6259,6 +6356,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get operations from deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_GetOperations parameters: - name: managedAppRegistration-id @@ -6317,6 +6415,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property operations in deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_UpdateOperations parameters: - name: managedAppRegistration-id @@ -6350,6 +6449,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property operations for deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_DeleteOperations parameters: - name: managedAppRegistration-id @@ -6401,6 +6501,7 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Get managedAppStatuses from deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_ListManagedAppStatuses parameters: - $ref: '#/components/parameters/top' @@ -6478,6 +6579,7 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Create new navigation property to managedAppStatuses for deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_CreateManagedAppStatuses requestBody: description: New navigation property @@ -6501,6 +6603,7 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Get managedAppStatuses from deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_GetManagedAppStatuses parameters: - name: managedAppStatus-id @@ -6550,6 +6653,7 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Update the navigation property managedAppStatuses in deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_UpdateManagedAppStatuses parameters: - name: managedAppStatus-id @@ -6576,6 +6680,7 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Delete navigation property managedAppStatuses for deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_DeleteManagedAppStatuses parameters: - name: managedAppStatus-id @@ -6601,6 +6706,7 @@ paths: tags: - deviceAppManagement.managedEBookCategory summary: Get managedEBookCategories from deviceAppManagement + description: The mobile eBook categories. operationId: deviceAppManagement_ListManagedEBookCategories parameters: - $ref: '#/components/parameters/top' @@ -6678,6 +6784,7 @@ paths: tags: - deviceAppManagement.managedEBookCategory summary: Create new navigation property to managedEBookCategories for deviceAppManagement + description: The mobile eBook categories. operationId: deviceAppManagement_CreateManagedEBookCategories requestBody: description: New navigation property @@ -6701,6 +6808,7 @@ paths: tags: - deviceAppManagement.managedEBookCategory summary: Get managedEBookCategories from deviceAppManagement + description: The mobile eBook categories. operationId: deviceAppManagement_GetManagedEBookCategories parameters: - name: managedEBookCategory-id @@ -6750,6 +6858,7 @@ paths: tags: - deviceAppManagement.managedEBookCategory summary: Update the navigation property managedEBookCategories in deviceAppManagement + description: The mobile eBook categories. operationId: deviceAppManagement_UpdateManagedEBookCategories parameters: - name: managedEBookCategory-id @@ -6776,6 +6885,7 @@ paths: tags: - deviceAppManagement.managedEBookCategory summary: Delete navigation property managedEBookCategories for deviceAppManagement + description: The mobile eBook categories. operationId: deviceAppManagement_DeleteManagedEBookCategories parameters: - name: managedEBookCategory-id @@ -6801,6 +6911,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get managedEBooks from deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_ListManagedEBooks parameters: - $ref: '#/components/parameters/top' @@ -6909,6 +7020,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Create new navigation property to managedEBooks for deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_CreateManagedEBooks requestBody: description: New navigation property @@ -6932,6 +7044,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get managedEBooks from deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_GetManagedEBooks parameters: - name: managedEBook-id @@ -7019,6 +7132,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property managedEBooks in deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_UpdateManagedEBooks parameters: - name: managedEBook-id @@ -7045,6 +7159,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property managedEBooks for deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_DeleteManagedEBooks parameters: - name: managedEBook-id @@ -7070,6 +7185,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get assignments from deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_ListAssignments parameters: - name: managedEBook-id @@ -7154,6 +7270,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Create new navigation property to assignments for deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_CreateAssignments parameters: - name: managedEBook-id @@ -7185,6 +7302,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get assignments from deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_GetAssignments parameters: - name: managedEBook-id @@ -7241,6 +7359,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property assignments in deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_UpdateAssignments parameters: - name: managedEBook-id @@ -7274,6 +7393,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property assignments for deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_DeleteAssignments parameters: - name: managedEBook-id @@ -7306,6 +7426,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get categories from deviceAppManagement + description: The list of categories for this eBook. operationId: deviceAppManagement.managedEBooks_ListCategories parameters: - name: managedEBook-id @@ -7391,6 +7512,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get ref of categories from deviceAppManagement + description: The list of categories for this eBook. operationId: deviceAppManagement.managedEBooks_ListRefCategories parameters: - name: managedEBook-id @@ -7449,6 +7571,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Create new navigation property ref to categories for deviceAppManagement + description: The list of categories for this eBook. operationId: deviceAppManagement.managedEBooks_CreateRefCategories parameters: - name: managedEBook-id @@ -7484,6 +7607,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_ListDeviceStates parameters: - name: managedEBook-id @@ -7586,6 +7710,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Create new navigation property to deviceStates for deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_CreateDeviceStates parameters: - name: managedEBook-id @@ -7617,6 +7742,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_GetDeviceStates parameters: - name: managedEBook-id @@ -7679,6 +7805,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property deviceStates in deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_UpdateDeviceStates parameters: - name: managedEBook-id @@ -7712,6 +7839,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property deviceStates for deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_DeleteDeviceStates parameters: - name: managedEBook-id @@ -7744,6 +7872,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get installSummary from deviceAppManagement + description: Mobile App Install Summary. operationId: deviceAppManagement.managedEBooks_GetInstallSummary parameters: - name: managedEBook-id @@ -7797,6 +7926,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property installSummary in deviceAppManagement + description: Mobile App Install Summary. operationId: deviceAppManagement.managedEBooks_UpdateInstallSummary parameters: - name: managedEBook-id @@ -7823,6 +7953,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property installSummary for deviceAppManagement + description: Mobile App Install Summary. operationId: deviceAppManagement.managedEBooks_DeleteInstallSummary parameters: - name: managedEBook-id @@ -7882,6 +8013,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get userStateSummary from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_ListUserStateSummary parameters: - name: managedEBook-id @@ -7974,6 +8106,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Create new navigation property to userStateSummary for deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_CreateUserStateSummary parameters: - name: managedEBook-id @@ -8005,6 +8138,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get userStateSummary from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_GetUserStateSummary parameters: - name: managedEBook-id @@ -8071,6 +8205,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property userStateSummary in deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_UpdateUserStateSummary parameters: - name: managedEBook-id @@ -8104,6 +8239,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property userStateSummary for deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_DeleteUserStateSummary parameters: - name: managedEBook-id @@ -8136,6 +8272,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_ListDeviceStates parameters: - name: managedEBook-id @@ -8245,6 +8382,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Create new navigation property to deviceStates for deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_CreateDeviceStates parameters: - name: managedEBook-id @@ -8283,6 +8421,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_GetDeviceStates parameters: - name: managedEBook-id @@ -8352,6 +8491,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property deviceStates in deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_UpdateDeviceStates parameters: - name: managedEBook-id @@ -8392,6 +8532,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property deviceStates for deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_DeleteDeviceStates parameters: - name: managedEBook-id @@ -8431,6 +8572,7 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get mdmWindowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_ListMdmWindowsInformationProtectionPolicies parameters: - $ref: '#/components/parameters/top' @@ -8592,6 +8734,7 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Create new navigation property to mdmWindowsInformationProtectionPolicies for deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_CreateMdmWindowsInformationProtectionPolicies requestBody: description: New navigation property @@ -8615,6 +8758,7 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get mdmWindowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_GetMdmWindowsInformationProtectionPolicies parameters: - name: mdmWindowsInformationProtectionPolicy-id @@ -8709,6 +8853,7 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Update the navigation property mdmWindowsInformationProtectionPolicies in deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_UpdateMdmWindowsInformationProtectionPolicies parameters: - name: mdmWindowsInformationProtectionPolicy-id @@ -8735,6 +8880,7 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Delete navigation property mdmWindowsInformationProtectionPolicies for deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_DeleteMdmWindowsInformationProtectionPolicies parameters: - name: mdmWindowsInformationProtectionPolicy-id @@ -8793,6 +8939,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action syncMicrosoftStoreForBusinessApps + description: Syncs Intune account with Microsoft Store For Business operationId: deviceAppManagement_syncMicrosoftStoreForBusinessApps responses: '204': @@ -8805,6 +8952,7 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Get mobileAppCategories from deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_ListMobileAppCategories parameters: - $ref: '#/components/parameters/top' @@ -8882,6 +9030,7 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Create new navigation property to mobileAppCategories for deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_CreateMobileAppCategories requestBody: description: New navigation property @@ -8905,6 +9054,7 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Get mobileAppCategories from deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_GetMobileAppCategories parameters: - name: mobileAppCategory-id @@ -8954,6 +9104,7 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Update the navigation property mobileAppCategories in deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_UpdateMobileAppCategories parameters: - name: mobileAppCategory-id @@ -8980,6 +9131,7 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Delete navigation property mobileAppCategories for deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_DeleteMobileAppCategories parameters: - name: mobileAppCategory-id @@ -9005,6 +9157,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get mobileAppConfigurations from deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_ListMobileAppConfigurations parameters: - $ref: '#/components/parameters/top' @@ -9107,6 +9260,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to mobileAppConfigurations for deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_CreateMobileAppConfigurations requestBody: description: New navigation property @@ -9130,6 +9284,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get mobileAppConfigurations from deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_GetMobileAppConfigurations parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9215,6 +9370,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property mobileAppConfigurations in deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_UpdateMobileAppConfigurations parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9241,6 +9397,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property mobileAppConfigurations for deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_DeleteMobileAppConfigurations parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9266,6 +9423,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get assignments from deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_ListAssignments parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9347,6 +9505,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to assignments for deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_CreateAssignments parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9378,6 +9537,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get assignments from deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_GetAssignments parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9433,6 +9593,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property assignments in deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_UpdateAssignments parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9466,6 +9627,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property assignments for deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_DeleteAssignments parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9498,6 +9660,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_ListDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9600,6 +9763,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to deviceStatuses for deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_CreateDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9631,6 +9795,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_GetDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9693,6 +9858,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property deviceStatuses in deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_UpdateDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9726,6 +9892,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property deviceStatuses for deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_DeleteDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9758,6 +9925,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatusSummary from deviceAppManagement + description: App configuration device status summary. operationId: deviceAppManagement.mobileAppConfigurations_GetDeviceStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9814,6 +9982,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property deviceStatusSummary in deviceAppManagement + description: App configuration device status summary. operationId: deviceAppManagement.mobileAppConfigurations_UpdateDeviceStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9840,6 +10009,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property deviceStatusSummary for deviceAppManagement + description: App configuration device status summary. operationId: deviceAppManagement.mobileAppConfigurations_DeleteDeviceStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9899,6 +10069,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_ListUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -9992,6 +10163,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to userStatuses for deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_CreateUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -10023,6 +10195,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_GetUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -10082,6 +10255,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property userStatuses in deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_UpdateUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -10115,6 +10289,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property userStatuses for deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_DeleteUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -10147,6 +10322,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatusSummary from deviceAppManagement + description: App configuration user status summary. operationId: deviceAppManagement.mobileAppConfigurations_GetUserStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -10202,6 +10378,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property userStatusSummary in deviceAppManagement + description: App configuration user status summary. operationId: deviceAppManagement.mobileAppConfigurations_UpdateUserStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -10228,6 +10405,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property userStatusSummary for deviceAppManagement + description: App configuration user status summary. operationId: deviceAppManagement.mobileAppConfigurations_DeleteUserStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -10253,6 +10431,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get mobileApps from deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_ListMobileApps parameters: - $ref: '#/components/parameters/top' @@ -10393,6 +10572,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Create new navigation property to mobileApps for deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_CreateMobileApps requestBody: description: New navigation property @@ -10416,6 +10596,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get mobileApps from deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_GetMobileApps parameters: - name: mobileApp-id @@ -10519,6 +10700,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the navigation property mobileApps in deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_UpdateMobileApps parameters: - name: mobileApp-id @@ -10545,6 +10727,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete navigation property mobileApps for deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_DeleteMobileApps parameters: - name: mobileApp-id @@ -10570,6 +10753,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_ListAssignments parameters: - name: mobileApp-id @@ -10663,6 +10847,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_CreateAssignments parameters: - name: mobileApp-id @@ -10694,6 +10879,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_GetAssignments parameters: - name: mobileApp-id @@ -10753,6 +10939,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_UpdateAssignments parameters: - name: mobileApp-id @@ -10786,6 +10973,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_DeleteAssignments parameters: - name: mobileApp-id @@ -10818,6 +11006,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement + description: The list of categories for this app. operationId: deviceAppManagement.mobileApps_ListCategories parameters: - name: mobileApp-id @@ -10903,6 +11092,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get ref of categories from deviceAppManagement + description: The list of categories for this app. operationId: deviceAppManagement.mobileApps_ListRefCategories parameters: - name: mobileApp-id @@ -10961,6 +11151,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Create new navigation property ref to categories for deviceAppManagement + description: The list of categories for this app. operationId: deviceAppManagement.mobileApps_CreateRefCategories parameters: - name: mobileApp-id @@ -10996,6 +11187,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get deviceStatuses from deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_ListDeviceStatuses parameters: - name: mobileApp-id @@ -11112,6 +11304,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Create new navigation property to deviceStatuses for deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_CreateDeviceStatuses parameters: - name: mobileApp-id @@ -11143,6 +11336,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get deviceStatuses from deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_GetDeviceStatuses parameters: - name: mobileApp-id @@ -11217,6 +11411,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the navigation property deviceStatuses in deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_UpdateDeviceStatuses parameters: - name: mobileApp-id @@ -11250,6 +11445,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete navigation property deviceStatuses for deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_DeleteDeviceStatuses parameters: - name: mobileApp-id @@ -11282,6 +11478,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get app from deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.deviceStatuses_GetApp parameters: - name: mobileApp-id @@ -11399,6 +11596,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get ref of app from deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.deviceStatuses_GetRefApp parameters: - name: mobileApp-id @@ -11460,6 +11658,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the ref of navigation property app in deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.deviceStatuses_SetRefApp parameters: - name: mobileApp-id @@ -11495,6 +11694,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete ref of navigation property app for deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.deviceStatuses_DeleteRefApp parameters: - name: mobileApp-id @@ -11615,6 +11815,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeAllLicenses + description: Revoke all assigned iOS VPP licenses for given app. operationId: deviceAppManagement.mobileApps.deviceStatuses.app.microsoft.graph.iosVppApp_revokeAllLicenses parameters: - name: mobileApp-id @@ -11655,6 +11856,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeDeviceLicense + description: Revoke assigned iOS VPP device license for given app. operationId: deviceAppManagement.mobileApps.deviceStatuses.app.microsoft.graph.iosVppApp_revokeDeviceLicense parameters: - name: mobileApp-id @@ -11698,6 +11900,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeUserLicense + description: Revoke assigned iOS VPP user license for given app. operationId: deviceAppManagement.mobileApps.deviceStatuses.app.microsoft.graph.iosVppApp_revokeUserLicense parameters: - name: mobileApp-id @@ -11782,6 +11985,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get installSummary from deviceAppManagement + description: Mobile App Install Summary. operationId: deviceAppManagement.mobileApps_GetInstallSummary parameters: - name: mobileApp-id @@ -11839,6 +12043,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the navigation property installSummary in deviceAppManagement + description: Mobile App Install Summary. operationId: deviceAppManagement.mobileApps_UpdateInstallSummary parameters: - name: mobileApp-id @@ -11865,6 +12070,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete navigation property installSummary for deviceAppManagement + description: Mobile App Install Summary. operationId: deviceAppManagement.mobileApps_DeleteInstallSummary parameters: - name: mobileApp-id @@ -11964,6 +12170,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeAllLicenses + description: Revoke all assigned iOS VPP licenses for given app. operationId: deviceAppManagement.mobileApps.microsoft.graph.iosVppApp_revokeAllLicenses parameters: - name: mobileApp-id @@ -11997,6 +12204,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeDeviceLicense + description: Revoke assigned iOS VPP device license for given app. operationId: deviceAppManagement.mobileApps.microsoft.graph.iosVppApp_revokeDeviceLicense parameters: - name: mobileApp-id @@ -12033,6 +12241,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeUserLicense + description: Revoke assigned iOS VPP user license for given app. operationId: deviceAppManagement.mobileApps.microsoft.graph.iosVppApp_revokeUserLicense parameters: - name: mobileApp-id @@ -12103,6 +12312,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement + description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps_ListRelationships parameters: - name: mobileApp-id @@ -12196,6 +12406,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement + description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps_CreateRelationships parameters: - name: mobileApp-id @@ -12227,6 +12438,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement + description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps_GetRelationships parameters: - name: mobileApp-id @@ -12286,6 +12498,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement + description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps_UpdateRelationships parameters: - name: mobileApp-id @@ -12319,6 +12532,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement + description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps_DeleteRelationships parameters: - name: mobileApp-id @@ -12351,6 +12565,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get userStatuses from deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_ListUserStatuses parameters: - name: mobileApp-id @@ -12448,6 +12663,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Create new navigation property to userStatuses for deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_CreateUserStatuses parameters: - name: mobileApp-id @@ -12479,6 +12695,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get userStatuses from deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_GetUserStatuses parameters: - name: mobileApp-id @@ -12553,6 +12770,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the navigation property userStatuses in deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_UpdateUserStatuses parameters: - name: mobileApp-id @@ -12586,6 +12804,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete navigation property userStatuses for deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_DeleteUserStatuses parameters: - name: mobileApp-id @@ -12618,6 +12837,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get app from deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.userStatuses_GetApp parameters: - name: mobileApp-id @@ -12735,6 +12955,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get ref of app from deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.userStatuses_GetRefApp parameters: - name: mobileApp-id @@ -12796,6 +13017,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the ref of navigation property app in deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.userStatuses_SetRefApp parameters: - name: mobileApp-id @@ -12831,6 +13053,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete ref of navigation property app for deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.userStatuses_DeleteRefApp parameters: - name: mobileApp-id @@ -12951,6 +13174,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeAllLicenses + description: Revoke all assigned iOS VPP licenses for given app. operationId: deviceAppManagement.mobileApps.userStatuses.app.microsoft.graph.iosVppApp_revokeAllLicenses parameters: - name: mobileApp-id @@ -12991,6 +13215,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeDeviceLicense + description: Revoke assigned iOS VPP device license for given app. operationId: deviceAppManagement.mobileApps.userStatuses.app.microsoft.graph.iosVppApp_revokeDeviceLicense parameters: - name: mobileApp-id @@ -13034,6 +13259,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeUserLicense + description: Revoke assigned iOS VPP user license for given app. operationId: deviceAppManagement.mobileApps.userStatuses.app.microsoft.graph.iosVppApp_revokeUserLicense parameters: - name: mobileApp-id @@ -13118,6 +13344,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get deviceStatuses from deviceAppManagement + description: The install state of the app on devices. operationId: deviceAppManagement.mobileApps.userStatuses_ListDeviceStatuses parameters: - name: mobileApp-id @@ -13241,6 +13468,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Create new navigation property to deviceStatuses for deviceAppManagement + description: The install state of the app on devices. operationId: deviceAppManagement.mobileApps.userStatuses_CreateDeviceStatuses parameters: - name: mobileApp-id @@ -13279,6 +13507,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get deviceStatuses from deviceAppManagement + description: The install state of the app on devices. operationId: deviceAppManagement.mobileApps.userStatuses_GetDeviceStatuses parameters: - name: mobileApp-id @@ -13361,6 +13590,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the navigation property deviceStatuses in deviceAppManagement + description: The install state of the app on devices. operationId: deviceAppManagement.mobileApps.userStatuses_UpdateDeviceStatuses parameters: - name: mobileApp-id @@ -13401,6 +13631,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete navigation property deviceStatuses for deviceAppManagement + description: The install state of the app on devices. operationId: deviceAppManagement.mobileApps.userStatuses_DeleteDeviceStatuses parameters: - name: mobileApp-id @@ -13440,6 +13671,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get app from deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.userStatuses.deviceStatuses_GetApp parameters: - name: mobileApp-id @@ -13570,6 +13802,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get ref of app from deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.userStatuses.deviceStatuses_GetRefApp parameters: - name: mobileApp-id @@ -13644,6 +13877,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the ref of navigation property app in deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.userStatuses.deviceStatuses_SetRefApp parameters: - name: mobileApp-id @@ -13686,6 +13920,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete ref of navigation property app for deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.userStatuses.deviceStatuses_DeleteRefApp parameters: - name: mobileApp-id @@ -13827,6 +14062,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeAllLicenses + description: Revoke all assigned iOS VPP licenses for given app. operationId: deviceAppManagement.mobileApps.userStatuses.deviceStatuses.app.microsoft.graph.iosVppApp_revokeAllLicenses parameters: - name: mobileApp-id @@ -13874,6 +14110,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeDeviceLicense + description: Revoke assigned iOS VPP device license for given app. operationId: deviceAppManagement.mobileApps.userStatuses.deviceStatuses.app.microsoft.graph.iosVppApp_revokeDeviceLicense parameters: - name: mobileApp-id @@ -13924,6 +14161,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeUserLicense + description: Revoke assigned iOS VPP user license for given app. operationId: deviceAppManagement.mobileApps.userStatuses.deviceStatuses.app.microsoft.graph.iosVppApp_revokeUserLicense parameters: - name: mobileApp-id @@ -14143,6 +14381,7 @@ paths: tags: - deviceAppManagement.policySet summary: Get policySets from deviceAppManagement + description: The PolicySet of Policies and Applications operationId: deviceAppManagement_ListPolicySets parameters: - $ref: '#/components/parameters/top' @@ -14242,6 +14481,7 @@ paths: tags: - deviceAppManagement.policySet summary: Create new navigation property to policySets for deviceAppManagement + description: The PolicySet of Policies and Applications operationId: deviceAppManagement_CreatePolicySets requestBody: description: New navigation property @@ -14265,6 +14505,7 @@ paths: tags: - deviceAppManagement.policySet summary: Get policySets from deviceAppManagement + description: The PolicySet of Policies and Applications operationId: deviceAppManagement_GetPolicySets parameters: - name: policySet-id @@ -14333,6 +14574,7 @@ paths: tags: - deviceAppManagement.policySet summary: Update the navigation property policySets in deviceAppManagement + description: The PolicySet of Policies and Applications operationId: deviceAppManagement_UpdatePolicySets parameters: - name: policySet-id @@ -14359,6 +14601,7 @@ paths: tags: - deviceAppManagement.policySet summary: Delete navigation property policySets for deviceAppManagement + description: The PolicySet of Policies and Applications operationId: deviceAppManagement_DeletePolicySets parameters: - name: policySet-id @@ -14384,6 +14627,7 @@ paths: tags: - deviceAppManagement.policySet summary: Get assignments from deviceAppManagement + description: Assignments of the PolicySet. operationId: deviceAppManagement.policySets_ListAssignments parameters: - name: policySet-id @@ -14468,6 +14712,7 @@ paths: tags: - deviceAppManagement.policySet summary: Create new navigation property to assignments for deviceAppManagement + description: Assignments of the PolicySet. operationId: deviceAppManagement.policySets_CreateAssignments parameters: - name: policySet-id @@ -14499,6 +14744,7 @@ paths: tags: - deviceAppManagement.policySet summary: Get assignments from deviceAppManagement + description: Assignments of the PolicySet. operationId: deviceAppManagement.policySets_GetAssignments parameters: - name: policySet-id @@ -14555,6 +14801,7 @@ paths: tags: - deviceAppManagement.policySet summary: Update the navigation property assignments in deviceAppManagement + description: Assignments of the PolicySet. operationId: deviceAppManagement.policySets_UpdateAssignments parameters: - name: policySet-id @@ -14588,6 +14835,7 @@ paths: tags: - deviceAppManagement.policySet summary: Delete navigation property assignments for deviceAppManagement + description: Assignments of the PolicySet. operationId: deviceAppManagement.policySets_DeleteAssignments parameters: - name: policySet-id @@ -14620,6 +14868,7 @@ paths: tags: - deviceAppManagement.policySet summary: Get items from deviceAppManagement + description: Items of the PolicySet with maximum count 100. operationId: deviceAppManagement.policySets_ListItems parameters: - name: policySet-id @@ -14722,6 +14971,7 @@ paths: tags: - deviceAppManagement.policySet summary: Create new navigation property to items for deviceAppManagement + description: Items of the PolicySet with maximum count 100. operationId: deviceAppManagement.policySets_CreateItems parameters: - name: policySet-id @@ -14753,6 +15003,7 @@ paths: tags: - deviceAppManagement.policySet summary: Get items from deviceAppManagement + description: Items of the PolicySet with maximum count 100. operationId: deviceAppManagement.policySets_GetItems parameters: - name: policySet-id @@ -14815,6 +15066,7 @@ paths: tags: - deviceAppManagement.policySet summary: Update the navigation property items in deviceAppManagement + description: Items of the PolicySet with maximum count 100. operationId: deviceAppManagement.policySets_UpdateItems parameters: - name: policySet-id @@ -14848,6 +15100,7 @@ paths: tags: - deviceAppManagement.policySet summary: Delete navigation property items for deviceAppManagement + description: Items of the PolicySet with maximum count 100. operationId: deviceAppManagement.policySets_DeleteItems parameters: - name: policySet-id @@ -14960,6 +15213,7 @@ paths: tags: - deviceAppManagement.sideLoadingKey summary: Get sideLoadingKeys from deviceAppManagement + description: Side Loading Keys that are required for the Windows 8 and 8.1 Apps installation. operationId: deviceAppManagement_ListSideLoadingKeys parameters: - $ref: '#/components/parameters/top' @@ -15046,6 +15300,7 @@ paths: tags: - deviceAppManagement.sideLoadingKey summary: Create new navigation property to sideLoadingKeys for deviceAppManagement + description: Side Loading Keys that are required for the Windows 8 and 8.1 Apps installation. operationId: deviceAppManagement_CreateSideLoadingKeys requestBody: description: New navigation property @@ -15069,6 +15324,7 @@ paths: tags: - deviceAppManagement.sideLoadingKey summary: Get sideLoadingKeys from deviceAppManagement + description: Side Loading Keys that are required for the Windows 8 and 8.1 Apps installation. operationId: deviceAppManagement_GetSideLoadingKeys parameters: - name: sideLoadingKey-id @@ -15121,6 +15377,7 @@ paths: tags: - deviceAppManagement.sideLoadingKey summary: Update the navigation property sideLoadingKeys in deviceAppManagement + description: Side Loading Keys that are required for the Windows 8 and 8.1 Apps installation. operationId: deviceAppManagement_UpdateSideLoadingKeys parameters: - name: sideLoadingKey-id @@ -15147,6 +15404,7 @@ paths: tags: - deviceAppManagement.sideLoadingKey summary: Delete navigation property sideLoadingKeys for deviceAppManagement + description: Side Loading Keys that are required for the Windows 8 and 8.1 Apps installation. operationId: deviceAppManagement_DeleteSideLoadingKeys parameters: - name: sideLoadingKey-id @@ -15172,6 +15430,7 @@ paths: tags: - deviceAppManagement.symantecCodeSigningCertificate summary: Get symantecCodeSigningCertificate from deviceAppManagement + description: The WinPhone Symantec Code Signing Certificate. operationId: deviceAppManagement_GetSymantecCodeSigningCertificate parameters: - name: $select @@ -15221,6 +15480,7 @@ paths: tags: - deviceAppManagement.symantecCodeSigningCertificate summary: Update the navigation property symantecCodeSigningCertificate in deviceAppManagement + description: The WinPhone Symantec Code Signing Certificate. operationId: deviceAppManagement_UpdateSymantecCodeSigningCertificate requestBody: description: New navigation property values @@ -15239,6 +15499,7 @@ paths: tags: - deviceAppManagement.symantecCodeSigningCertificate summary: Delete navigation property symantecCodeSigningCertificate for deviceAppManagement + description: The WinPhone Symantec Code Signing Certificate. operationId: deviceAppManagement_DeleteSymantecCodeSigningCertificate parameters: - name: If-Match @@ -15257,6 +15518,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get targetedManagedAppConfigurations from deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_ListTargetedManagedAppConfigurations parameters: - $ref: '#/components/parameters/top' @@ -15361,6 +15623,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Create new navigation property to targetedManagedAppConfigurations for deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_CreateTargetedManagedAppConfigurations requestBody: description: New navigation property @@ -15384,6 +15647,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get targetedManagedAppConfigurations from deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_GetTargetedManagedAppConfigurations parameters: - name: targetedManagedAppConfiguration-id @@ -15459,6 +15723,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property targetedManagedAppConfigurations in deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_UpdateTargetedManagedAppConfigurations parameters: - name: targetedManagedAppConfiguration-id @@ -15485,6 +15750,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property targetedManagedAppConfigurations for deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_DeleteTargetedManagedAppConfigurations parameters: - name: targetedManagedAppConfiguration-id @@ -15510,6 +15776,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_ListApps parameters: - name: targetedManagedAppConfiguration-id @@ -15594,6 +15861,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Create new navigation property to apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_CreateApps parameters: - name: targetedManagedAppConfiguration-id @@ -15625,6 +15893,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_GetApps parameters: - name: targetedManagedAppConfiguration-id @@ -15681,6 +15950,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property apps in deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_UpdateApps parameters: - name: targetedManagedAppConfiguration-id @@ -15714,6 +15984,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_DeleteApps parameters: - name: targetedManagedAppConfiguration-id @@ -15746,6 +16017,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get assignments from deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_ListAssignments parameters: - name: targetedManagedAppConfiguration-id @@ -15833,6 +16105,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Create new navigation property to assignments for deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_CreateAssignments parameters: - name: targetedManagedAppConfiguration-id @@ -15864,6 +16137,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get assignments from deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_GetAssignments parameters: - name: targetedManagedAppConfiguration-id @@ -15921,6 +16195,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property assignments in deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_UpdateAssignments parameters: - name: targetedManagedAppConfiguration-id @@ -15954,6 +16229,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property assignments for deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_DeleteAssignments parameters: - name: targetedManagedAppConfiguration-id @@ -15986,6 +16262,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.targetedManagedAppConfigurations_GetDeploymentSummary parameters: - name: targetedManagedAppConfiguration-id @@ -16038,6 +16315,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property deploymentSummary in deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.targetedManagedAppConfigurations_UpdateDeploymentSummary parameters: - name: targetedManagedAppConfiguration-id @@ -16064,6 +16342,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property deploymentSummary for deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.targetedManagedAppConfigurations_DeleteDeploymentSummary parameters: - name: targetedManagedAppConfiguration-id @@ -16190,6 +16469,7 @@ paths: tags: - deviceAppManagement.vppToken summary: Get vppTokens from deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_ListVppTokens parameters: - $ref: '#/components/parameters/top' @@ -16312,6 +16592,7 @@ paths: tags: - deviceAppManagement.vppToken summary: Create new navigation property to vppTokens for deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_CreateVppTokens requestBody: description: New navigation property @@ -16335,6 +16616,7 @@ paths: tags: - deviceAppManagement.vppToken summary: Get vppTokens from deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_GetVppTokens parameters: - name: vppToken-id @@ -16399,6 +16681,7 @@ paths: tags: - deviceAppManagement.vppToken summary: Update the navigation property vppTokens in deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_UpdateVppTokens parameters: - name: vppToken-id @@ -16425,6 +16708,7 @@ paths: tags: - deviceAppManagement.vppToken summary: Delete navigation property vppTokens for deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_DeleteVppTokens parameters: - name: vppToken-id @@ -16450,6 +16734,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeLicenses + description: Revoke licenses associated with a specific appleVolumePurchaseProgramToken operationId: deviceAppManagement.vppTokens_revokeLicenses parameters: - name: vppToken-id @@ -16487,6 +16772,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action syncLicenses + description: Syncs licenses associated with a specific appleVolumePurchaseProgramToken operationId: deviceAppManagement.vppTokens_syncLicenses parameters: - name: vppToken-id @@ -16549,6 +16835,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get wdacSupplementalPolicies from deviceAppManagement + description: The collection of Windows Defender Application Control Supplemental Policies. operationId: deviceAppManagement_ListWdacSupplementalPolicies parameters: - $ref: '#/components/parameters/top' @@ -16650,6 +16937,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Create new navigation property to wdacSupplementalPolicies for deviceAppManagement + description: The collection of Windows Defender Application Control Supplemental Policies. operationId: deviceAppManagement_CreateWdacSupplementalPolicies requestBody: description: New navigation property @@ -16673,6 +16961,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get wdacSupplementalPolicies from deviceAppManagement + description: The collection of Windows Defender Application Control Supplemental Policies. operationId: deviceAppManagement_GetWdacSupplementalPolicies parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -16747,6 +17036,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Update the navigation property wdacSupplementalPolicies in deviceAppManagement + description: The collection of Windows Defender Application Control Supplemental Policies. operationId: deviceAppManagement_UpdateWdacSupplementalPolicies parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -16773,6 +17063,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Delete navigation property wdacSupplementalPolicies for deviceAppManagement + description: The collection of Windows Defender Application Control Supplemental Policies. operationId: deviceAppManagement_DeleteWdacSupplementalPolicies parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -16798,6 +17089,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get assignments from deviceAppManagement + description: The associated group assignments for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_ListAssignments parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -16879,6 +17171,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Create new navigation property to assignments for deviceAppManagement + description: The associated group assignments for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_CreateAssignments parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -16910,6 +17203,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get assignments from deviceAppManagement + description: The associated group assignments for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_GetAssignments parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -16965,6 +17259,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Update the navigation property assignments in deviceAppManagement + description: The associated group assignments for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_UpdateAssignments parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -16998,6 +17293,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Delete navigation property assignments for deviceAppManagement + description: The associated group assignments for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_DeleteAssignments parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17030,6 +17326,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get deploySummary from deviceAppManagement + description: WindowsDefenderApplicationControl supplemental policy deployment summary. operationId: deviceAppManagement.wdacSupplementalPolicies_GetDeploySummary parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17079,6 +17376,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Update the navigation property deploySummary in deviceAppManagement + description: WindowsDefenderApplicationControl supplemental policy deployment summary. operationId: deviceAppManagement.wdacSupplementalPolicies_UpdateDeploySummary parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17105,6 +17403,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Delete navigation property deploySummary for deviceAppManagement + description: WindowsDefenderApplicationControl supplemental policy deployment summary. operationId: deviceAppManagement.wdacSupplementalPolicies_DeleteDeploySummary parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17130,6 +17429,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get deviceStatuses from deviceAppManagement + description: The list of device deployment states for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_ListDeviceStatuses parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17237,6 +17537,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Create new navigation property to deviceStatuses for deviceAppManagement + description: The list of device deployment states for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_CreateDeviceStatuses parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17268,6 +17569,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get deviceStatuses from deviceAppManagement + description: The list of device deployment states for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_GetDeviceStatuses parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17339,6 +17641,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Update the navigation property deviceStatuses in deviceAppManagement + description: The list of device deployment states for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_UpdateDeviceStatuses parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17372,6 +17675,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Delete navigation property deviceStatuses for deviceAppManagement + description: The list of device deployment states for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_DeleteDeviceStatuses parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17404,6 +17708,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get policy from deviceAppManagement + description: The navigation link to the WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies.deviceStatuses_GetPolicy parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17489,6 +17794,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get ref of policy from deviceAppManagement + description: The navigation link to the WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies.deviceStatuses_GetRefPolicy parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17535,6 +17841,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Update the ref of navigation property policy in deviceAppManagement + description: The navigation link to the WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies.deviceStatuses_SetRefPolicy parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17570,6 +17877,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Delete ref of navigation property policy for deviceAppManagement + description: The navigation link to the WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies.deviceStatuses_DeleteRefPolicy parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id @@ -17677,6 +17985,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Get windowsInformationProtectionDeviceRegistrations from deviceAppManagement + description: Windows information protection device registrations that are not MDM enrolled. operationId: deviceAppManagement_ListWindowsInformationProtectionDeviceRegistrations parameters: - $ref: '#/components/parameters/top' @@ -17766,6 +18075,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Create new navigation property to windowsInformationProtectionDeviceRegistrations for deviceAppManagement + description: Windows information protection device registrations that are not MDM enrolled. operationId: deviceAppManagement_CreateWindowsInformationProtectionDeviceRegistrations requestBody: description: New navigation property @@ -17789,6 +18099,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Get windowsInformationProtectionDeviceRegistrations from deviceAppManagement + description: Windows information protection device registrations that are not MDM enrolled. operationId: deviceAppManagement_GetWindowsInformationProtectionDeviceRegistrations parameters: - name: windowsInformationProtectionDeviceRegistration-id @@ -17842,6 +18153,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Update the navigation property windowsInformationProtectionDeviceRegistrations in deviceAppManagement + description: Windows information protection device registrations that are not MDM enrolled. operationId: deviceAppManagement_UpdateWindowsInformationProtectionDeviceRegistrations parameters: - name: windowsInformationProtectionDeviceRegistration-id @@ -17868,6 +18180,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Delete navigation property windowsInformationProtectionDeviceRegistrations for deviceAppManagement + description: Windows information protection device registrations that are not MDM enrolled. operationId: deviceAppManagement_DeleteWindowsInformationProtectionDeviceRegistrations parameters: - name: windowsInformationProtectionDeviceRegistration-id @@ -17913,6 +18226,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get windowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_ListWindowsInformationProtectionPolicies parameters: - $ref: '#/components/parameters/top' @@ -18110,6 +18424,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Create new navigation property to windowsInformationProtectionPolicies for deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_CreateWindowsInformationProtectionPolicies requestBody: description: New navigation property @@ -18133,6 +18448,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get windowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_GetWindowsInformationProtectionPolicies parameters: - name: windowsInformationProtectionPolicy-id @@ -18239,6 +18555,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Update the navigation property windowsInformationProtectionPolicies in deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_UpdateWindowsInformationProtectionPolicies parameters: - name: windowsInformationProtectionPolicy-id @@ -18265,6 +18582,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Delete navigation property windowsInformationProtectionPolicies for deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_DeleteWindowsInformationProtectionPolicies parameters: - name: windowsInformationProtectionPolicy-id @@ -18290,6 +18608,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Get windowsInformationProtectionWipeActions from deviceAppManagement + description: Windows information protection wipe actions. operationId: deviceAppManagement_ListWindowsInformationProtectionWipeActions parameters: - $ref: '#/components/parameters/top' @@ -18379,6 +18698,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Create new navigation property to windowsInformationProtectionWipeActions for deviceAppManagement + description: Windows information protection wipe actions. operationId: deviceAppManagement_CreateWindowsInformationProtectionWipeActions requestBody: description: New navigation property @@ -18402,6 +18722,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Get windowsInformationProtectionWipeActions from deviceAppManagement + description: Windows information protection wipe actions. operationId: deviceAppManagement_GetWindowsInformationProtectionWipeActions parameters: - name: windowsInformationProtectionWipeAction-id @@ -18455,6 +18776,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Update the navigation property windowsInformationProtectionWipeActions in deviceAppManagement + description: Windows information protection wipe actions. operationId: deviceAppManagement_UpdateWindowsInformationProtectionWipeActions parameters: - name: windowsInformationProtectionWipeAction-id @@ -18481,6 +18803,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Delete navigation property windowsInformationProtectionWipeActions for deviceAppManagement + description: Windows information protection wipe actions. operationId: deviceAppManagement_DeleteWindowsInformationProtectionWipeActions parameters: - name: windowsInformationProtectionWipeAction-id @@ -18506,6 +18829,7 @@ paths: tags: - deviceAppManagement.windowsManagementApp summary: Get windowsManagementApp from deviceAppManagement + description: Windows management app. operationId: deviceAppManagement_GetWindowsManagementApp parameters: - name: $select @@ -18520,6 +18844,8 @@ paths: enum: - id - availableVersion + - managedInstaller + - managedInstallerConfiguredDateTime - healthStates type: string - name: $expand @@ -18553,6 +18879,7 @@ paths: tags: - deviceAppManagement.windowsManagementApp summary: Get ref of windowsManagementApp from deviceAppManagement + description: Windows management app. operationId: deviceAppManagement_GetRefWindowsManagementApp responses: '200': @@ -18571,6 +18898,7 @@ paths: tags: - deviceAppManagement.windowsManagementApp summary: Update the ref of navigation property windowsManagementApp in deviceAppManagement + description: Windows management app. operationId: deviceAppManagement_SetRefWindowsManagementApp requestBody: description: New navigation property ref values @@ -18591,6 +18919,7 @@ paths: tags: - deviceAppManagement.windowsManagementApp summary: Delete ref of navigation property windowsManagementApp for deviceAppManagement + description: Windows management app. operationId: deviceAppManagement_DeleteRefWindowsManagementApp parameters: - name: If-Match @@ -18604,6 +18933,19 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + /deviceAppManagement/windowsManagementApp/microsoft.graph.setAsManagedInstaller: + post: + tags: + - deviceAppManagement.Actions + summary: Invoke action setAsManagedInstaller + description: Set the Managed Installer status for the caller tenant + operationId: deviceAppManagement.windowsManagementApp_setAsManagedInstaller + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action /officeConfiguration: get: tags: @@ -18674,6 +19016,7 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Get clientConfigurations from officeConfiguration + description: List of office Client configuration. operationId: officeConfiguration_ListClientConfigurations parameters: - $ref: '#/components/parameters/top' @@ -18768,6 +19111,7 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Create new navigation property to clientConfigurations for officeConfiguration + description: List of office Client configuration. operationId: officeConfiguration_CreateClientConfigurations requestBody: description: New navigation property @@ -18791,6 +19135,7 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Get clientConfigurations from officeConfiguration + description: List of office Client configuration. operationId: officeConfiguration_GetClientConfigurations parameters: - name: officeClientConfiguration-id @@ -18852,6 +19197,7 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Update the navigation property clientConfigurations in officeConfiguration + description: List of office Client configuration. operationId: officeConfiguration_UpdateClientConfigurations parameters: - name: officeClientConfiguration-id @@ -18878,6 +19224,7 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Delete navigation property clientConfigurations for officeConfiguration + description: List of office Client configuration. operationId: officeConfiguration_DeleteClientConfigurations parameters: - name: officeClientConfiguration-id @@ -18903,6 +19250,7 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Get assignments from officeConfiguration + description: The list of group assignments for the policy. operationId: officeConfiguration.clientConfigurations_ListAssignments parameters: - name: officeClientConfiguration-id @@ -18984,6 +19332,7 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Create new navigation property to assignments for officeConfiguration + description: The list of group assignments for the policy. operationId: officeConfiguration.clientConfigurations_CreateAssignments parameters: - name: officeClientConfiguration-id @@ -19015,6 +19364,7 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Get assignments from officeConfiguration + description: The list of group assignments for the policy. operationId: officeConfiguration.clientConfigurations_GetAssignments parameters: - name: officeClientConfiguration-id @@ -19070,6 +19420,7 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Update the navigation property assignments in officeConfiguration + description: The list of group assignments for the policy. operationId: officeConfiguration.clientConfigurations_UpdateAssignments parameters: - name: officeClientConfiguration-id @@ -19103,6 +19454,7 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Delete navigation property assignments for officeConfiguration + description: The list of group assignments for the policy. operationId: officeConfiguration.clientConfigurations_DeleteAssignments parameters: - name: officeClientConfiguration-id @@ -19313,6 +19665,7 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Get deviceEnrollmentConfigurations from users + description: Get enrollment configurations targeted to the user operationId: users_ListDeviceEnrollmentConfigurations parameters: - name: user-id @@ -19414,6 +19767,7 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Create new navigation property to deviceEnrollmentConfigurations for users + description: Get enrollment configurations targeted to the user operationId: users_CreateDeviceEnrollmentConfigurations parameters: - name: user-id @@ -19445,6 +19799,7 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Get deviceEnrollmentConfigurations from users + description: Get enrollment configurations targeted to the user operationId: users_GetDeviceEnrollmentConfigurations parameters: - name: user-id @@ -19514,6 +19869,7 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Update the navigation property deviceEnrollmentConfigurations in users + description: Get enrollment configurations targeted to the user operationId: users_UpdateDeviceEnrollmentConfigurations parameters: - name: user-id @@ -19547,6 +19903,7 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Delete navigation property deviceEnrollmentConfigurations for users + description: Get enrollment configurations targeted to the user operationId: users_DeleteDeviceEnrollmentConfigurations parameters: - name: user-id @@ -19579,6 +19936,7 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Get assignments from users + description: The list of group assignments for the device configuration profile operationId: users.deviceEnrollmentConfigurations_ListAssignments parameters: - name: user-id @@ -19673,6 +20031,7 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Create new navigation property to assignments for users + description: The list of group assignments for the device configuration profile operationId: users.deviceEnrollmentConfigurations_CreateAssignments parameters: - name: user-id @@ -19711,6 +20070,7 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Get assignments from users + description: The list of group assignments for the device configuration profile operationId: users.deviceEnrollmentConfigurations_GetAssignments parameters: - name: user-id @@ -19775,6 +20135,7 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Update the navigation property assignments in users + description: The list of group assignments for the device configuration profile operationId: users.deviceEnrollmentConfigurations_UpdateAssignments parameters: - name: user-id @@ -19815,6 +20176,7 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Delete navigation property assignments for users + description: The list of group assignments for the device configuration profile operationId: users.deviceEnrollmentConfigurations_DeleteAssignments parameters: - name: user-id @@ -19854,6 +20216,7 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Get deviceManagementTroubleshootingEvents from users + description: The list of troubleshooting events for this user. operationId: users_ListDeviceManagementTroubleshootingEvents parameters: - name: user-id @@ -19947,6 +20310,7 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Create new navigation property to deviceManagementTroubleshootingEvents for users + description: The list of troubleshooting events for this user. operationId: users_CreateDeviceManagementTroubleshootingEvents parameters: - name: user-id @@ -19978,6 +20342,7 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Get deviceManagementTroubleshootingEvents from users + description: The list of troubleshooting events for this user. operationId: users_GetDeviceManagementTroubleshootingEvents parameters: - name: user-id @@ -20037,6 +20402,7 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Update the navigation property deviceManagementTroubleshootingEvents in users + description: The list of troubleshooting events for this user. operationId: users_UpdateDeviceManagementTroubleshootingEvents parameters: - name: user-id @@ -20070,6 +20436,7 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Delete navigation property deviceManagementTroubleshootingEvents for users + description: The list of troubleshooting events for this user. operationId: users_DeleteDeviceManagementTroubleshootingEvents parameters: - name: user-id @@ -20102,6 +20469,7 @@ paths: tags: - users.managedAppRegistration summary: Get managedAppRegistrations from users + description: Zero or more managed app registrations that belong to the user. operationId: users_ListManagedAppRegistrations parameters: - name: user-id @@ -20235,6 +20603,7 @@ paths: tags: - users.managedAppRegistration summary: Get ref of managedAppRegistrations from users + description: Zero or more managed app registrations that belong to the user. operationId: users_ListRefManagedAppRegistrations parameters: - name: user-id @@ -20321,6 +20690,7 @@ paths: tags: - users.managedAppRegistration summary: Create new navigation property ref to managedAppRegistrations for users + description: Zero or more managed app registrations that belong to the user. operationId: users_CreateRefManagedAppRegistrations parameters: - name: user-id @@ -20356,6 +20726,7 @@ paths: tags: - users.managedDevice summary: Get managedDevices from users + description: The managed devices associated with the user. operationId: users_ListManagedDevices parameters: - name: user-id @@ -20382,6 +20753,8 @@ paths: enum: - id - id desc + - cloudPcRemoteActionResults + - cloudPcRemoteActionResults desc - aadRegistered - aadRegistered desc - activationLockBypassCode @@ -20548,6 +20921,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -20625,8 +20999,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -20647,8 +21021,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -20685,6 +21059,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to managedDevices for users + description: The managed devices associated with the user. operationId: users_CreateManagedDevices parameters: - name: user-id @@ -20716,6 +21091,7 @@ paths: tags: - users.managedDevice summary: Get managedDevices from users + description: The managed devices associated with the user. operationId: users_GetManagedDevices parameters: - name: user-id @@ -20743,6 +21119,7 @@ paths: items: enum: - id + - cloudPcRemoteActionResults - aadRegistered - activationLockBypassCode - androidSecurityPatchLevel @@ -20820,8 +21197,8 @@ paths: - wiFiMacAddress - windowsActiveMalwareCount - windowsRemediatedMalwareCount - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -20842,8 +21219,8 @@ paths: items: enum: - '*' - - deviceCompliancePolicyStates - assignmentFilterEvaluationStatusDetails + - deviceCompliancePolicyStates - deviceConfigurationStates - managedDeviceMobileAppConfigurationStates - securityBaselineStates @@ -20861,13 +21238,13 @@ paths: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' links: - deviceCompliancePolicyStates: - operationId: users.ManagedDevices.ListDeviceCompliancePolicyStates + assignmentFilterEvaluationStatusDetails: + operationId: users.ManagedDevices.ListAssignmentFilterEvaluationStatusDetails parameters: user-id: $request.path.user-id managedDevice-id: $request.path.managedDevice-id - assignmentFilterEvaluationStatusDetails: - operationId: users.ManagedDevices.ListAssignmentFilterEvaluationStatusDetails + deviceCompliancePolicyStates: + operationId: users.ManagedDevices.ListDeviceCompliancePolicyStates parameters: user-id: $request.path.user-id managedDevice-id: $request.path.managedDevice-id @@ -20918,6 +21295,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property managedDevices in users + description: The managed devices associated with the user. operationId: users_UpdateManagedDevices parameters: - name: user-id @@ -20951,6 +21329,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property managedDevices for users + description: The managed devices associated with the user. operationId: users_DeleteManagedDevices parameters: - name: user-id @@ -20983,6 +21362,7 @@ paths: tags: - users.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_ListAssignmentFilterEvaluationStatusDetails parameters: - name: user-id @@ -21071,6 +21451,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to assignmentFilterEvaluationStatusDetails for users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_CreateAssignmentFilterEvaluationStatusDetails parameters: - name: user-id @@ -21109,6 +21490,7 @@ paths: tags: - users.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_GetAssignmentFilterEvaluationStatusDetails parameters: - name: user-id @@ -21171,6 +21553,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property assignmentFilterEvaluationStatusDetails in users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_UpdateAssignmentFilterEvaluationStatusDetails parameters: - name: user-id @@ -21211,6 +21594,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property assignmentFilterEvaluationStatusDetails for users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_DeleteAssignmentFilterEvaluationStatusDetails parameters: - name: user-id @@ -21250,6 +21634,7 @@ paths: tags: - users.managedDevice summary: Get detectedApps from users + description: All applications currently installed on the device operationId: users.managedDevices_ListDetectedApps parameters: - name: user-id @@ -21350,6 +21735,7 @@ paths: tags: - users.managedDevice summary: Get ref of detectedApps from users + description: All applications currently installed on the device operationId: users.managedDevices_ListRefDetectedApps parameters: - name: user-id @@ -21419,6 +21805,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property ref to detectedApps for users + description: All applications currently installed on the device operationId: users.managedDevices_CreateRefDetectedApps parameters: - name: user-id @@ -21461,6 +21848,7 @@ paths: tags: - users.managedDevice summary: Get deviceCategory from users + description: Device category operationId: users.managedDevices_GetDeviceCategory parameters: - name: user-id @@ -21518,6 +21906,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property deviceCategory in users + description: Device category operationId: users.managedDevices_UpdateDeviceCategory parameters: - name: user-id @@ -21551,6 +21940,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property deviceCategory for users + description: Device category operationId: users.managedDevices_DeleteDeviceCategory parameters: - name: user-id @@ -21583,6 +21973,7 @@ paths: tags: - users.managedDevice summary: Get deviceCompliancePolicyStates from users + description: Device compliance policy states for this device. operationId: users.managedDevices_ListDeviceCompliancePolicyStates parameters: - name: user-id @@ -21692,6 +22083,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to deviceCompliancePolicyStates for users + description: Device compliance policy states for this device. operationId: users.managedDevices_CreateDeviceCompliancePolicyStates parameters: - name: user-id @@ -21730,6 +22122,7 @@ paths: tags: - users.managedDevice summary: Get deviceCompliancePolicyStates from users + description: Device compliance policy states for this device. operationId: users.managedDevices_GetDeviceCompliancePolicyStates parameters: - name: user-id @@ -21799,6 +22192,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property deviceCompliancePolicyStates in users + description: Device compliance policy states for this device. operationId: users.managedDevices_UpdateDeviceCompliancePolicyStates parameters: - name: user-id @@ -21839,6 +22233,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property deviceCompliancePolicyStates for users + description: Device compliance policy states for this device. operationId: users.managedDevices_DeleteDeviceCompliancePolicyStates parameters: - name: user-id @@ -21878,6 +22273,7 @@ paths: tags: - users.managedDevice summary: Get deviceConfigurationStates from users + description: Device configuration states for this device. operationId: users.managedDevices_ListDeviceConfigurationStates parameters: - name: user-id @@ -21987,6 +22383,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to deviceConfigurationStates for users + description: Device configuration states for this device. operationId: users.managedDevices_CreateDeviceConfigurationStates parameters: - name: user-id @@ -22025,6 +22422,7 @@ paths: tags: - users.managedDevice summary: Get deviceConfigurationStates from users + description: Device configuration states for this device. operationId: users.managedDevices_GetDeviceConfigurationStates parameters: - name: user-id @@ -22094,6 +22492,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property deviceConfigurationStates in users + description: Device configuration states for this device. operationId: users.managedDevices_UpdateDeviceConfigurationStates parameters: - name: user-id @@ -22134,6 +22533,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property deviceConfigurationStates for users + description: Device configuration states for this device. operationId: users.managedDevices_DeleteDeviceConfigurationStates parameters: - name: user-id @@ -22173,6 +22573,7 @@ paths: tags: - users.managedDevice summary: Get logCollectionRequests from users + description: List of log collection requests operationId: users.managedDevices_ListLogCollectionRequests parameters: - name: user-id @@ -22282,6 +22683,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to logCollectionRequests for users + description: List of log collection requests operationId: users.managedDevices_CreateLogCollectionRequests parameters: - name: user-id @@ -22320,6 +22722,7 @@ paths: tags: - users.managedDevice summary: Get logCollectionRequests from users + description: List of log collection requests operationId: users.managedDevices_GetLogCollectionRequests parameters: - name: user-id @@ -22389,6 +22792,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property logCollectionRequests in users + description: List of log collection requests operationId: users.managedDevices_UpdateLogCollectionRequests parameters: - name: user-id @@ -22429,6 +22833,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property logCollectionRequests for users + description: List of log collection requests operationId: users.managedDevices_DeleteLogCollectionRequests parameters: - name: user-id @@ -22468,6 +22873,7 @@ paths: tags: - users.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_ListManagedDeviceMobileAppConfigurationStates parameters: - name: user-id @@ -22577,6 +22983,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to managedDeviceMobileAppConfigurationStates for users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_CreateManagedDeviceMobileAppConfigurationStates parameters: - name: user-id @@ -22615,6 +23022,7 @@ paths: tags: - users.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_GetManagedDeviceMobileAppConfigurationStates parameters: - name: user-id @@ -22684,6 +23092,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property managedDeviceMobileAppConfigurationStates in users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_UpdateManagedDeviceMobileAppConfigurationStates parameters: - name: user-id @@ -22724,6 +23133,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property managedDeviceMobileAppConfigurationStates for users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_DeleteManagedDeviceMobileAppConfigurationStates parameters: - name: user-id @@ -22763,6 +23173,7 @@ paths: tags: - users.managedDevice summary: Get securityBaselineStates from users + description: Security baseline states for this device. operationId: users.managedDevices_ListSecurityBaselineStates parameters: - name: user-id @@ -22862,6 +23273,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to securityBaselineStates for users + description: Security baseline states for this device. operationId: users.managedDevices_CreateSecurityBaselineStates parameters: - name: user-id @@ -22900,6 +23312,7 @@ paths: tags: - users.managedDevice summary: Get securityBaselineStates from users + description: Security baseline states for this device. operationId: users.managedDevices_GetSecurityBaselineStates parameters: - name: user-id @@ -22974,6 +23387,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property securityBaselineStates in users + description: Security baseline states for this device. operationId: users.managedDevices_UpdateSecurityBaselineStates parameters: - name: user-id @@ -23014,6 +23428,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property securityBaselineStates for users + description: Security baseline states for this device. operationId: users.managedDevices_DeleteSecurityBaselineStates parameters: - name: user-id @@ -23053,6 +23468,7 @@ paths: tags: - users.managedDevice summary: Get settingStates from users + description: The security baseline state for different settings for a device operationId: users.managedDevices.securityBaselineStates_ListSettingStates parameters: - name: user-id @@ -23169,6 +23585,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to settingStates for users + description: The security baseline state for different settings for a device operationId: users.managedDevices.securityBaselineStates_CreateSettingStates parameters: - name: user-id @@ -23214,6 +23631,7 @@ paths: tags: - users.managedDevice summary: Get settingStates from users + description: The security baseline state for different settings for a device operationId: users.managedDevices.securityBaselineStates_GetSettingStates parameters: - name: user-id @@ -23290,6 +23708,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property settingStates in users + description: The security baseline state for different settings for a device operationId: users.managedDevices.securityBaselineStates_UpdateSettingStates parameters: - name: user-id @@ -23337,6 +23756,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property settingStates for users + description: The security baseline state for different settings for a device operationId: users.managedDevices.securityBaselineStates_DeleteSettingStates parameters: - name: user-id @@ -23383,6 +23803,7 @@ paths: tags: - users.managedDevice summary: Get users from users + description: The primary users associated with the managed device. operationId: users.managedDevices_ListUsers parameters: - name: user-id @@ -23668,6 +24089,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -23740,6 +24162,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -23813,6 +24236,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to users for users + description: The primary users associated with the managed device. operationId: users.managedDevices_CreateUsers parameters: - name: user-id @@ -23851,6 +24275,7 @@ paths: tags: - users.managedDevice summary: Get users from users + description: The primary users associated with the managed device. operationId: users.managedDevices_GetUsers parameters: - name: user-id @@ -23975,6 +24400,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -24047,6 +24473,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -24191,6 +24618,12 @@ paths: user-id: $request.path.user-id managedDevice-id: $request.path.managedDevice-id user-id1: $request.path.user-id1 + transitiveReports: + operationId: users.managedDevices.Users.ListTransitiveReports + parameters: + user-id: $request.path.user-id + managedDevice-id: $request.path.managedDevice-id + user-id1: $request.path.user-id1 calendar: operationId: users.managedDevices.Users.GetCalendar parameters: @@ -24468,6 +24901,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property users in users + description: The primary users associated with the managed device. operationId: users.managedDevices_UpdateUsers parameters: - name: user-id @@ -24508,6 +24942,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property users for users + description: The primary users associated with the managed device. operationId: users.managedDevices_DeleteUsers parameters: - name: user-id @@ -24547,6 +24982,7 @@ paths: tags: - users.managedDevice summary: Get windowsProtectionState from users + description: The device protection status. operationId: users.managedDevices_GetWindowsProtectionState parameters: - name: user-id @@ -24629,6 +25065,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property windowsProtectionState in users + description: The device protection status. operationId: users.managedDevices_UpdateWindowsProtectionState parameters: - name: user-id @@ -24662,6 +25099,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property windowsProtectionState for users + description: The device protection status. operationId: users.managedDevices_DeleteWindowsProtectionState parameters: - name: user-id @@ -24694,6 +25132,7 @@ paths: tags: - users.managedDevice summary: Get detectedMalwareState from users + description: Device malware list operationId: users.managedDevices.windowsProtectionState_ListDetectedMalwareState parameters: - name: user-id @@ -24809,6 +25248,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to detectedMalwareState for users + description: Device malware list operationId: users.managedDevices.windowsProtectionState_CreateDetectedMalwareState parameters: - name: user-id @@ -24847,6 +25287,7 @@ paths: tags: - users.managedDevice summary: Get detectedMalwareState from users + description: Device malware list operationId: users.managedDevices.windowsProtectionState_GetDetectedMalwareState parameters: - name: user-id @@ -24918,6 +25359,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property detectedMalwareState in users + description: Device malware list operationId: users.managedDevices.windowsProtectionState_UpdateDetectedMalwareState parameters: - name: user-id @@ -24958,6 +25400,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property detectedMalwareState for users + description: Device malware list operationId: users.managedDevices.windowsProtectionState_DeleteDetectedMalwareState parameters: - name: user-id @@ -24997,6 +25440,7 @@ paths: tags: - users.mobileAppIntentAndState summary: Get mobileAppIntentAndStates from users + description: The list of troubleshooting events for this user. operationId: users_ListMobileAppIntentAndStates parameters: - name: user-id @@ -25084,6 +25528,7 @@ paths: tags: - users.mobileAppIntentAndState summary: Create new navigation property to mobileAppIntentAndStates for users + description: The list of troubleshooting events for this user. operationId: users_CreateMobileAppIntentAndStates parameters: - name: user-id @@ -25115,6 +25560,7 @@ paths: tags: - users.mobileAppIntentAndState summary: Get mobileAppIntentAndStates from users + description: The list of troubleshooting events for this user. operationId: users_GetMobileAppIntentAndStates parameters: - name: user-id @@ -25172,6 +25618,7 @@ paths: tags: - users.mobileAppIntentAndState summary: Update the navigation property mobileAppIntentAndStates in users + description: The list of troubleshooting events for this user. operationId: users_UpdateMobileAppIntentAndStates parameters: - name: user-id @@ -25205,6 +25652,7 @@ paths: tags: - users.mobileAppIntentAndState summary: Delete navigation property mobileAppIntentAndStates for users + description: The list of troubleshooting events for this user. operationId: users_DeleteMobileAppIntentAndStates parameters: - name: user-id @@ -25237,6 +25685,7 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Get mobileAppTroubleshootingEvents from users + description: The list of mobile app troubleshooting events for this user. operationId: users_ListMobileAppTroubleshootingEvents parameters: - name: user-id @@ -25344,6 +25793,7 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Create new navigation property to mobileAppTroubleshootingEvents for users + description: The list of mobile app troubleshooting events for this user. operationId: users_CreateMobileAppTroubleshootingEvents parameters: - name: user-id @@ -25375,6 +25825,7 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Get mobileAppTroubleshootingEvents from users + description: The list of mobile app troubleshooting events for this user. operationId: users_GetMobileAppTroubleshootingEvents parameters: - name: user-id @@ -25446,6 +25897,7 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Update the navigation property mobileAppTroubleshootingEvents in users + description: The list of mobile app troubleshooting events for this user. operationId: users_UpdateMobileAppTroubleshootingEvents parameters: - name: user-id @@ -25479,6 +25931,7 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Delete navigation property mobileAppTroubleshootingEvents for users + description: The list of mobile app troubleshooting events for this user. operationId: users_DeleteMobileAppTroubleshootingEvents parameters: - name: user-id @@ -25511,6 +25964,7 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Get appLogCollectionRequests from users + description: The collection property of AppLogUploadRequest. operationId: users.mobileAppTroubleshootingEvents_ListAppLogCollectionRequests parameters: - name: user-id @@ -25608,6 +26062,7 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Create new navigation property to appLogCollectionRequests for users + description: The collection property of AppLogUploadRequest. operationId: users.mobileAppTroubleshootingEvents_CreateAppLogCollectionRequests parameters: - name: user-id @@ -25646,6 +26101,7 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Get appLogCollectionRequests from users + description: The collection property of AppLogUploadRequest. operationId: users.mobileAppTroubleshootingEvents_GetAppLogCollectionRequests parameters: - name: user-id @@ -25711,6 +26167,7 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Update the navigation property appLogCollectionRequests in users + description: The collection property of AppLogUploadRequest. operationId: users.mobileAppTroubleshootingEvents_UpdateAppLogCollectionRequests parameters: - name: user-id @@ -25751,6 +26208,7 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Delete navigation property appLogCollectionRequests for users + description: The collection property of AppLogUploadRequest. operationId: users.mobileAppTroubleshootingEvents_DeleteAppLogCollectionRequests parameters: - name: user-id @@ -25790,6 +26248,7 @@ paths: tags: - users.windowsInformationProtectionDeviceRegistration summary: Get windowsInformationProtectionDeviceRegistrations from users + description: Zero or more WIP device registrations that belong to the user. operationId: users_ListWindowsInformationProtectionDeviceRegistrations parameters: - name: user-id @@ -25887,6 +26346,7 @@ paths: tags: - users.windowsInformationProtectionDeviceRegistration summary: Get ref of windowsInformationProtectionDeviceRegistrations from users + description: Zero or more WIP device registrations that belong to the user. operationId: users_ListRefWindowsInformationProtectionDeviceRegistrations parameters: - name: user-id @@ -25953,6 +26413,7 @@ paths: tags: - users.windowsInformationProtectionDeviceRegistration summary: Create new navigation property ref to windowsInformationProtectionDeviceRegistrations for users + description: Zero or more WIP device registrations that belong to the user. operationId: users_CreateRefWindowsInformationProtectionDeviceRegistrations parameters: - name: user-id @@ -28428,6 +28889,12 @@ components: type: string description: Windows management app available version. nullable: true + managedInstaller: + $ref: '#/components/schemas/microsoft.graph.managedInstallerStatus' + managedInstallerConfiguredDateTime: + type: string + description: Managed Installer Configured Date Time + nullable: true healthStates: type: array items: @@ -28610,6 +29077,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -28891,16 +29362,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -29264,7 +29735,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -29277,7 +29748,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -29289,12 +29760,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -29303,7 +29774,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -29311,7 +29782,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -29327,7 +29798,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -29343,7 +29814,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -29367,7 +29838,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -29386,11 +29857,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -29398,7 +29869,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -29445,7 +29916,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -29454,7 +29925,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -29492,15 +29963,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -29508,7 +29979,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -29637,6 +30108,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -30086,10 +30561,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -30677,6 +31152,12 @@ components: - failed - notSupported type: string + microsoft.graph.managedInstallerStatus: + title: managedInstallerStatus + enum: + - disabled + - enabled + type: string microsoft.graph.windowsManagementAppHealthState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -30799,6 +31280,35 @@ components: additionalProperties: type: object description: Object containing detailed information about the error and its remediation. + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -31195,6 +31705,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -31736,7 +32250,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -32070,7 +32584,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -32869,6 +33383,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -34038,11 +34553,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -34057,6 +34573,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -34066,7 +34583,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -34103,7 +34620,6 @@ components: 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: @@ -34307,7 +34823,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -34845,6 +35361,25 @@ components: additionalProperties: type: object description: 'Object representing a link to troubleshooting information, the link could be to the Azure Portal or a Microsoft doc.' + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object microsoft.graph.configurationManagerClientState: title: configurationManagerClientState enum: @@ -35742,7 +36277,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -36912,53 +37447,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -38160,10 +38700,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -38234,18 +38786,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -38258,6 +38809,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -38313,7 +38865,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -38595,6 +39146,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -41231,7 +41784,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -41250,14 +41803,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -41266,18 +41819,18 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object microsoft.graph.visualProperties: @@ -42022,18 +42575,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -42112,7 +42669,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -42136,7 +42693,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -42194,6 +42751,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -42226,6 +42788,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -42689,17 +43253,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -42707,9 +43276,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -43328,11 +43899,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -43788,16 +44359,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: @@ -43841,6 +44415,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' @@ -44318,7 +44893,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string diff --git a/openApiDocs/beta/DirectoryObjects.yml b/openApiDocs/beta/DirectoryObjects.yml index fab8dc25636..b193783e1a5 100644 --- a/openApiDocs/beta/DirectoryObjects.yml +++ b/openApiDocs/beta/DirectoryObjects.yml @@ -15,10 +15,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -118,6 +117,7 @@ paths: tags: - directoryObjects.directoryObject summary: Get entity from directoryObjects by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryObjects.directoryObject_GetDirectoryObject parameters: - name: directoryObject-id @@ -129,10 +129,9 @@ paths: x-ms-docs-key-type: directoryObject - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -176,6 +175,7 @@ paths: tags: - directoryObjects.directoryObject summary: Update entity in directoryObjects + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryObjects.directoryObject_UpdateDirectoryObject parameters: - name: directoryObject-id @@ -202,6 +202,7 @@ paths: tags: - directoryObjects.directoryObject summary: Delete entity from directoryObjects + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryObjects.directoryObject_DeleteDirectoryObject parameters: - name: directoryObject-id diff --git a/openApiDocs/beta/Education.yml b/openApiDocs/beta/Education.yml index 4c2341f3051..94b9296cb8f 100644 --- a/openApiDocs/beta/Education.yml +++ b/openApiDocs/beta/Education.yml @@ -23,7 +23,6 @@ paths: type: array items: enum: - - id - synchronizationProfiles - classes - me @@ -729,6 +728,7 @@ paths: tags: - education.educationClass summary: Get assignments from education + description: All assignments associated with this class. Nullable. operationId: education.classes_ListAssignments parameters: - name: educationClass-id @@ -789,8 +789,12 @@ paths: - lastModifiedDateTime desc - notificationChannelUrl - notificationChannelUrl desc + - resourcesFolderUrl + - resourcesFolderUrl desc - status - status desc + - webUrl + - webUrl desc type: string - name: $select in: query @@ -820,7 +824,9 @@ paths: - lastModifiedBy - lastModifiedDateTime - notificationChannelUrl + - resourcesFolderUrl - status + - webUrl - categories - resources - rubric @@ -869,6 +875,7 @@ paths: tags: - education.educationClass summary: Create new navigation property to assignments for education + description: All assignments associated with this class. Nullable. operationId: education.classes_CreateAssignments parameters: - name: educationClass-id @@ -900,6 +907,7 @@ paths: tags: - education.educationClass summary: Get assignments from education + description: All assignments associated with this class. Nullable. operationId: education.classes_GetAssignments parameters: - name: educationClass-id @@ -944,7 +952,9 @@ paths: - lastModifiedBy - lastModifiedDateTime - notificationChannelUrl + - resourcesFolderUrl - status + - webUrl - categories - resources - rubric @@ -1001,6 +1011,7 @@ paths: tags: - education.educationClass summary: Update the navigation property assignments in education + description: All assignments associated with this class. Nullable. operationId: education.classes_UpdateAssignments parameters: - name: educationClass-id @@ -1034,6 +1045,7 @@ paths: tags: - education.educationClass summary: Delete navigation property assignments for education + description: All assignments associated with this class. Nullable. operationId: education.classes_DeleteAssignments parameters: - name: educationClass-id @@ -1066,6 +1078,7 @@ paths: tags: - education.educationClass summary: Get categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.classes.assignments_ListCategories parameters: - name: educationClass-id @@ -1154,6 +1167,7 @@ paths: tags: - education.educationClass summary: Create new navigation property to categories for education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.classes.assignments_CreateCategories parameters: - name: educationClass-id @@ -1192,6 +1206,7 @@ paths: tags: - education.educationClass summary: Get categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.classes.assignments_GetCategories parameters: - name: educationClass-id @@ -1254,6 +1269,7 @@ paths: tags: - education.educationClass summary: Update the navigation property categories in education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.classes.assignments_UpdateCategories parameters: - name: educationClass-id @@ -1294,6 +1310,7 @@ paths: tags: - education.educationClass summary: Delete navigation property categories for education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.classes.assignments_DeleteCategories parameters: - name: educationClass-id @@ -1328,12 +1345,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl()': - get: + '/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.publish': + post: tags: - - education.Functions - summary: Invoke function getResourcesFolderUrl - operationId: education.classes.assignments_getResourcesFolderUrl + - education.Actions + summary: Invoke action publish + operationId: education.classes.assignments_publish parameters: - name: educationClass-id in: path @@ -1355,17 +1372,16 @@ paths: content: application/json: schema: - type: string - nullable: true + $ref: '#/components/schemas/microsoft.graph.educationAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - '/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.publish': - post: + x-ms-docs-operation-type: action + '/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder()': + get: tags: - - education.Actions - summary: Invoke action publish - operationId: education.classes.assignments_publish + - education.Functions + summary: Invoke function setUpResourcesFolder + operationId: education.classes.assignments_setUpResourcesFolder parameters: - name: educationClass-id in: path @@ -1390,12 +1406,13 @@ paths: $ref: '#/components/schemas/microsoft.graph.educationAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action + x-ms-docs-operation-type: function '/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources': get: tags: - education.educationClass summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.classes.assignments_ListResources parameters: - name: educationClass-id @@ -1487,6 +1504,7 @@ paths: tags: - education.educationClass summary: Create new navigation property to resources for education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.classes.assignments_CreateResources parameters: - name: educationClass-id @@ -1525,6 +1543,7 @@ paths: tags: - education.educationClass summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.classes.assignments_GetResources parameters: - name: educationClass-id @@ -1588,6 +1607,7 @@ paths: tags: - education.educationClass summary: Update the navigation property resources in education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.classes.assignments_UpdateResources parameters: - name: educationClass-id @@ -1628,6 +1648,7 @@ paths: tags: - education.educationClass summary: Delete navigation property resources for education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.classes.assignments_DeleteResources parameters: - name: educationClass-id @@ -1667,6 +1688,7 @@ paths: tags: - education.educationClass summary: Get rubric from education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.classes.assignments_GetRubric parameters: - name: educationClass-id @@ -1730,6 +1752,7 @@ paths: tags: - education.educationClass summary: Update the navigation property rubric in education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.classes.assignments_UpdateRubric parameters: - name: educationClass-id @@ -1763,6 +1786,7 @@ paths: tags: - education.educationClass summary: Delete navigation property rubric for education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.classes.assignments_DeleteRubric parameters: - name: educationClass-id @@ -1795,6 +1819,7 @@ paths: tags: - education.educationClass summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.classes.assignments_ListSubmissions parameters: - name: educationClass-id @@ -1830,10 +1855,6 @@ paths: - id desc - recipient - recipient desc - - releasedBy - - releasedBy desc - - releasedDateTime - - releasedDateTime desc - resourcesFolderUrl - resourcesFolderUrl desc - returnedBy @@ -1863,8 +1884,6 @@ paths: enum: - id - recipient - - releasedBy - - releasedDateTime - resourcesFolderUrl - returnedBy - returnedDateTime @@ -1919,6 +1938,7 @@ paths: tags: - education.educationClass summary: Create new navigation property to submissions for education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.classes.assignments_CreateSubmissions parameters: - name: educationClass-id @@ -1957,6 +1977,7 @@ paths: tags: - education.educationClass summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.classes.assignments_GetSubmissions parameters: - name: educationClass-id @@ -1992,8 +2013,6 @@ paths: enum: - id - recipient - - releasedBy - - releasedDateTime - resourcesFolderUrl - returnedBy - returnedDateTime @@ -2054,6 +2073,7 @@ paths: tags: - education.educationClass summary: Update the navigation property submissions in education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.classes.assignments_UpdateSubmissions parameters: - name: educationClass-id @@ -2094,6 +2114,7 @@ paths: tags: - education.educationClass summary: Delete navigation property submissions for education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.classes.assignments_DeleteSubmissions parameters: - name: educationClass-id @@ -2166,6 +2187,44 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder()': + get: + tags: + - education.Functions + summary: Invoke function setUpResourcesFolder + operationId: education.classes.assignments.submissions_setUpResourcesFolder + parameters: + - name: educationClass-id + in: path + description: 'key: id of educationClass' + required: true + schema: + type: string + x-ms-docs-key-type: educationClass + - name: educationAssignment-id + in: path + description: 'key: id of educationAssignment' + required: true + schema: + type: string + x-ms-docs-key-type: educationAssignment + - name: educationSubmission-id + in: path + description: 'key: id of educationSubmission' + required: true + schema: + type: string + x-ms-docs-key-type: educationSubmission + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.educationSubmission' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit': post: tags: @@ -2247,6 +2306,7 @@ paths: tags: - education.educationClass summary: Get outcomes from education + description: Read-Write. Nullable. operationId: education.classes.assignments.submissions_ListOutcomes parameters: - name: educationClass-id @@ -2345,6 +2405,7 @@ paths: tags: - education.educationClass summary: Create new navigation property to outcomes for education + description: Read-Write. Nullable. operationId: education.classes.assignments.submissions_CreateOutcomes parameters: - name: educationClass-id @@ -2390,6 +2451,7 @@ paths: tags: - education.educationClass summary: Get outcomes from education + description: Read-Write. Nullable. operationId: education.classes.assignments.submissions_GetOutcomes parameters: - name: educationClass-id @@ -2460,6 +2522,7 @@ paths: tags: - education.educationClass summary: Update the navigation property outcomes in education + description: Read-Write. Nullable. operationId: education.classes.assignments.submissions_UpdateOutcomes parameters: - name: educationClass-id @@ -2507,6 +2570,7 @@ paths: tags: - education.educationClass summary: Delete navigation property outcomes for education + description: Read-Write. Nullable. operationId: education.classes.assignments.submissions_DeleteOutcomes parameters: - name: educationClass-id @@ -2553,6 +2617,7 @@ paths: tags: - education.educationClass summary: Get resources from education + description: Nullable. operationId: education.classes.assignments.submissions_ListResources parameters: - name: educationClass-id @@ -2651,6 +2716,7 @@ paths: tags: - education.educationClass summary: Create new navigation property to resources for education + description: Nullable. operationId: education.classes.assignments.submissions_CreateResources parameters: - name: educationClass-id @@ -2696,6 +2762,7 @@ paths: tags: - education.educationClass summary: Get resources from education + description: Nullable. operationId: education.classes.assignments.submissions_GetResources parameters: - name: educationClass-id @@ -2766,6 +2833,7 @@ paths: tags: - education.educationClass summary: Update the navigation property resources in education + description: Nullable. operationId: education.classes.assignments.submissions_UpdateResources parameters: - name: educationClass-id @@ -2813,6 +2881,7 @@ paths: tags: - education.educationClass summary: Delete navigation property resources for education + description: Nullable. operationId: education.classes.assignments.submissions_DeleteResources parameters: - name: educationClass-id @@ -2859,6 +2928,7 @@ paths: tags: - education.educationClass summary: Get submittedResources from education + description: Read-only. Nullable. operationId: education.classes.assignments.submissions_ListSubmittedResources parameters: - name: educationClass-id @@ -2957,6 +3027,7 @@ paths: tags: - education.educationClass summary: Create new navigation property to submittedResources for education + description: Read-only. Nullable. operationId: education.classes.assignments.submissions_CreateSubmittedResources parameters: - name: educationClass-id @@ -3002,6 +3073,7 @@ paths: tags: - education.educationClass summary: Get submittedResources from education + description: Read-only. Nullable. operationId: education.classes.assignments.submissions_GetSubmittedResources parameters: - name: educationClass-id @@ -3072,6 +3144,7 @@ paths: tags: - education.educationClass summary: Update the navigation property submittedResources in education + description: Read-only. Nullable. operationId: education.classes.assignments.submissions_UpdateSubmittedResources parameters: - name: educationClass-id @@ -3119,6 +3192,7 @@ paths: tags: - education.educationClass summary: Delete navigation property submittedResources for education + description: Read-only. Nullable. operationId: education.classes.assignments.submissions_DeleteSubmittedResources parameters: - name: educationClass-id @@ -3264,6 +3338,7 @@ paths: tags: - education.educationClass summary: Get group from education + description: The underlying Microsoft 365 group object. operationId: education.classes_GetGroup parameters: - name: educationClass-id @@ -3530,6 +3605,7 @@ paths: tags: - education.educationClass summary: Get ref of group from education + description: The underlying Microsoft 365 group object. operationId: education.classes_GetRefGroup parameters: - name: educationClass-id @@ -3666,6 +3742,7 @@ paths: tags: - education.educationClass summary: Update the ref of navigation property group in education + description: The underlying Microsoft 365 group object. operationId: education.classes_SetRefGroup parameters: - name: educationClass-id @@ -3694,6 +3771,7 @@ paths: tags: - education.educationClass summary: Delete ref of navigation property group for education + description: The underlying Microsoft 365 group object. operationId: education.classes_DeleteRefGroup parameters: - name: educationClass-id @@ -3719,6 +3797,7 @@ paths: tags: - education.educationClass summary: Get members from education + description: All users in the class. Nullable. operationId: education.classes_ListMembers parameters: - name: educationClass-id @@ -3906,6 +3985,7 @@ paths: tags: - education.educationClass summary: Get ref of members from education + description: All users in the class. Nullable. operationId: education.classes_ListRefMembers parameters: - name: educationClass-id @@ -4024,6 +4104,7 @@ paths: tags: - education.educationClass summary: Create new navigation property ref to members for education + description: All users in the class. Nullable. operationId: education.classes_CreateRefMembers parameters: - name: educationClass-id @@ -4085,6 +4166,7 @@ paths: tags: - education.educationClass summary: Get schools from education + description: All schools that this class is associated with. Nullable. operationId: education.classes_ListSchools parameters: - name: educationClass-id @@ -4215,6 +4297,7 @@ paths: tags: - education.educationClass summary: Get ref of schools from education + description: All schools that this class is associated with. Nullable. operationId: education.classes_ListRefSchools parameters: - name: educationClass-id @@ -4299,6 +4382,7 @@ paths: tags: - education.educationClass summary: Create new navigation property ref to schools for education + description: All schools that this class is associated with. Nullable. operationId: education.classes_CreateRefSchools parameters: - name: educationClass-id @@ -4360,6 +4444,7 @@ paths: tags: - education.educationClass summary: Get teachers from education + description: All teachers in the class. Nullable. operationId: education.classes_ListTeachers parameters: - name: educationClass-id @@ -4547,6 +4632,7 @@ paths: tags: - education.educationClass summary: Get ref of teachers from education + description: All teachers in the class. Nullable. operationId: education.classes_ListRefTeachers parameters: - name: educationClass-id @@ -4665,6 +4751,7 @@ paths: tags: - education.educationClass summary: Create new navigation property ref to teachers for education + description: All teachers in the class. Nullable. operationId: education.classes_CreateRefTeachers parameters: - name: educationClass-id @@ -4877,6 +4964,7 @@ paths: tags: - education.educationUser summary: Get assignments from education + description: List of assignments for the user. Nullable. operationId: education.me_ListAssignments parameters: - $ref: '#/components/parameters/top' @@ -4930,8 +5018,12 @@ paths: - lastModifiedDateTime desc - notificationChannelUrl - notificationChannelUrl desc + - resourcesFolderUrl + - resourcesFolderUrl desc - status - status desc + - webUrl + - webUrl desc type: string - name: $select in: query @@ -4961,7 +5053,9 @@ paths: - lastModifiedBy - lastModifiedDateTime - notificationChannelUrl + - resourcesFolderUrl - status + - webUrl - categories - resources - rubric @@ -5010,6 +5104,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to assignments for education + description: List of assignments for the user. Nullable. operationId: education.me_CreateAssignments requestBody: description: New navigation property @@ -5033,6 +5128,7 @@ paths: tags: - education.educationUser summary: Get assignments from education + description: List of assignments for the user. Nullable. operationId: education.me_GetAssignments parameters: - name: educationAssignment-id @@ -5070,7 +5166,9 @@ paths: - lastModifiedBy - lastModifiedDateTime - notificationChannelUrl + - resourcesFolderUrl - status + - webUrl - categories - resources - rubric @@ -5123,6 +5221,7 @@ paths: tags: - education.educationUser summary: Update the navigation property assignments in education + description: List of assignments for the user. Nullable. operationId: education.me_UpdateAssignments parameters: - name: educationAssignment-id @@ -5149,6 +5248,7 @@ paths: tags: - education.educationUser summary: Delete navigation property assignments for education + description: List of assignments for the user. Nullable. operationId: education.me_DeleteAssignments parameters: - name: educationAssignment-id @@ -5174,6 +5274,7 @@ paths: tags: - education.educationUser summary: Get categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.me.assignments_ListCategories parameters: - name: educationAssignment-id @@ -5255,6 +5356,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to categories for education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.me.assignments_CreateCategories parameters: - name: educationAssignment-id @@ -5286,6 +5388,7 @@ paths: tags: - education.educationUser summary: Get categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.me.assignments_GetCategories parameters: - name: educationAssignment-id @@ -5341,6 +5444,7 @@ paths: tags: - education.educationUser summary: Update the navigation property categories in education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.me.assignments_UpdateCategories parameters: - name: educationAssignment-id @@ -5374,6 +5478,7 @@ paths: tags: - education.educationUser summary: Delete navigation property categories for education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.me.assignments_DeleteCategories parameters: - name: educationAssignment-id @@ -5401,12 +5506,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl()': - get: + '/education/me/assignments/{educationAssignment-id}/microsoft.graph.publish': + post: tags: - - education.Functions - summary: Invoke function getResourcesFolderUrl - operationId: education.me.assignments_getResourcesFolderUrl + - education.Actions + summary: Invoke action publish + operationId: education.me.assignments_publish parameters: - name: educationAssignment-id in: path @@ -5421,17 +5526,16 @@ paths: content: application/json: schema: - type: string - nullable: true + $ref: '#/components/schemas/microsoft.graph.educationAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - '/education/me/assignments/{educationAssignment-id}/microsoft.graph.publish': - post: + x-ms-docs-operation-type: action + '/education/me/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder()': + get: tags: - - education.Actions - summary: Invoke action publish - operationId: education.me.assignments_publish + - education.Functions + summary: Invoke function setUpResourcesFolder + operationId: education.me.assignments_setUpResourcesFolder parameters: - name: educationAssignment-id in: path @@ -5449,12 +5553,13 @@ paths: $ref: '#/components/schemas/microsoft.graph.educationAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action + x-ms-docs-operation-type: function '/education/me/assignments/{educationAssignment-id}/resources': get: tags: - education.educationUser summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.me.assignments_ListResources parameters: - name: educationAssignment-id @@ -5539,6 +5644,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to resources for education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.me.assignments_CreateResources parameters: - name: educationAssignment-id @@ -5570,6 +5676,7 @@ paths: tags: - education.educationUser summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.me.assignments_GetResources parameters: - name: educationAssignment-id @@ -5626,6 +5733,7 @@ paths: tags: - education.educationUser summary: Update the navigation property resources in education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.me.assignments_UpdateResources parameters: - name: educationAssignment-id @@ -5659,6 +5767,7 @@ paths: tags: - education.educationUser summary: Delete navigation property resources for education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.me.assignments_DeleteResources parameters: - name: educationAssignment-id @@ -5691,6 +5800,7 @@ paths: tags: - education.educationUser summary: Get rubric from education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.me.assignments_GetRubric parameters: - name: educationAssignment-id @@ -5747,6 +5857,7 @@ paths: tags: - education.educationUser summary: Update the navigation property rubric in education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.me.assignments_UpdateRubric parameters: - name: educationAssignment-id @@ -5773,6 +5884,7 @@ paths: tags: - education.educationUser summary: Delete navigation property rubric for education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.me.assignments_DeleteRubric parameters: - name: educationAssignment-id @@ -5798,6 +5910,7 @@ paths: tags: - education.educationUser summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.me.assignments_ListSubmissions parameters: - name: educationAssignment-id @@ -5826,10 +5939,6 @@ paths: - id desc - recipient - recipient desc - - releasedBy - - releasedBy desc - - releasedDateTime - - releasedDateTime desc - resourcesFolderUrl - resourcesFolderUrl desc - returnedBy @@ -5859,8 +5968,6 @@ paths: enum: - id - recipient - - releasedBy - - releasedDateTime - resourcesFolderUrl - returnedBy - returnedDateTime @@ -5915,6 +6022,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to submissions for education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.me.assignments_CreateSubmissions parameters: - name: educationAssignment-id @@ -5946,6 +6054,7 @@ paths: tags: - education.educationUser summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.me.assignments_GetSubmissions parameters: - name: educationAssignment-id @@ -5974,8 +6083,6 @@ paths: enum: - id - recipient - - releasedBy - - releasedDateTime - resourcesFolderUrl - returnedBy - returnedDateTime @@ -6033,6 +6140,7 @@ paths: tags: - education.educationUser summary: Update the navigation property submissions in education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.me.assignments_UpdateSubmissions parameters: - name: educationAssignment-id @@ -6066,6 +6174,7 @@ paths: tags: - education.educationUser summary: Delete navigation property submissions for education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.me.assignments_DeleteSubmissions parameters: - name: educationAssignment-id @@ -6124,6 +6233,37 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder()': + get: + tags: + - education.Functions + summary: Invoke function setUpResourcesFolder + operationId: education.me.assignments.submissions_setUpResourcesFolder + parameters: + - name: educationAssignment-id + in: path + description: 'key: id of educationAssignment' + required: true + schema: + type: string + x-ms-docs-key-type: educationAssignment + - name: educationSubmission-id + in: path + description: 'key: id of educationSubmission' + required: true + schema: + type: string + x-ms-docs-key-type: educationSubmission + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.educationSubmission' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit': post: tags: @@ -6191,6 +6331,7 @@ paths: tags: - education.educationUser summary: Get outcomes from education + description: Read-Write. Nullable. operationId: education.me.assignments.submissions_ListOutcomes parameters: - name: educationAssignment-id @@ -6282,6 +6423,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to outcomes for education + description: Read-Write. Nullable. operationId: education.me.assignments.submissions_CreateOutcomes parameters: - name: educationAssignment-id @@ -6320,6 +6462,7 @@ paths: tags: - education.educationUser summary: Get outcomes from education + description: Read-Write. Nullable. operationId: education.me.assignments.submissions_GetOutcomes parameters: - name: educationAssignment-id @@ -6383,6 +6526,7 @@ paths: tags: - education.educationUser summary: Update the navigation property outcomes in education + description: Read-Write. Nullable. operationId: education.me.assignments.submissions_UpdateOutcomes parameters: - name: educationAssignment-id @@ -6423,6 +6567,7 @@ paths: tags: - education.educationUser summary: Delete navigation property outcomes for education + description: Read-Write. Nullable. operationId: education.me.assignments.submissions_DeleteOutcomes parameters: - name: educationAssignment-id @@ -6462,6 +6607,7 @@ paths: tags: - education.educationUser summary: Get resources from education + description: Nullable. operationId: education.me.assignments.submissions_ListResources parameters: - name: educationAssignment-id @@ -6553,6 +6699,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to resources for education + description: Nullable. operationId: education.me.assignments.submissions_CreateResources parameters: - name: educationAssignment-id @@ -6591,6 +6738,7 @@ paths: tags: - education.educationUser summary: Get resources from education + description: Nullable. operationId: education.me.assignments.submissions_GetResources parameters: - name: educationAssignment-id @@ -6654,6 +6802,7 @@ paths: tags: - education.educationUser summary: Update the navigation property resources in education + description: Nullable. operationId: education.me.assignments.submissions_UpdateResources parameters: - name: educationAssignment-id @@ -6694,6 +6843,7 @@ paths: tags: - education.educationUser summary: Delete navigation property resources for education + description: Nullable. operationId: education.me.assignments.submissions_DeleteResources parameters: - name: educationAssignment-id @@ -6733,6 +6883,7 @@ paths: tags: - education.educationUser summary: Get submittedResources from education + description: Read-only. Nullable. operationId: education.me.assignments.submissions_ListSubmittedResources parameters: - name: educationAssignment-id @@ -6824,6 +6975,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to submittedResources for education + description: Read-only. Nullable. operationId: education.me.assignments.submissions_CreateSubmittedResources parameters: - name: educationAssignment-id @@ -6862,6 +7014,7 @@ paths: tags: - education.educationUser summary: Get submittedResources from education + description: Read-only. Nullable. operationId: education.me.assignments.submissions_GetSubmittedResources parameters: - name: educationAssignment-id @@ -6925,6 +7078,7 @@ paths: tags: - education.educationUser summary: Update the navigation property submittedResources in education + description: Read-only. Nullable. operationId: education.me.assignments.submissions_UpdateSubmittedResources parameters: - name: educationAssignment-id @@ -6965,6 +7119,7 @@ paths: tags: - education.educationUser summary: Delete navigation property submittedResources for education + description: Read-only. Nullable. operationId: education.me.assignments.submissions_DeleteSubmittedResources parameters: - name: educationAssignment-id @@ -7004,6 +7159,7 @@ paths: tags: - education.educationUser summary: Get classes from education + description: Classes to which the user belongs. Nullable. operationId: education.me_ListClasses parameters: - $ref: '#/components/parameters/top' @@ -7128,6 +7284,7 @@ paths: tags: - education.educationUser summary: Get ref of classes from education + description: Classes to which the user belongs. Nullable. operationId: education.me_ListRefClasses parameters: - $ref: '#/components/parameters/top' @@ -7199,6 +7356,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to classes for education + description: Classes to which the user belongs. Nullable. operationId: education.me_CreateRefClasses requestBody: description: New navigation property ref value @@ -7472,6 +7630,7 @@ paths: tags: - education.educationUser summary: Get schools from education + description: Schools to which the user belongs. Nullable. operationId: education.me_ListSchools parameters: - $ref: '#/components/parameters/top' @@ -7595,6 +7754,7 @@ paths: tags: - education.educationUser summary: Get ref of schools from education + description: Schools to which the user belongs. Nullable. operationId: education.me_ListRefSchools parameters: - $ref: '#/components/parameters/top' @@ -7672,6 +7832,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to schools for education + description: Schools to which the user belongs. Nullable. operationId: education.me_CreateRefSchools requestBody: description: New navigation property ref value @@ -7717,6 +7878,7 @@ paths: tags: - education.educationUser summary: Get taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.me_ListTaughtClasses parameters: - $ref: '#/components/parameters/top' @@ -7841,6 +8003,7 @@ paths: tags: - education.educationUser summary: Get ref of taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.me_ListRefTaughtClasses parameters: - $ref: '#/components/parameters/top' @@ -7912,6 +8075,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to taughtClasses for education + description: Classes for which the user is a teacher. operationId: education.me_CreateRefTaughtClasses requestBody: description: New navigation property ref value @@ -7957,6 +8121,7 @@ paths: tags: - education.educationUser summary: Get user from education + description: The directory user corresponding to this user. operationId: education.me_GetUser parameters: - name: $select @@ -8060,6 +8225,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -8132,6 +8298,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -8216,6 +8383,8 @@ paths: operationId: education.me.User.ListScopedRoleMemberOf transitiveMemberOf: operationId: education.me.User.ListTransitiveMemberOf + transitiveReports: + operationId: education.me.User.ListTransitiveReports calendar: operationId: education.me.User.GetCalendar calendarGroups: @@ -8314,6 +8483,7 @@ paths: tags: - education.educationUser summary: Get ref of user from education + description: The directory user corresponding to this user. operationId: education.me_GetRefUser responses: '200': @@ -8353,6 +8523,8 @@ paths: operationId: education.me.User.ListScopedRoleMemberOf transitiveMemberOf: operationId: education.me.User.ListTransitiveMemberOf + transitiveReports: + operationId: education.me.User.ListTransitiveReports calendar: operationId: education.me.User.GetCalendar calendarGroups: @@ -8450,6 +8622,7 @@ paths: tags: - education.educationUser summary: Update the ref of navigation property user in education + description: The directory user corresponding to this user. operationId: education.me_SetRefUser requestBody: description: New navigation property ref values @@ -8470,6 +8643,7 @@ paths: tags: - education.educationUser summary: Delete ref of navigation property user for education + description: The directory user corresponding to this user. operationId: education.me_DeleteRefUser parameters: - name: If-Match @@ -8765,6 +8939,7 @@ paths: tags: - education.educationSchool summary: Get administrativeUnit from education + description: The underlying administrativeUnit for this school. operationId: education.schools_GetAdministrativeUnit parameters: - name: educationSchool-id @@ -8836,6 +9011,7 @@ paths: tags: - education.educationSchool summary: Get ref of administrativeUnit from education + description: The underlying administrativeUnit for this school. operationId: education.schools_GetRefAdministrativeUnit parameters: - name: educationSchool-id @@ -8872,6 +9048,7 @@ paths: tags: - education.educationSchool summary: Update the ref of navigation property administrativeUnit in education + description: The underlying administrativeUnit for this school. operationId: education.schools_SetRefAdministrativeUnit parameters: - name: educationSchool-id @@ -8900,6 +9077,7 @@ paths: tags: - education.educationSchool summary: Delete ref of navigation property administrativeUnit for education + description: The underlying administrativeUnit for this school. operationId: education.schools_DeleteRefAdministrativeUnit parameters: - name: educationSchool-id @@ -8925,6 +9103,7 @@ paths: tags: - education.educationSchool summary: Get classes from education + description: Classes taught at the school. Nullable. operationId: education.schools_ListClasses parameters: - name: educationSchool-id @@ -9056,6 +9235,7 @@ paths: tags: - education.educationSchool summary: Get ref of classes from education + description: Classes taught at the school. Nullable. operationId: education.schools_ListRefClasses parameters: - name: educationSchool-id @@ -9134,6 +9314,7 @@ paths: tags: - education.educationSchool summary: Create new navigation property ref to classes for education + description: Classes taught at the school. Nullable. operationId: education.schools_CreateRefClasses parameters: - name: educationSchool-id @@ -9195,6 +9376,7 @@ paths: tags: - education.educationSchool summary: Get users from education + description: Users in the school. Nullable. operationId: education.schools_ListUsers parameters: - name: educationSchool-id @@ -9382,6 +9564,7 @@ paths: tags: - education.educationSchool summary: Get ref of users from education + description: Users in the school. Nullable. operationId: education.schools_ListRefUsers parameters: - name: educationSchool-id @@ -9500,6 +9683,7 @@ paths: tags: - education.educationSchool summary: Create new navigation property ref to users for education + description: Users in the school. Nullable. operationId: education.schools_CreateRefUsers parameters: - name: educationSchool-id @@ -9816,6 +10000,7 @@ paths: tags: - education.educationSynchronizationProfile summary: Get errors from education + description: All errors associated with this synchronization profile. operationId: education.synchronizationProfiles_ListErrors parameters: - name: educationSynchronizationProfile-id @@ -9912,6 +10097,7 @@ paths: tags: - education.educationSynchronizationProfile summary: Create new navigation property to errors for education + description: All errors associated with this synchronization profile. operationId: education.synchronizationProfiles_CreateErrors parameters: - name: educationSynchronizationProfile-id @@ -9943,6 +10129,7 @@ paths: tags: - education.educationSynchronizationProfile summary: Get errors from education + description: All errors associated with this synchronization profile. operationId: education.synchronizationProfiles_GetErrors parameters: - name: educationSynchronizationProfile-id @@ -10003,6 +10190,7 @@ paths: tags: - education.educationSynchronizationProfile summary: Update the navigation property errors in education + description: All errors associated with this synchronization profile. operationId: education.synchronizationProfiles_UpdateErrors parameters: - name: educationSynchronizationProfile-id @@ -10036,6 +10224,7 @@ paths: tags: - education.educationSynchronizationProfile summary: Delete navigation property errors for education + description: All errors associated with this synchronization profile. operationId: education.synchronizationProfiles_DeleteErrors parameters: - name: educationSynchronizationProfile-id @@ -10179,6 +10368,7 @@ paths: tags: - education.educationSynchronizationProfile summary: Get profileStatus from education + description: The synchronization status. operationId: education.synchronizationProfiles_GetProfileStatus parameters: - name: educationSynchronizationProfile-id @@ -10229,6 +10419,7 @@ paths: tags: - education.educationSynchronizationProfile summary: Update the navigation property profileStatus in education + description: The synchronization status. operationId: education.synchronizationProfiles_UpdateProfileStatus parameters: - name: educationSynchronizationProfile-id @@ -10255,6 +10446,7 @@ paths: tags: - education.educationSynchronizationProfile summary: Delete navigation property profileStatus for education + description: The synchronization status. operationId: education.synchronizationProfiles_DeleteProfileStatus parameters: - name: educationSynchronizationProfile-id @@ -10649,6 +10841,7 @@ paths: tags: - education.educationUser summary: Get assignments from education + description: List of assignments for the user. Nullable. operationId: education.users_ListAssignments parameters: - name: educationUser-id @@ -10709,8 +10902,12 @@ paths: - lastModifiedDateTime desc - notificationChannelUrl - notificationChannelUrl desc + - resourcesFolderUrl + - resourcesFolderUrl desc - status - status desc + - webUrl + - webUrl desc type: string - name: $select in: query @@ -10740,7 +10937,9 @@ paths: - lastModifiedBy - lastModifiedDateTime - notificationChannelUrl + - resourcesFolderUrl - status + - webUrl - categories - resources - rubric @@ -10789,6 +10988,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to assignments for education + description: List of assignments for the user. Nullable. operationId: education.users_CreateAssignments parameters: - name: educationUser-id @@ -10820,6 +11020,7 @@ paths: tags: - education.educationUser summary: Get assignments from education + description: List of assignments for the user. Nullable. operationId: education.users_GetAssignments parameters: - name: educationUser-id @@ -10864,7 +11065,9 @@ paths: - lastModifiedBy - lastModifiedDateTime - notificationChannelUrl + - resourcesFolderUrl - status + - webUrl - categories - resources - rubric @@ -10921,6 +11124,7 @@ paths: tags: - education.educationUser summary: Update the navigation property assignments in education + description: List of assignments for the user. Nullable. operationId: education.users_UpdateAssignments parameters: - name: educationUser-id @@ -10954,6 +11158,7 @@ paths: tags: - education.educationUser summary: Delete navigation property assignments for education + description: List of assignments for the user. Nullable. operationId: education.users_DeleteAssignments parameters: - name: educationUser-id @@ -10986,6 +11191,7 @@ paths: tags: - education.educationUser summary: Get categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.users.assignments_ListCategories parameters: - name: educationUser-id @@ -11074,6 +11280,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to categories for education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.users.assignments_CreateCategories parameters: - name: educationUser-id @@ -11112,6 +11319,7 @@ paths: tags: - education.educationUser summary: Get categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.users.assignments_GetCategories parameters: - name: educationUser-id @@ -11174,6 +11382,7 @@ paths: tags: - education.educationUser summary: Update the navigation property categories in education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.users.assignments_UpdateCategories parameters: - name: educationUser-id @@ -11214,6 +11423,7 @@ paths: tags: - education.educationUser summary: Delete navigation property categories for education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.users.assignments_DeleteCategories parameters: - name: educationUser-id @@ -11248,12 +11458,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl()': - get: + '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.publish': + post: tags: - - education.Functions - summary: Invoke function getResourcesFolderUrl - operationId: education.users.assignments_getResourcesFolderUrl + - education.Actions + summary: Invoke action publish + operationId: education.users.assignments_publish parameters: - name: educationUser-id in: path @@ -11275,17 +11485,16 @@ paths: content: application/json: schema: - type: string - nullable: true + $ref: '#/components/schemas/microsoft.graph.educationAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.publish': - post: + x-ms-docs-operation-type: action + '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder()': + get: tags: - - education.Actions - summary: Invoke action publish - operationId: education.users.assignments_publish + - education.Functions + summary: Invoke function setUpResourcesFolder + operationId: education.users.assignments_setUpResourcesFolder parameters: - name: educationUser-id in: path @@ -11310,12 +11519,13 @@ paths: $ref: '#/components/schemas/microsoft.graph.educationAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action + x-ms-docs-operation-type: function '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources': get: tags: - education.educationUser summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.users.assignments_ListResources parameters: - name: educationUser-id @@ -11407,6 +11617,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to resources for education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.users.assignments_CreateResources parameters: - name: educationUser-id @@ -11445,6 +11656,7 @@ paths: tags: - education.educationUser summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.users.assignments_GetResources parameters: - name: educationUser-id @@ -11508,6 +11720,7 @@ paths: tags: - education.educationUser summary: Update the navigation property resources in education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.users.assignments_UpdateResources parameters: - name: educationUser-id @@ -11548,6 +11761,7 @@ paths: tags: - education.educationUser summary: Delete navigation property resources for education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.users.assignments_DeleteResources parameters: - name: educationUser-id @@ -11587,6 +11801,7 @@ paths: tags: - education.educationUser summary: Get rubric from education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.users.assignments_GetRubric parameters: - name: educationUser-id @@ -11650,6 +11865,7 @@ paths: tags: - education.educationUser summary: Update the navigation property rubric in education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.users.assignments_UpdateRubric parameters: - name: educationUser-id @@ -11683,6 +11899,7 @@ paths: tags: - education.educationUser summary: Delete navigation property rubric for education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.users.assignments_DeleteRubric parameters: - name: educationUser-id @@ -11715,6 +11932,7 @@ paths: tags: - education.educationUser summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.users.assignments_ListSubmissions parameters: - name: educationUser-id @@ -11750,10 +11968,6 @@ paths: - id desc - recipient - recipient desc - - releasedBy - - releasedBy desc - - releasedDateTime - - releasedDateTime desc - resourcesFolderUrl - resourcesFolderUrl desc - returnedBy @@ -11783,8 +11997,6 @@ paths: enum: - id - recipient - - releasedBy - - releasedDateTime - resourcesFolderUrl - returnedBy - returnedDateTime @@ -11839,6 +12051,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to submissions for education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.users.assignments_CreateSubmissions parameters: - name: educationUser-id @@ -11877,6 +12090,7 @@ paths: tags: - education.educationUser summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.users.assignments_GetSubmissions parameters: - name: educationUser-id @@ -11912,8 +12126,6 @@ paths: enum: - id - recipient - - releasedBy - - releasedDateTime - resourcesFolderUrl - returnedBy - returnedDateTime @@ -11974,6 +12186,7 @@ paths: tags: - education.educationUser summary: Update the navigation property submissions in education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.users.assignments_UpdateSubmissions parameters: - name: educationUser-id @@ -12014,6 +12227,7 @@ paths: tags: - education.educationUser summary: Delete navigation property submissions for education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.users.assignments_DeleteSubmissions parameters: - name: educationUser-id @@ -12086,6 +12300,44 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder()': + get: + tags: + - education.Functions + summary: Invoke function setUpResourcesFolder + operationId: education.users.assignments.submissions_setUpResourcesFolder + parameters: + - name: educationUser-id + in: path + description: 'key: id of educationUser' + required: true + schema: + type: string + x-ms-docs-key-type: educationUser + - name: educationAssignment-id + in: path + description: 'key: id of educationAssignment' + required: true + schema: + type: string + x-ms-docs-key-type: educationAssignment + - name: educationSubmission-id + in: path + description: 'key: id of educationSubmission' + required: true + schema: + type: string + x-ms-docs-key-type: educationSubmission + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.educationSubmission' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit': post: tags: @@ -12167,6 +12419,7 @@ paths: tags: - education.educationUser summary: Get outcomes from education + description: Read-Write. Nullable. operationId: education.users.assignments.submissions_ListOutcomes parameters: - name: educationUser-id @@ -12265,6 +12518,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to outcomes for education + description: Read-Write. Nullable. operationId: education.users.assignments.submissions_CreateOutcomes parameters: - name: educationUser-id @@ -12310,6 +12564,7 @@ paths: tags: - education.educationUser summary: Get outcomes from education + description: Read-Write. Nullable. operationId: education.users.assignments.submissions_GetOutcomes parameters: - name: educationUser-id @@ -12380,6 +12635,7 @@ paths: tags: - education.educationUser summary: Update the navigation property outcomes in education + description: Read-Write. Nullable. operationId: education.users.assignments.submissions_UpdateOutcomes parameters: - name: educationUser-id @@ -12427,6 +12683,7 @@ paths: tags: - education.educationUser summary: Delete navigation property outcomes for education + description: Read-Write. Nullable. operationId: education.users.assignments.submissions_DeleteOutcomes parameters: - name: educationUser-id @@ -12473,6 +12730,7 @@ paths: tags: - education.educationUser summary: Get resources from education + description: Nullable. operationId: education.users.assignments.submissions_ListResources parameters: - name: educationUser-id @@ -12571,6 +12829,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to resources for education + description: Nullable. operationId: education.users.assignments.submissions_CreateResources parameters: - name: educationUser-id @@ -12616,6 +12875,7 @@ paths: tags: - education.educationUser summary: Get resources from education + description: Nullable. operationId: education.users.assignments.submissions_GetResources parameters: - name: educationUser-id @@ -12686,6 +12946,7 @@ paths: tags: - education.educationUser summary: Update the navigation property resources in education + description: Nullable. operationId: education.users.assignments.submissions_UpdateResources parameters: - name: educationUser-id @@ -12733,6 +12994,7 @@ paths: tags: - education.educationUser summary: Delete navigation property resources for education + description: Nullable. operationId: education.users.assignments.submissions_DeleteResources parameters: - name: educationUser-id @@ -12779,6 +13041,7 @@ paths: tags: - education.educationUser summary: Get submittedResources from education + description: Read-only. Nullable. operationId: education.users.assignments.submissions_ListSubmittedResources parameters: - name: educationUser-id @@ -12877,6 +13140,7 @@ paths: tags: - education.educationUser summary: Create new navigation property to submittedResources for education + description: Read-only. Nullable. operationId: education.users.assignments.submissions_CreateSubmittedResources parameters: - name: educationUser-id @@ -12922,6 +13186,7 @@ paths: tags: - education.educationUser summary: Get submittedResources from education + description: Read-only. Nullable. operationId: education.users.assignments.submissions_GetSubmittedResources parameters: - name: educationUser-id @@ -12992,6 +13257,7 @@ paths: tags: - education.educationUser summary: Update the navigation property submittedResources in education + description: Read-only. Nullable. operationId: education.users.assignments.submissions_UpdateSubmittedResources parameters: - name: educationUser-id @@ -13039,6 +13305,7 @@ paths: tags: - education.educationUser summary: Delete navigation property submittedResources for education + description: Read-only. Nullable. operationId: education.users.assignments.submissions_DeleteSubmittedResources parameters: - name: educationUser-id @@ -13085,6 +13352,7 @@ paths: tags: - education.educationUser summary: Get classes from education + description: Classes to which the user belongs. Nullable. operationId: education.users_ListClasses parameters: - name: educationUser-id @@ -13216,6 +13484,7 @@ paths: tags: - education.educationUser summary: Get ref of classes from education + description: Classes to which the user belongs. Nullable. operationId: education.users_ListRefClasses parameters: - name: educationUser-id @@ -13294,6 +13563,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to classes for education + description: Classes to which the user belongs. Nullable. operationId: education.users_CreateRefClasses parameters: - name: educationUser-id @@ -13619,6 +13889,7 @@ paths: tags: - education.educationUser summary: Get schools from education + description: Schools to which the user belongs. Nullable. operationId: education.users_ListSchools parameters: - name: educationUser-id @@ -13749,6 +14020,7 @@ paths: tags: - education.educationUser summary: Get ref of schools from education + description: Schools to which the user belongs. Nullable. operationId: education.users_ListRefSchools parameters: - name: educationUser-id @@ -13833,6 +14105,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to schools for education + description: Schools to which the user belongs. Nullable. operationId: education.users_CreateRefSchools parameters: - name: educationUser-id @@ -13894,6 +14167,7 @@ paths: tags: - education.educationUser summary: Get taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.users_ListTaughtClasses parameters: - name: educationUser-id @@ -14025,6 +14299,7 @@ paths: tags: - education.educationUser summary: Get ref of taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.users_ListRefTaughtClasses parameters: - name: educationUser-id @@ -14103,6 +14378,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to taughtClasses for education + description: Classes for which the user is a teacher. operationId: education.users_CreateRefTaughtClasses parameters: - name: educationUser-id @@ -14164,6 +14440,7 @@ paths: tags: - education.educationUser summary: Get user from education + description: The directory user corresponding to this user. operationId: education.users_GetUser parameters: - name: educationUser-id @@ -14274,6 +14551,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -14346,6 +14624,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -14460,6 +14739,10 @@ paths: operationId: education.users.User.ListTransitiveMemberOf parameters: educationUser-id: $request.path.educationUser-id + transitiveReports: + operationId: education.users.User.ListTransitiveReports + parameters: + educationUser-id: $request.path.educationUser-id calendar: operationId: education.users.User.GetCalendar parameters: @@ -14648,6 +14931,7 @@ paths: tags: - education.educationUser summary: Get ref of user from education + description: The directory user corresponding to this user. operationId: education.users_GetRefUser parameters: - name: educationUser-id @@ -14725,6 +15009,10 @@ paths: operationId: education.users.User.ListTransitiveMemberOf parameters: educationUser-id: $request.path.educationUser-id + transitiveReports: + operationId: education.users.User.ListTransitiveReports + parameters: + educationUser-id: $request.path.educationUser-id calendar: operationId: education.users.User.GetCalendar parameters: @@ -14912,6 +15200,7 @@ paths: tags: - education.educationUser summary: Update the ref of navigation property user in education + description: The directory user corresponding to this user. operationId: education.users_SetRefUser parameters: - name: educationUser-id @@ -14940,6 +15229,7 @@ paths: tags: - education.educationUser summary: Delete ref of navigation property user for education + description: The directory user corresponding to this user. operationId: education.users_DeleteRefUser parameters: - name: educationUser-id @@ -14981,34 +15271,29 @@ paths: components: schemas: microsoft.graph.educationRoot: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: educationRoot - type: object - properties: - synchronizationProfiles: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationSynchronizationProfile' - classes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationClass' - description: Read-only. Nullable. - me: - $ref: '#/components/schemas/microsoft.graph.educationUser' - schools: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationSchool' - description: Read-only. Nullable. - users: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationUser' - description: Read-only. Nullable. - additionalProperties: - type: object + title: educationRoot + type: object + properties: + synchronizationProfiles: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationSynchronizationProfile' + classes: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationClass' + me: + $ref: '#/components/schemas/microsoft.graph.educationUser' + schools: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationSchool' + users: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationUser' + additionalProperties: + type: object microsoft.graph.educationClass: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -15191,8 +15476,16 @@ components: type: string description: 'Optional field to specify the URL of the channel to post the assignment publish notification. If not specified or null, defaults to the General channel. This field only applies to assignments where the assignTo value is educationAssignmentClassRecipient. Updating the notificationChannelUrl is not allowed after the assignment has been published.' nullable: true + resourcesFolderUrl: + type: string + description: Folder URL where all the file resources for this assignment are stored. + nullable: true status: $ref: '#/components/schemas/microsoft.graph.educationAssignmentStatus' + webUrl: + type: string + description: The deep link URL for the given assignment. + nullable: true categories: type: array items: @@ -15276,14 +15569,6 @@ components: properties: recipient: $ref: '#/components/schemas/microsoft.graph.educationSubmissionRecipient' - releasedBy: - $ref: '#/components/schemas/microsoft.graph.identitySet' - 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 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true resourcesFolderUrl: type: string description: Folder where all file resources for this submission need to be stored. @@ -15622,6 +15907,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -15804,6 +16090,7 @@ components: $ref: '#/components/schemas/microsoft.graph.physicalAddress' showInAddressList: type: boolean + description: 'true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false.' nullable: true student: $ref: '#/components/schemas/microsoft.graph.educationStudent' @@ -15932,7 +16219,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -15945,7 +16232,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -15957,12 +16244,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -15971,7 +16258,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -15979,7 +16266,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -15995,7 +16282,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -16011,7 +16298,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -16035,7 +16322,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -16054,11 +16341,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -16066,7 +16353,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -16113,7 +16400,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -16122,7 +16409,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -16160,15 +16447,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -16176,7 +16463,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -16305,6 +16592,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -17028,7 +17319,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -17642,7 +17933,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -17920,6 +18211,7 @@ components: $ref: '#/components/schemas/microsoft.graph.educationExternalSource' externalSourceDetail: type: string + description: The name of the external source this resources was generated from. nullable: true additionalProperties: type: object @@ -17981,7 +18273,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -18212,7 +18504,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -19024,6 +19316,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -19305,16 +19601,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -19983,11 +20279,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -20002,6 +20299,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -20011,7 +20309,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -20048,7 +20346,6 @@ components: 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: @@ -22759,53 +23056,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -22832,6 +23134,35 @@ components: additionalProperties: type: object description: Enrollment Configuration Assignment + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -23228,6 +23559,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -23421,6 +23756,19 @@ components: additionalProperties: type: object description: Logged On User + microsoft.graph.assignmentFilterEvaluationStatusDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: assignmentFilterEvaluationStatusDetails + type: object + properties: + payloadId: + type: string + description: PayloadId on which filter has been applied. + nullable: true + additionalProperties: + type: object + description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceCompliancePolicyState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -23462,19 +23810,6 @@ components: additionalProperties: type: object description: Device Compliance Policy State for a given device. - microsoft.graph.assignmentFilterEvaluationStatusDetails: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: assignmentFilterEvaluationStatusDetails - type: object - properties: - payloadId: - type: string - description: PayloadId on which filter has been applied. - nullable: true - additionalProperties: - type: object - description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceConfigurationState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -23865,10 +24200,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -24932,10 +25267,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -25006,18 +25353,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -25030,6 +25376,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -25085,7 +25432,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -25331,6 +25677,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -27175,7 +27523,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -27199,7 +27547,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -28038,7 +28386,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -28057,14 +28405,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -28073,18 +28421,18 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object microsoft.graph.deviceAndAppManagementAssignmentSource: @@ -28106,16 +28454,6 @@ components: additionalProperties: type: object description: Base type for assignment targets. - microsoft.graph.configurationManagerClientState: - title: configurationManagerClientState - enum: - - unknown - - installed - - healthy - - installFailed - - updateFailed - - communicationError - type: string microsoft.graph.actionState: title: actionState enum: @@ -28127,6 +28465,35 @@ components: - failed - notSupported type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object + microsoft.graph.configurationManagerClientState: + title: configurationManagerClientState + enum: + - unknown + - installed + - healthy + - installFailed + - updateFailed + - communicationError + type: string microsoft.graph.deviceGuardLocalSystemAuthorityCredentialGuardState: title: deviceGuardLocalSystemAuthorityCredentialGuardState enum: @@ -29138,18 +29505,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -29239,6 +29610,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -29271,6 +29647,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -29984,11 +30362,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -30242,6 +30620,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' @@ -30428,17 +30807,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -30446,9 +30830,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -30894,16 +31280,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: @@ -31198,7 +31587,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string diff --git a/openApiDocs/beta/Files.yml b/openApiDocs/beta/Files.yml index 05bcb7b528e..a71476c4758 100644 --- a/openApiDocs/beta/Files.yml +++ b/openApiDocs/beta/Files.yml @@ -332,6 +332,7 @@ paths: tags: - drives.itemActivityOLD summary: Get activities from drives + description: The list of recent activities that took place under this drive. operationId: drives_ListActivities parameters: - name: drive-id @@ -423,6 +424,7 @@ paths: tags: - drives.itemActivityOLD summary: Create new navigation property to activities for drives + description: The list of recent activities that took place under this drive. operationId: drives_CreateActivities parameters: - name: drive-id @@ -454,6 +456,7 @@ paths: tags: - drives.itemActivityOLD summary: Get activities from drives + description: The list of recent activities that took place under this drive. operationId: drives_GetActivities parameters: - name: drive-id @@ -526,6 +529,7 @@ paths: tags: - drives.itemActivityOLD summary: Update the navigation property activities in drives + description: The list of recent activities that took place under this drive. operationId: drives_UpdateActivities parameters: - name: drive-id @@ -559,6 +563,7 @@ paths: tags: - drives.itemActivityOLD summary: Delete navigation property activities for drives + description: The list of recent activities that took place under this drive. operationId: drives_DeleteActivities parameters: - name: drive-id @@ -1068,6 +1073,7 @@ paths: tags: - drives.itemActivityOLD summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.activities.listItem_ListActivities parameters: - name: drive-id @@ -1166,6 +1172,7 @@ paths: tags: - drives.itemActivityOLD summary: Create new navigation property to activities for drives + description: The list of recent activities that took place on this item. operationId: drives.activities.listItem_CreateActivities parameters: - name: drive-id @@ -1204,6 +1211,7 @@ paths: tags: - drives.itemActivityOLD summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.activities.listItem_GetActivities parameters: - name: drive-id @@ -1285,6 +1293,7 @@ paths: tags: - drives.itemActivityOLD summary: Update the navigation property activities in drives + description: The list of recent activities that took place on this item. operationId: drives.activities.listItem_UpdateActivities parameters: - name: drive-id @@ -1325,6 +1334,7 @@ paths: tags: - drives.itemActivityOLD summary: Delete navigation property activities for drives + description: The list of recent activities that took place on this item. operationId: drives.activities.listItem_DeleteActivities parameters: - name: drive-id @@ -1364,6 +1374,7 @@ paths: tags: - drives.itemActivityOLD summary: Get analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.activities.listItem_GetAnalytics parameters: - name: drive-id @@ -1441,6 +1452,7 @@ paths: tags: - drives.itemActivityOLD summary: Get ref of analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.activities.listItem_GetRefAnalytics parameters: - name: drive-id @@ -1487,6 +1499,7 @@ paths: tags: - drives.itemActivityOLD summary: Update the ref of navigation property analytics in drives + description: Analytics about the view activities that took place on this item. operationId: drives.activities.listItem_SetRefAnalytics parameters: - name: drive-id @@ -1522,6 +1535,7 @@ paths: tags: - drives.itemActivityOLD summary: Delete ref of navigation property analytics for drives + description: Analytics about the view activities that took place on this item. operationId: drives.activities.listItem_DeleteRefAnalytics parameters: - name: drive-id @@ -1554,6 +1568,7 @@ paths: tags: - drives.itemActivityOLD summary: Get driveItem from drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.activities.listItem_GetDriveItem parameters: - name: drive-id @@ -1720,6 +1735,7 @@ paths: tags: - drives.itemActivityOLD summary: Update the navigation property driveItem in drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.activities.listItem_UpdateDriveItem parameters: - name: drive-id @@ -1753,6 +1769,7 @@ paths: tags: - drives.itemActivityOLD summary: Delete navigation property driveItem for drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.activities.listItem_DeleteDriveItem parameters: - name: drive-id @@ -1851,6 +1868,7 @@ paths: tags: - drives.itemActivityOLD summary: Get fields from drives + description: The values of the columns set on this list item. operationId: drives.activities.listItem_GetFields parameters: - name: drive-id @@ -1905,6 +1923,7 @@ paths: tags: - drives.itemActivityOLD summary: Update the navigation property fields in drives + description: The values of the columns set on this list item. operationId: drives.activities.listItem_UpdateFields parameters: - name: drive-id @@ -1938,6 +1957,7 @@ paths: tags: - drives.itemActivityOLD summary: Delete navigation property fields for drives + description: The values of the columns set on this list item. operationId: drives.activities.listItem_DeleteFields parameters: - name: drive-id @@ -1995,6 +2015,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -2082,6 +2103,7 @@ paths: tags: - drives.itemActivityOLD summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.activities.listItem_ListVersions parameters: - name: drive-id @@ -2178,6 +2200,7 @@ paths: tags: - drives.itemActivityOLD summary: Create new navigation property to versions for drives + description: The list of previous versions of the list item. operationId: drives.activities.listItem_CreateVersions parameters: - name: drive-id @@ -2216,6 +2239,7 @@ paths: tags: - drives.itemActivityOLD summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.activities.listItem_GetVersions parameters: - name: drive-id @@ -2289,6 +2313,7 @@ paths: tags: - drives.itemActivityOLD summary: Update the navigation property versions in drives + description: The list of previous versions of the list item. operationId: drives.activities.listItem_UpdateVersions parameters: - name: drive-id @@ -2329,6 +2354,7 @@ paths: tags: - drives.itemActivityOLD summary: Delete navigation property versions for drives + description: The list of previous versions of the list item. operationId: drives.activities.listItem_DeleteVersions parameters: - name: drive-id @@ -2368,6 +2394,7 @@ paths: tags: - drives.itemActivityOLD summary: Get fields from drives + description: A collection of the fields and values for this version of the list item. operationId: drives.activities.listItem.versions_GetFields parameters: - name: drive-id @@ -2429,6 +2456,7 @@ paths: tags: - drives.itemActivityOLD summary: Update the navigation property fields in drives + description: A collection of the fields and values for this version of the list item. operationId: drives.activities.listItem.versions_UpdateFields parameters: - name: drive-id @@ -2469,6 +2497,7 @@ paths: tags: - drives.itemActivityOLD summary: Delete navigation property fields for drives + description: A collection of the fields and values for this version of the list item. operationId: drives.activities.listItem.versions_DeleteFields parameters: - name: drive-id @@ -2542,6 +2571,7 @@ paths: tags: - drives.driveItem summary: Get bundles from drives + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' operationId: drives_ListBundles parameters: - name: drive-id @@ -2744,6 +2774,7 @@ paths: tags: - drives.driveItem summary: Create new navigation property to bundles for drives + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' operationId: drives_CreateBundles parameters: - name: drive-id @@ -2775,6 +2806,7 @@ paths: tags: - drives.driveItem summary: Get bundles from drives + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' operationId: drives_GetBundles parameters: - name: drive-id @@ -2941,6 +2973,7 @@ paths: tags: - drives.driveItem summary: Update the navigation property bundles in drives + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' operationId: drives_UpdateBundles parameters: - name: drive-id @@ -2974,6 +3007,7 @@ paths: tags: - drives.driveItem summary: Delete navigation property bundles for drives + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' operationId: drives_DeleteBundles parameters: - name: drive-id @@ -3072,6 +3106,7 @@ paths: tags: - drives.driveItem summary: Get following from drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_ListFollowing parameters: - name: drive-id @@ -3274,6 +3309,7 @@ paths: tags: - drives.driveItem summary: Create new navigation property to following for drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_CreateFollowing parameters: - name: drive-id @@ -3305,6 +3341,7 @@ paths: tags: - drives.driveItem summary: Get following from drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_GetFollowing parameters: - name: drive-id @@ -3471,6 +3508,7 @@ paths: tags: - drives.driveItem summary: Update the navigation property following in drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_UpdateFollowing parameters: - name: drive-id @@ -3504,6 +3542,7 @@ paths: tags: - drives.driveItem summary: Delete navigation property following for drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_DeleteFollowing parameters: - name: drive-id @@ -3602,6 +3641,7 @@ paths: tags: - drives.driveItem summary: Get items from drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_ListItems parameters: - name: drive-id @@ -3804,6 +3844,7 @@ paths: tags: - drives.driveItem summary: Create new navigation property to items for drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_CreateItems parameters: - name: drive-id @@ -3835,6 +3876,7 @@ paths: tags: - drives.driveItem summary: Get items from drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_GetItems parameters: - name: drive-id @@ -4001,6 +4043,7 @@ paths: tags: - drives.driveItem summary: Update the navigation property items in drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_UpdateItems parameters: - name: drive-id @@ -4034,6 +4077,7 @@ paths: tags: - drives.driveItem summary: Delete navigation property items for drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_DeleteItems parameters: - name: drive-id @@ -4132,6 +4176,7 @@ paths: tags: - drives.list summary: Get list from drives + description: 'For drives in SharePoint, the underlying document library list. Read-only. Nullable.' operationId: drives_GetList parameters: - name: drive-id @@ -4241,6 +4286,7 @@ paths: tags: - drives.list summary: Update the navigation property list in drives + description: 'For drives in SharePoint, the underlying document library list. Read-only. Nullable.' operationId: drives_UpdateList parameters: - name: drive-id @@ -4267,6 +4313,7 @@ paths: tags: - drives.list summary: Delete navigation property list for drives + description: 'For drives in SharePoint, the underlying document library list. Read-only. Nullable.' operationId: drives_DeleteList parameters: - name: drive-id @@ -4292,6 +4339,7 @@ paths: tags: - drives.list summary: Get activities from drives + description: The recent activities that took place within this list. operationId: drives.list_ListActivities parameters: - name: drive-id @@ -4383,6 +4431,7 @@ paths: tags: - drives.list summary: Create new navigation property to activities for drives + description: The recent activities that took place within this list. operationId: drives.list_CreateActivities parameters: - name: drive-id @@ -4414,6 +4463,7 @@ paths: tags: - drives.list summary: Get activities from drives + description: The recent activities that took place within this list. operationId: drives.list_GetActivities parameters: - name: drive-id @@ -4486,6 +4536,7 @@ paths: tags: - drives.list summary: Update the navigation property activities in drives + description: The recent activities that took place within this list. operationId: drives.list_UpdateActivities parameters: - name: drive-id @@ -4519,6 +4570,7 @@ paths: tags: - drives.list summary: Delete navigation property activities for drives + description: The recent activities that took place within this list. operationId: drives.list_DeleteActivities parameters: - name: drive-id @@ -5028,6 +5080,7 @@ paths: tags: - drives.list summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.list.activities.listItem_ListActivities parameters: - name: drive-id @@ -5126,6 +5179,7 @@ paths: tags: - drives.list summary: Create new navigation property to activities for drives + description: The list of recent activities that took place on this item. operationId: drives.list.activities.listItem_CreateActivities parameters: - name: drive-id @@ -5164,6 +5218,7 @@ paths: tags: - drives.list summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.list.activities.listItem_GetActivities parameters: - name: drive-id @@ -5245,6 +5300,7 @@ paths: tags: - drives.list summary: Update the navigation property activities in drives + description: The list of recent activities that took place on this item. operationId: drives.list.activities.listItem_UpdateActivities parameters: - name: drive-id @@ -5285,6 +5341,7 @@ paths: tags: - drives.list summary: Delete navigation property activities for drives + description: The list of recent activities that took place on this item. operationId: drives.list.activities.listItem_DeleteActivities parameters: - name: drive-id @@ -5324,6 +5381,7 @@ paths: tags: - drives.list summary: Get analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.activities.listItem_GetAnalytics parameters: - name: drive-id @@ -5401,6 +5459,7 @@ paths: tags: - drives.list summary: Get ref of analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.activities.listItem_GetRefAnalytics parameters: - name: drive-id @@ -5447,6 +5506,7 @@ paths: tags: - drives.list summary: Update the ref of navigation property analytics in drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.activities.listItem_SetRefAnalytics parameters: - name: drive-id @@ -5482,6 +5542,7 @@ paths: tags: - drives.list summary: Delete ref of navigation property analytics for drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.activities.listItem_DeleteRefAnalytics parameters: - name: drive-id @@ -5514,6 +5575,7 @@ paths: tags: - drives.list summary: Get driveItem from drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.list.activities.listItem_GetDriveItem parameters: - name: drive-id @@ -5680,6 +5742,7 @@ paths: tags: - drives.list summary: Update the navigation property driveItem in drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.list.activities.listItem_UpdateDriveItem parameters: - name: drive-id @@ -5713,6 +5776,7 @@ paths: tags: - drives.list summary: Delete navigation property driveItem for drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.list.activities.listItem_DeleteDriveItem parameters: - name: drive-id @@ -5811,6 +5875,7 @@ paths: tags: - drives.list summary: Get fields from drives + description: The values of the columns set on this list item. operationId: drives.list.activities.listItem_GetFields parameters: - name: drive-id @@ -5865,6 +5930,7 @@ paths: tags: - drives.list summary: Update the navigation property fields in drives + description: The values of the columns set on this list item. operationId: drives.list.activities.listItem_UpdateFields parameters: - name: drive-id @@ -5898,6 +5964,7 @@ paths: tags: - drives.list summary: Delete navigation property fields for drives + description: The values of the columns set on this list item. operationId: drives.list.activities.listItem_DeleteFields parameters: - name: drive-id @@ -5955,6 +6022,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -6042,6 +6110,7 @@ paths: tags: - drives.list summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.list.activities.listItem_ListVersions parameters: - name: drive-id @@ -6138,6 +6207,7 @@ paths: tags: - drives.list summary: Create new navigation property to versions for drives + description: The list of previous versions of the list item. operationId: drives.list.activities.listItem_CreateVersions parameters: - name: drive-id @@ -6176,6 +6246,7 @@ paths: tags: - drives.list summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.list.activities.listItem_GetVersions parameters: - name: drive-id @@ -6249,6 +6320,7 @@ paths: tags: - drives.list summary: Update the navigation property versions in drives + description: The list of previous versions of the list item. operationId: drives.list.activities.listItem_UpdateVersions parameters: - name: drive-id @@ -6289,6 +6361,7 @@ paths: tags: - drives.list summary: Delete navigation property versions for drives + description: The list of previous versions of the list item. operationId: drives.list.activities.listItem_DeleteVersions parameters: - name: drive-id @@ -6328,6 +6401,7 @@ paths: tags: - drives.list summary: Get fields from drives + description: A collection of the fields and values for this version of the list item. operationId: drives.list.activities.listItem.versions_GetFields parameters: - name: drive-id @@ -6389,6 +6463,7 @@ paths: tags: - drives.list summary: Update the navigation property fields in drives + description: A collection of the fields and values for this version of the list item. operationId: drives.list.activities.listItem.versions_UpdateFields parameters: - name: drive-id @@ -6429,6 +6504,7 @@ paths: tags: - drives.list summary: Delete navigation property fields for drives + description: A collection of the fields and values for this version of the list item. operationId: drives.list.activities.listItem.versions_DeleteFields parameters: - name: drive-id @@ -6502,6 +6578,7 @@ paths: tags: - drives.list summary: Get columns from drives + description: The collection of field definitions for this list. operationId: drives.list_ListColumns parameters: - name: drive-id @@ -6672,6 +6749,7 @@ paths: tags: - drives.list summary: Create new navigation property to columns for drives + description: The collection of field definitions for this list. operationId: drives.list_CreateColumns parameters: - name: drive-id @@ -6703,6 +6781,7 @@ paths: tags: - drives.list summary: Get columns from drives + description: The collection of field definitions for this list. operationId: drives.list_GetColumns parameters: - name: drive-id @@ -6795,6 +6874,7 @@ paths: tags: - drives.list summary: Update the navigation property columns in drives + description: The collection of field definitions for this list. operationId: drives.list_UpdateColumns parameters: - name: drive-id @@ -6828,6 +6908,7 @@ paths: tags: - drives.list summary: Delete navigation property columns for drives + description: The collection of field definitions for this list. operationId: drives.list_DeleteColumns parameters: - name: drive-id @@ -6860,6 +6941,7 @@ paths: tags: - drives.list summary: Get sourceColumn from drives + description: The source column for content type column. operationId: drives.list.columns_GetSourceColumn parameters: - name: drive-id @@ -6953,6 +7035,7 @@ paths: tags: - drives.list summary: Get ref of sourceColumn from drives + description: The source column for content type column. operationId: drives.list.columns_GetRefSourceColumn parameters: - name: drive-id @@ -6989,6 +7072,7 @@ paths: tags: - drives.list summary: Update the ref of navigation property sourceColumn in drives + description: The source column for content type column. operationId: drives.list.columns_SetRefSourceColumn parameters: - name: drive-id @@ -7024,6 +7108,7 @@ paths: tags: - drives.list summary: Delete ref of navigation property sourceColumn for drives + description: The source column for content type column. operationId: drives.list.columns_DeleteRefSourceColumn parameters: - name: drive-id @@ -7056,6 +7141,7 @@ paths: tags: - drives.list summary: Get contentTypes from drives + description: The collection of content types present in this list. operationId: drives.list_ListContentTypes parameters: - name: drive-id @@ -7186,6 +7272,7 @@ paths: tags: - drives.list summary: Create new navigation property to contentTypes for drives + description: The collection of content types present in this list. operationId: drives.list_CreateContentTypes parameters: - name: drive-id @@ -7217,6 +7304,7 @@ paths: tags: - drives.list summary: Get contentTypes from drives + description: The collection of content types present in this list. operationId: drives.list_GetContentTypes parameters: - name: drive-id @@ -7321,6 +7409,7 @@ paths: tags: - drives.list summary: Update the navigation property contentTypes in drives + description: The collection of content types present in this list. operationId: drives.list_UpdateContentTypes parameters: - name: drive-id @@ -7354,6 +7443,7 @@ paths: tags: - drives.list summary: Delete navigation property contentTypes for drives + description: The collection of content types present in this list. operationId: drives.list_DeleteContentTypes parameters: - name: drive-id @@ -7386,6 +7476,7 @@ paths: tags: - drives.list summary: Get base from drives + description: Parent contentType from which this content type is derived. operationId: drives.list.contentTypes_GetBase parameters: - name: drive-id @@ -7491,6 +7582,7 @@ paths: tags: - drives.list summary: Get ref of base from drives + description: Parent contentType from which this content type is derived. operationId: drives.list.contentTypes_GetRefBase parameters: - name: drive-id @@ -7547,6 +7639,7 @@ paths: tags: - drives.list summary: Update the ref of navigation property base in drives + description: Parent contentType from which this content type is derived. operationId: drives.list.contentTypes_SetRefBase parameters: - name: drive-id @@ -7582,6 +7675,7 @@ paths: tags: - drives.list summary: Delete ref of navigation property base for drives + description: Parent contentType from which this content type is derived. operationId: drives.list.contentTypes_DeleteRefBase parameters: - name: drive-id @@ -7787,6 +7881,7 @@ paths: tags: - drives.list summary: Get baseTypes from drives + description: The collection of content types that are ancestors of this content type. operationId: drives.list.contentTypes_ListBaseTypes parameters: - name: drive-id @@ -7925,6 +8020,7 @@ paths: tags: - drives.list summary: Get ref of baseTypes from drives + description: The collection of content types that are ancestors of this content type. operationId: drives.list.contentTypes_ListRefBaseTypes parameters: - name: drive-id @@ -8014,6 +8110,7 @@ paths: tags: - drives.list summary: Create new navigation property ref to baseTypes for drives + description: The collection of content types that are ancestors of this content type. operationId: drives.list.contentTypes_CreateRefBaseTypes parameters: - name: drive-id @@ -8099,6 +8196,7 @@ paths: tags: - drives.list summary: Get columnLinks from drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_ListColumnLinks parameters: - name: drive-id @@ -8187,6 +8285,7 @@ paths: tags: - drives.list summary: Create new navigation property to columnLinks for drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_CreateColumnLinks parameters: - name: drive-id @@ -8225,6 +8324,7 @@ paths: tags: - drives.list summary: Get columnLinks from drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_GetColumnLinks parameters: - name: drive-id @@ -8287,6 +8387,7 @@ paths: tags: - drives.list summary: Update the navigation property columnLinks in drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_UpdateColumnLinks parameters: - name: drive-id @@ -8327,6 +8428,7 @@ paths: tags: - drives.list summary: Delete navigation property columnLinks for drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_DeleteColumnLinks parameters: - name: drive-id @@ -8366,6 +8468,7 @@ paths: tags: - drives.list summary: Get columnPositions from drives + description: Column order information in a content type. operationId: drives.list.contentTypes_ListColumnPositions parameters: - name: drive-id @@ -8544,6 +8647,7 @@ paths: tags: - drives.list summary: Get ref of columnPositions from drives + description: Column order information in a content type. operationId: drives.list.contentTypes_ListRefColumnPositions parameters: - name: drive-id @@ -8665,6 +8769,7 @@ paths: tags: - drives.list summary: Create new navigation property ref to columnPositions for drives + description: Column order information in a content type. operationId: drives.list.contentTypes_CreateRefColumnPositions parameters: - name: drive-id @@ -8707,6 +8812,7 @@ paths: tags: - drives.list summary: Get columns from drives + description: The collection of column definitions for this contentType. operationId: drives.list.contentTypes_ListColumns parameters: - name: drive-id @@ -8884,6 +8990,7 @@ paths: tags: - drives.list summary: Create new navigation property to columns for drives + description: The collection of column definitions for this contentType. operationId: drives.list.contentTypes_CreateColumns parameters: - name: drive-id @@ -8922,6 +9029,7 @@ paths: tags: - drives.list summary: Get columns from drives + description: The collection of column definitions for this contentType. operationId: drives.list.contentTypes_GetColumns parameters: - name: drive-id @@ -9022,6 +9130,7 @@ paths: tags: - drives.list summary: Update the navigation property columns in drives + description: The collection of column definitions for this contentType. operationId: drives.list.contentTypes_UpdateColumns parameters: - name: drive-id @@ -9062,6 +9171,7 @@ paths: tags: - drives.list summary: Delete navigation property columns for drives + description: The collection of column definitions for this contentType. operationId: drives.list.contentTypes_DeleteColumns parameters: - name: drive-id @@ -9101,6 +9211,7 @@ paths: tags: - drives.list summary: Get sourceColumn from drives + description: The source column for content type column. operationId: drives.list.contentTypes.columns_GetSourceColumn parameters: - name: drive-id @@ -9202,6 +9313,7 @@ paths: tags: - drives.list summary: Get ref of sourceColumn from drives + description: The source column for content type column. operationId: drives.list.contentTypes.columns_GetRefSourceColumn parameters: - name: drive-id @@ -9246,6 +9358,7 @@ paths: tags: - drives.list summary: Update the ref of navigation property sourceColumn in drives + description: The source column for content type column. operationId: drives.list.contentTypes.columns_SetRefSourceColumn parameters: - name: drive-id @@ -9288,6 +9401,7 @@ paths: tags: - drives.list summary: Delete ref of navigation property sourceColumn for drives + description: The source column for content type column. operationId: drives.list.contentTypes.columns_DeleteRefSourceColumn parameters: - name: drive-id @@ -9536,6 +9650,7 @@ paths: tags: - drives.list summary: Get drive from drives + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: drives.list_GetDrive parameters: - name: drive-id @@ -9652,6 +9767,7 @@ paths: tags: - drives.list summary: Update the navigation property drive in drives + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: drives.list_UpdateDrive parameters: - name: drive-id @@ -9678,6 +9794,7 @@ paths: tags: - drives.list summary: Delete navigation property drive for drives + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: drives.list_DeleteDrive parameters: - name: drive-id @@ -9703,6 +9820,7 @@ paths: tags: - drives.list summary: Get items from drives + description: All items contained in the list. operationId: drives.list_ListItems parameters: - name: drive-id @@ -9828,6 +9946,7 @@ paths: tags: - drives.list summary: Create new navigation property to items for drives + description: All items contained in the list. operationId: drives.list_CreateItems parameters: - name: drive-id @@ -9859,6 +9978,7 @@ paths: tags: - drives.list summary: Get items from drives + description: All items contained in the list. operationId: drives.list_GetItems parameters: - name: drive-id @@ -9974,6 +10094,7 @@ paths: tags: - drives.list summary: Update the navigation property items in drives + description: All items contained in the list. operationId: drives.list_UpdateItems parameters: - name: drive-id @@ -10007,6 +10128,7 @@ paths: tags: - drives.list summary: Delete navigation property items for drives + description: All items contained in the list. operationId: drives.list_DeleteItems parameters: - name: drive-id @@ -10039,6 +10161,7 @@ paths: tags: - drives.list summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.list.items_ListActivities parameters: - name: drive-id @@ -10137,6 +10260,7 @@ paths: tags: - drives.list summary: Create new navigation property to activities for drives + description: The list of recent activities that took place on this item. operationId: drives.list.items_CreateActivities parameters: - name: drive-id @@ -10175,6 +10299,7 @@ paths: tags: - drives.list summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.list.items_GetActivities parameters: - name: drive-id @@ -10256,6 +10381,7 @@ paths: tags: - drives.list summary: Update the navigation property activities in drives + description: The list of recent activities that took place on this item. operationId: drives.list.items_UpdateActivities parameters: - name: drive-id @@ -10296,6 +10422,7 @@ paths: tags: - drives.list summary: Delete navigation property activities for drives + description: The list of recent activities that took place on this item. operationId: drives.list.items_DeleteActivities parameters: - name: drive-id @@ -10918,6 +11045,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -11012,6 +11140,7 @@ paths: tags: - drives.list summary: Get analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.items_GetAnalytics parameters: - name: drive-id @@ -11089,6 +11218,7 @@ paths: tags: - drives.list summary: Get ref of analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.items_GetRefAnalytics parameters: - name: drive-id @@ -11135,6 +11265,7 @@ paths: tags: - drives.list summary: Update the ref of navigation property analytics in drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.items_SetRefAnalytics parameters: - name: drive-id @@ -11170,6 +11301,7 @@ paths: tags: - drives.list summary: Delete ref of navigation property analytics for drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.items_DeleteRefAnalytics parameters: - name: drive-id @@ -11202,6 +11334,7 @@ paths: tags: - drives.list summary: Get driveItem from drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.list.items_GetDriveItem parameters: - name: drive-id @@ -11368,6 +11501,7 @@ paths: tags: - drives.list summary: Update the navigation property driveItem in drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.list.items_UpdateDriveItem parameters: - name: drive-id @@ -11401,6 +11535,7 @@ paths: tags: - drives.list summary: Delete navigation property driveItem for drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.list.items_DeleteDriveItem parameters: - name: drive-id @@ -11499,6 +11634,7 @@ paths: tags: - drives.list summary: Get fields from drives + description: The values of the columns set on this list item. operationId: drives.list.items_GetFields parameters: - name: drive-id @@ -11553,6 +11689,7 @@ paths: tags: - drives.list summary: Update the navigation property fields in drives + description: The values of the columns set on this list item. operationId: drives.list.items_UpdateFields parameters: - name: drive-id @@ -11586,6 +11723,7 @@ paths: tags: - drives.list summary: Delete navigation property fields for drives + description: The values of the columns set on this list item. operationId: drives.list.items_DeleteFields parameters: - name: drive-id @@ -11643,6 +11781,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -11730,6 +11869,7 @@ paths: tags: - drives.list summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.list.items_ListVersions parameters: - name: drive-id @@ -11826,6 +11966,7 @@ paths: tags: - drives.list summary: Create new navigation property to versions for drives + description: The list of previous versions of the list item. operationId: drives.list.items_CreateVersions parameters: - name: drive-id @@ -11864,6 +12005,7 @@ paths: tags: - drives.list summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.list.items_GetVersions parameters: - name: drive-id @@ -11937,6 +12079,7 @@ paths: tags: - drives.list summary: Update the navigation property versions in drives + description: The list of previous versions of the list item. operationId: drives.list.items_UpdateVersions parameters: - name: drive-id @@ -11977,6 +12120,7 @@ paths: tags: - drives.list summary: Delete navigation property versions for drives + description: The list of previous versions of the list item. operationId: drives.list.items_DeleteVersions parameters: - name: drive-id @@ -12016,6 +12160,7 @@ paths: tags: - drives.list summary: Get fields from drives + description: A collection of the fields and values for this version of the list item. operationId: drives.list.items.versions_GetFields parameters: - name: drive-id @@ -12077,6 +12222,7 @@ paths: tags: - drives.list summary: Update the navigation property fields in drives + description: A collection of the fields and values for this version of the list item. operationId: drives.list.items.versions_UpdateFields parameters: - name: drive-id @@ -12117,6 +12263,7 @@ paths: tags: - drives.list summary: Delete navigation property fields for drives + description: A collection of the fields and values for this version of the list item. operationId: drives.list.items.versions_DeleteFields parameters: - name: drive-id @@ -12190,6 +12337,7 @@ paths: tags: - drives.list summary: Get subscriptions from drives + description: The set of subscriptions on the list. operationId: drives.list_ListSubscriptions parameters: - name: drive-id @@ -12310,6 +12458,7 @@ paths: tags: - drives.list summary: Create new navigation property to subscriptions for drives + description: The set of subscriptions on the list. operationId: drives.list_CreateSubscriptions parameters: - name: drive-id @@ -12341,6 +12490,7 @@ paths: tags: - drives.list summary: Get subscriptions from drives + description: The set of subscriptions on the list. operationId: drives.list_GetSubscriptions parameters: - name: drive-id @@ -12409,6 +12559,7 @@ paths: tags: - drives.list summary: Update the navigation property subscriptions in drives + description: The set of subscriptions on the list. operationId: drives.list_UpdateSubscriptions parameters: - name: drive-id @@ -12442,6 +12593,7 @@ paths: tags: - drives.list summary: Delete navigation property subscriptions for drives + description: The set of subscriptions on the list. operationId: drives.list_DeleteSubscriptions parameters: - name: drive-id @@ -12559,6 +12711,7 @@ paths: tags: - drives.driveItem summary: Get root from drives + description: The root folder of the drive. Read-only. operationId: drives_GetRoot parameters: - name: drive-id @@ -12707,6 +12860,7 @@ paths: tags: - drives.driveItem summary: Update the navigation property root in drives + description: The root folder of the drive. Read-only. operationId: drives_UpdateRoot parameters: - name: drive-id @@ -12733,6 +12887,7 @@ paths: tags: - drives.driveItem summary: Delete navigation property root for drives + description: The root folder of the drive. Read-only. operationId: drives_DeleteRoot parameters: - name: drive-id @@ -12810,6 +12965,7 @@ paths: tags: - drives.driveItem summary: Get special from drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_ListSpecial parameters: - name: drive-id @@ -13012,6 +13168,7 @@ paths: tags: - drives.driveItem summary: Create new navigation property to special for drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_CreateSpecial parameters: - name: drive-id @@ -13043,6 +13200,7 @@ paths: tags: - drives.driveItem summary: Get special from drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_GetSpecial parameters: - name: drive-id @@ -13209,6 +13367,7 @@ paths: tags: - drives.driveItem summary: Update the navigation property special in drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_UpdateSpecial parameters: - name: drive-id @@ -13242,6 +13401,7 @@ paths: tags: - drives.driveItem summary: Delete navigation property special for drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_DeleteSpecial parameters: - name: drive-id @@ -13340,6 +13500,7 @@ paths: tags: - groups.drive summary: Get drive from groups + description: The group's default drive. Read-only. operationId: groups_GetDrive parameters: - name: group-id @@ -13456,6 +13617,7 @@ paths: tags: - groups.drive summary: Update the navigation property drive in groups + description: The group's default drive. Read-only. operationId: groups_UpdateDrive parameters: - name: group-id @@ -13482,6 +13644,7 @@ paths: tags: - groups.drive summary: Delete navigation property drive for groups + description: The group's default drive. Read-only. operationId: groups_DeleteDrive parameters: - name: group-id @@ -13507,6 +13670,7 @@ paths: tags: - groups.drive summary: Get drives from groups + description: The group's drives. Read-only. operationId: groups_ListDrives parameters: - name: group-id @@ -13645,6 +13809,7 @@ paths: tags: - groups.drive summary: Create new navigation property to drives for groups + description: The group's drives. Read-only. operationId: groups_CreateDrives parameters: - name: group-id @@ -13676,6 +13841,7 @@ paths: tags: - groups.drive summary: Get drives from groups + description: The group's drives. Read-only. operationId: groups_GetDrives parameters: - name: group-id @@ -13808,6 +13974,7 @@ paths: tags: - groups.drive summary: Update the navigation property drives in groups + description: The group's drives. Read-only. operationId: groups_UpdateDrives parameters: - name: group-id @@ -13841,6 +14008,7 @@ paths: tags: - groups.drive summary: Delete navigation property drives for groups + description: The group's drives. Read-only. operationId: groups_DeleteDrives parameters: - name: group-id @@ -14178,6 +14346,7 @@ paths: tags: - shares.driveItem summary: Get driveItem from shares + description: Used to access the underlying driveItem operationId: shares_GetDriveItem parameters: - name: sharedDriveItem-id @@ -14326,6 +14495,7 @@ paths: tags: - shares.driveItem summary: Update the navigation property driveItem in shares + description: Used to access the underlying driveItem operationId: shares_UpdateDriveItem parameters: - name: sharedDriveItem-id @@ -14352,6 +14522,7 @@ paths: tags: - shares.driveItem summary: Delete navigation property driveItem for shares + description: Used to access the underlying driveItem operationId: shares_DeleteDriveItem parameters: - name: sharedDriveItem-id @@ -14429,6 +14600,7 @@ paths: tags: - shares.driveItem summary: Get items from shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_ListItems parameters: - name: sharedDriveItem-id @@ -14631,6 +14803,7 @@ paths: tags: - shares.driveItem summary: Create new navigation property to items for shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_CreateItems parameters: - name: sharedDriveItem-id @@ -14662,6 +14835,7 @@ paths: tags: - shares.driveItem summary: Get items from shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_GetItems parameters: - name: sharedDriveItem-id @@ -14828,6 +15002,7 @@ paths: tags: - shares.driveItem summary: Update the navigation property items in shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_UpdateItems parameters: - name: sharedDriveItem-id @@ -14861,6 +15036,7 @@ paths: tags: - shares.driveItem summary: Delete navigation property items for shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_DeleteItems parameters: - name: sharedDriveItem-id @@ -14959,6 +15135,7 @@ paths: tags: - shares.list summary: Get list from shares + description: Used to access the underlying list operationId: shares_GetList parameters: - name: sharedDriveItem-id @@ -15068,6 +15245,7 @@ paths: tags: - shares.list summary: Update the navigation property list in shares + description: Used to access the underlying list operationId: shares_UpdateList parameters: - name: sharedDriveItem-id @@ -15094,6 +15272,7 @@ paths: tags: - shares.list summary: Delete navigation property list for shares + description: Used to access the underlying list operationId: shares_DeleteList parameters: - name: sharedDriveItem-id @@ -15119,6 +15298,7 @@ paths: tags: - shares.list summary: Get activities from shares + description: The recent activities that took place within this list. operationId: shares.list_ListActivities parameters: - name: sharedDriveItem-id @@ -15210,6 +15390,7 @@ paths: tags: - shares.list summary: Create new navigation property to activities for shares + description: The recent activities that took place within this list. operationId: shares.list_CreateActivities parameters: - name: sharedDriveItem-id @@ -15241,6 +15422,7 @@ paths: tags: - shares.list summary: Get activities from shares + description: The recent activities that took place within this list. operationId: shares.list_GetActivities parameters: - name: sharedDriveItem-id @@ -15313,6 +15495,7 @@ paths: tags: - shares.list summary: Update the navigation property activities in shares + description: The recent activities that took place within this list. operationId: shares.list_UpdateActivities parameters: - name: sharedDriveItem-id @@ -15346,6 +15529,7 @@ paths: tags: - shares.list summary: Delete navigation property activities for shares + description: The recent activities that took place within this list. operationId: shares.list_DeleteActivities parameters: - name: sharedDriveItem-id @@ -15855,6 +16039,7 @@ paths: tags: - shares.list summary: Get activities from shares + description: The list of recent activities that took place on this item. operationId: shares.list.activities.listItem_ListActivities parameters: - name: sharedDriveItem-id @@ -15953,6 +16138,7 @@ paths: tags: - shares.list summary: Create new navigation property to activities for shares + description: The list of recent activities that took place on this item. operationId: shares.list.activities.listItem_CreateActivities parameters: - name: sharedDriveItem-id @@ -15991,6 +16177,7 @@ paths: tags: - shares.list summary: Get activities from shares + description: The list of recent activities that took place on this item. operationId: shares.list.activities.listItem_GetActivities parameters: - name: sharedDriveItem-id @@ -16072,6 +16259,7 @@ paths: tags: - shares.list summary: Update the navigation property activities in shares + description: The list of recent activities that took place on this item. operationId: shares.list.activities.listItem_UpdateActivities parameters: - name: sharedDriveItem-id @@ -16112,6 +16300,7 @@ paths: tags: - shares.list summary: Delete navigation property activities for shares + description: The list of recent activities that took place on this item. operationId: shares.list.activities.listItem_DeleteActivities parameters: - name: sharedDriveItem-id @@ -16151,6 +16340,7 @@ paths: tags: - shares.list summary: Get analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.activities.listItem_GetAnalytics parameters: - name: sharedDriveItem-id @@ -16228,6 +16418,7 @@ paths: tags: - shares.list summary: Get ref of analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.activities.listItem_GetRefAnalytics parameters: - name: sharedDriveItem-id @@ -16274,6 +16465,7 @@ paths: tags: - shares.list summary: Update the ref of navigation property analytics in shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.activities.listItem_SetRefAnalytics parameters: - name: sharedDriveItem-id @@ -16309,6 +16501,7 @@ paths: tags: - shares.list summary: Delete ref of navigation property analytics for shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.activities.listItem_DeleteRefAnalytics parameters: - name: sharedDriveItem-id @@ -16341,6 +16534,7 @@ paths: tags: - shares.list summary: Get driveItem from shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.list.activities.listItem_GetDriveItem parameters: - name: sharedDriveItem-id @@ -16507,6 +16701,7 @@ paths: tags: - shares.list summary: Update the navigation property driveItem in shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.list.activities.listItem_UpdateDriveItem parameters: - name: sharedDriveItem-id @@ -16540,6 +16735,7 @@ paths: tags: - shares.list summary: Delete navigation property driveItem for shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.list.activities.listItem_DeleteDriveItem parameters: - name: sharedDriveItem-id @@ -16638,6 +16834,7 @@ paths: tags: - shares.list summary: Get fields from shares + description: The values of the columns set on this list item. operationId: shares.list.activities.listItem_GetFields parameters: - name: sharedDriveItem-id @@ -16692,6 +16889,7 @@ paths: tags: - shares.list summary: Update the navigation property fields in shares + description: The values of the columns set on this list item. operationId: shares.list.activities.listItem_UpdateFields parameters: - name: sharedDriveItem-id @@ -16725,6 +16923,7 @@ paths: tags: - shares.list summary: Delete navigation property fields for shares + description: The values of the columns set on this list item. operationId: shares.list.activities.listItem_DeleteFields parameters: - name: sharedDriveItem-id @@ -16782,6 +16981,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -16869,6 +17069,7 @@ paths: tags: - shares.list summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.list.activities.listItem_ListVersions parameters: - name: sharedDriveItem-id @@ -16965,6 +17166,7 @@ paths: tags: - shares.list summary: Create new navigation property to versions for shares + description: The list of previous versions of the list item. operationId: shares.list.activities.listItem_CreateVersions parameters: - name: sharedDriveItem-id @@ -17003,6 +17205,7 @@ paths: tags: - shares.list summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.list.activities.listItem_GetVersions parameters: - name: sharedDriveItem-id @@ -17076,6 +17279,7 @@ paths: tags: - shares.list summary: Update the navigation property versions in shares + description: The list of previous versions of the list item. operationId: shares.list.activities.listItem_UpdateVersions parameters: - name: sharedDriveItem-id @@ -17116,6 +17320,7 @@ paths: tags: - shares.list summary: Delete navigation property versions for shares + description: The list of previous versions of the list item. operationId: shares.list.activities.listItem_DeleteVersions parameters: - name: sharedDriveItem-id @@ -17155,6 +17360,7 @@ paths: tags: - shares.list summary: Get fields from shares + description: A collection of the fields and values for this version of the list item. operationId: shares.list.activities.listItem.versions_GetFields parameters: - name: sharedDriveItem-id @@ -17216,6 +17422,7 @@ paths: tags: - shares.list summary: Update the navigation property fields in shares + description: A collection of the fields and values for this version of the list item. operationId: shares.list.activities.listItem.versions_UpdateFields parameters: - name: sharedDriveItem-id @@ -17256,6 +17463,7 @@ paths: tags: - shares.list summary: Delete navigation property fields for shares + description: A collection of the fields and values for this version of the list item. operationId: shares.list.activities.listItem.versions_DeleteFields parameters: - name: sharedDriveItem-id @@ -17329,6 +17537,7 @@ paths: tags: - shares.list summary: Get columns from shares + description: The collection of field definitions for this list. operationId: shares.list_ListColumns parameters: - name: sharedDriveItem-id @@ -17499,6 +17708,7 @@ paths: tags: - shares.list summary: Create new navigation property to columns for shares + description: The collection of field definitions for this list. operationId: shares.list_CreateColumns parameters: - name: sharedDriveItem-id @@ -17530,6 +17740,7 @@ paths: tags: - shares.list summary: Get columns from shares + description: The collection of field definitions for this list. operationId: shares.list_GetColumns parameters: - name: sharedDriveItem-id @@ -17622,6 +17833,7 @@ paths: tags: - shares.list summary: Update the navigation property columns in shares + description: The collection of field definitions for this list. operationId: shares.list_UpdateColumns parameters: - name: sharedDriveItem-id @@ -17655,6 +17867,7 @@ paths: tags: - shares.list summary: Delete navigation property columns for shares + description: The collection of field definitions for this list. operationId: shares.list_DeleteColumns parameters: - name: sharedDriveItem-id @@ -17687,6 +17900,7 @@ paths: tags: - shares.list summary: Get sourceColumn from shares + description: The source column for content type column. operationId: shares.list.columns_GetSourceColumn parameters: - name: sharedDriveItem-id @@ -17780,6 +17994,7 @@ paths: tags: - shares.list summary: Get ref of sourceColumn from shares + description: The source column for content type column. operationId: shares.list.columns_GetRefSourceColumn parameters: - name: sharedDriveItem-id @@ -17816,6 +18031,7 @@ paths: tags: - shares.list summary: Update the ref of navigation property sourceColumn in shares + description: The source column for content type column. operationId: shares.list.columns_SetRefSourceColumn parameters: - name: sharedDriveItem-id @@ -17851,6 +18067,7 @@ paths: tags: - shares.list summary: Delete ref of navigation property sourceColumn for shares + description: The source column for content type column. operationId: shares.list.columns_DeleteRefSourceColumn parameters: - name: sharedDriveItem-id @@ -17883,6 +18100,7 @@ paths: tags: - shares.list summary: Get contentTypes from shares + description: The collection of content types present in this list. operationId: shares.list_ListContentTypes parameters: - name: sharedDriveItem-id @@ -18013,6 +18231,7 @@ paths: tags: - shares.list summary: Create new navigation property to contentTypes for shares + description: The collection of content types present in this list. operationId: shares.list_CreateContentTypes parameters: - name: sharedDriveItem-id @@ -18044,6 +18263,7 @@ paths: tags: - shares.list summary: Get contentTypes from shares + description: The collection of content types present in this list. operationId: shares.list_GetContentTypes parameters: - name: sharedDriveItem-id @@ -18148,6 +18368,7 @@ paths: tags: - shares.list summary: Update the navigation property contentTypes in shares + description: The collection of content types present in this list. operationId: shares.list_UpdateContentTypes parameters: - name: sharedDriveItem-id @@ -18181,6 +18402,7 @@ paths: tags: - shares.list summary: Delete navigation property contentTypes for shares + description: The collection of content types present in this list. operationId: shares.list_DeleteContentTypes parameters: - name: sharedDriveItem-id @@ -18213,6 +18435,7 @@ paths: tags: - shares.list summary: Get base from shares + description: Parent contentType from which this content type is derived. operationId: shares.list.contentTypes_GetBase parameters: - name: sharedDriveItem-id @@ -18318,6 +18541,7 @@ paths: tags: - shares.list summary: Get ref of base from shares + description: Parent contentType from which this content type is derived. operationId: shares.list.contentTypes_GetRefBase parameters: - name: sharedDriveItem-id @@ -18374,6 +18598,7 @@ paths: tags: - shares.list summary: Update the ref of navigation property base in shares + description: Parent contentType from which this content type is derived. operationId: shares.list.contentTypes_SetRefBase parameters: - name: sharedDriveItem-id @@ -18409,6 +18634,7 @@ paths: tags: - shares.list summary: Delete ref of navigation property base for shares + description: Parent contentType from which this content type is derived. operationId: shares.list.contentTypes_DeleteRefBase parameters: - name: sharedDriveItem-id @@ -18614,6 +18840,7 @@ paths: tags: - shares.list summary: Get baseTypes from shares + description: The collection of content types that are ancestors of this content type. operationId: shares.list.contentTypes_ListBaseTypes parameters: - name: sharedDriveItem-id @@ -18752,6 +18979,7 @@ paths: tags: - shares.list summary: Get ref of baseTypes from shares + description: The collection of content types that are ancestors of this content type. operationId: shares.list.contentTypes_ListRefBaseTypes parameters: - name: sharedDriveItem-id @@ -18841,6 +19069,7 @@ paths: tags: - shares.list summary: Create new navigation property ref to baseTypes for shares + description: The collection of content types that are ancestors of this content type. operationId: shares.list.contentTypes_CreateRefBaseTypes parameters: - name: sharedDriveItem-id @@ -18926,6 +19155,7 @@ paths: tags: - shares.list summary: Get columnLinks from shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_ListColumnLinks parameters: - name: sharedDriveItem-id @@ -19014,6 +19244,7 @@ paths: tags: - shares.list summary: Create new navigation property to columnLinks for shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_CreateColumnLinks parameters: - name: sharedDriveItem-id @@ -19052,6 +19283,7 @@ paths: tags: - shares.list summary: Get columnLinks from shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_GetColumnLinks parameters: - name: sharedDriveItem-id @@ -19114,6 +19346,7 @@ paths: tags: - shares.list summary: Update the navigation property columnLinks in shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_UpdateColumnLinks parameters: - name: sharedDriveItem-id @@ -19154,6 +19387,7 @@ paths: tags: - shares.list summary: Delete navigation property columnLinks for shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_DeleteColumnLinks parameters: - name: sharedDriveItem-id @@ -19193,6 +19427,7 @@ paths: tags: - shares.list summary: Get columnPositions from shares + description: Column order information in a content type. operationId: shares.list.contentTypes_ListColumnPositions parameters: - name: sharedDriveItem-id @@ -19371,6 +19606,7 @@ paths: tags: - shares.list summary: Get ref of columnPositions from shares + description: Column order information in a content type. operationId: shares.list.contentTypes_ListRefColumnPositions parameters: - name: sharedDriveItem-id @@ -19492,6 +19728,7 @@ paths: tags: - shares.list summary: Create new navigation property ref to columnPositions for shares + description: Column order information in a content type. operationId: shares.list.contentTypes_CreateRefColumnPositions parameters: - name: sharedDriveItem-id @@ -19534,6 +19771,7 @@ paths: tags: - shares.list summary: Get columns from shares + description: The collection of column definitions for this contentType. operationId: shares.list.contentTypes_ListColumns parameters: - name: sharedDriveItem-id @@ -19711,6 +19949,7 @@ paths: tags: - shares.list summary: Create new navigation property to columns for shares + description: The collection of column definitions for this contentType. operationId: shares.list.contentTypes_CreateColumns parameters: - name: sharedDriveItem-id @@ -19749,6 +19988,7 @@ paths: tags: - shares.list summary: Get columns from shares + description: The collection of column definitions for this contentType. operationId: shares.list.contentTypes_GetColumns parameters: - name: sharedDriveItem-id @@ -19849,6 +20089,7 @@ paths: tags: - shares.list summary: Update the navigation property columns in shares + description: The collection of column definitions for this contentType. operationId: shares.list.contentTypes_UpdateColumns parameters: - name: sharedDriveItem-id @@ -19889,6 +20130,7 @@ paths: tags: - shares.list summary: Delete navigation property columns for shares + description: The collection of column definitions for this contentType. operationId: shares.list.contentTypes_DeleteColumns parameters: - name: sharedDriveItem-id @@ -19928,6 +20170,7 @@ paths: tags: - shares.list summary: Get sourceColumn from shares + description: The source column for content type column. operationId: shares.list.contentTypes.columns_GetSourceColumn parameters: - name: sharedDriveItem-id @@ -20029,6 +20272,7 @@ paths: tags: - shares.list summary: Get ref of sourceColumn from shares + description: The source column for content type column. operationId: shares.list.contentTypes.columns_GetRefSourceColumn parameters: - name: sharedDriveItem-id @@ -20073,6 +20317,7 @@ paths: tags: - shares.list summary: Update the ref of navigation property sourceColumn in shares + description: The source column for content type column. operationId: shares.list.contentTypes.columns_SetRefSourceColumn parameters: - name: sharedDriveItem-id @@ -20115,6 +20360,7 @@ paths: tags: - shares.list summary: Delete ref of navigation property sourceColumn for shares + description: The source column for content type column. operationId: shares.list.contentTypes.columns_DeleteRefSourceColumn parameters: - name: sharedDriveItem-id @@ -20363,6 +20609,7 @@ paths: tags: - shares.list summary: Get drive from shares + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: shares.list_GetDrive parameters: - name: sharedDriveItem-id @@ -20479,6 +20726,7 @@ paths: tags: - shares.list summary: Update the navigation property drive in shares + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: shares.list_UpdateDrive parameters: - name: sharedDriveItem-id @@ -20505,6 +20753,7 @@ paths: tags: - shares.list summary: Delete navigation property drive for shares + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: shares.list_DeleteDrive parameters: - name: sharedDriveItem-id @@ -20530,6 +20779,7 @@ paths: tags: - shares.list summary: Get items from shares + description: All items contained in the list. operationId: shares.list_ListItems parameters: - name: sharedDriveItem-id @@ -20655,6 +20905,7 @@ paths: tags: - shares.list summary: Create new navigation property to items for shares + description: All items contained in the list. operationId: shares.list_CreateItems parameters: - name: sharedDriveItem-id @@ -20686,6 +20937,7 @@ paths: tags: - shares.list summary: Get items from shares + description: All items contained in the list. operationId: shares.list_GetItems parameters: - name: sharedDriveItem-id @@ -20801,6 +21053,7 @@ paths: tags: - shares.list summary: Update the navigation property items in shares + description: All items contained in the list. operationId: shares.list_UpdateItems parameters: - name: sharedDriveItem-id @@ -20834,6 +21087,7 @@ paths: tags: - shares.list summary: Delete navigation property items for shares + description: All items contained in the list. operationId: shares.list_DeleteItems parameters: - name: sharedDriveItem-id @@ -20866,6 +21120,7 @@ paths: tags: - shares.list summary: Get activities from shares + description: The list of recent activities that took place on this item. operationId: shares.list.items_ListActivities parameters: - name: sharedDriveItem-id @@ -20964,6 +21219,7 @@ paths: tags: - shares.list summary: Create new navigation property to activities for shares + description: The list of recent activities that took place on this item. operationId: shares.list.items_CreateActivities parameters: - name: sharedDriveItem-id @@ -21002,6 +21258,7 @@ paths: tags: - shares.list summary: Get activities from shares + description: The list of recent activities that took place on this item. operationId: shares.list.items_GetActivities parameters: - name: sharedDriveItem-id @@ -21083,6 +21340,7 @@ paths: tags: - shares.list summary: Update the navigation property activities in shares + description: The list of recent activities that took place on this item. operationId: shares.list.items_UpdateActivities parameters: - name: sharedDriveItem-id @@ -21123,6 +21381,7 @@ paths: tags: - shares.list summary: Delete navigation property activities for shares + description: The list of recent activities that took place on this item. operationId: shares.list.items_DeleteActivities parameters: - name: sharedDriveItem-id @@ -21745,6 +22004,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -21839,6 +22099,7 @@ paths: tags: - shares.list summary: Get analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.items_GetAnalytics parameters: - name: sharedDriveItem-id @@ -21916,6 +22177,7 @@ paths: tags: - shares.list summary: Get ref of analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.items_GetRefAnalytics parameters: - name: sharedDriveItem-id @@ -21962,6 +22224,7 @@ paths: tags: - shares.list summary: Update the ref of navigation property analytics in shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.items_SetRefAnalytics parameters: - name: sharedDriveItem-id @@ -21997,6 +22260,7 @@ paths: tags: - shares.list summary: Delete ref of navigation property analytics for shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.items_DeleteRefAnalytics parameters: - name: sharedDriveItem-id @@ -22029,6 +22293,7 @@ paths: tags: - shares.list summary: Get driveItem from shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.list.items_GetDriveItem parameters: - name: sharedDriveItem-id @@ -22195,6 +22460,7 @@ paths: tags: - shares.list summary: Update the navigation property driveItem in shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.list.items_UpdateDriveItem parameters: - name: sharedDriveItem-id @@ -22228,6 +22494,7 @@ paths: tags: - shares.list summary: Delete navigation property driveItem for shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.list.items_DeleteDriveItem parameters: - name: sharedDriveItem-id @@ -22326,6 +22593,7 @@ paths: tags: - shares.list summary: Get fields from shares + description: The values of the columns set on this list item. operationId: shares.list.items_GetFields parameters: - name: sharedDriveItem-id @@ -22380,6 +22648,7 @@ paths: tags: - shares.list summary: Update the navigation property fields in shares + description: The values of the columns set on this list item. operationId: shares.list.items_UpdateFields parameters: - name: sharedDriveItem-id @@ -22413,6 +22682,7 @@ paths: tags: - shares.list summary: Delete navigation property fields for shares + description: The values of the columns set on this list item. operationId: shares.list.items_DeleteFields parameters: - name: sharedDriveItem-id @@ -22470,6 +22740,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -22557,6 +22828,7 @@ paths: tags: - shares.list summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.list.items_ListVersions parameters: - name: sharedDriveItem-id @@ -22653,6 +22925,7 @@ paths: tags: - shares.list summary: Create new navigation property to versions for shares + description: The list of previous versions of the list item. operationId: shares.list.items_CreateVersions parameters: - name: sharedDriveItem-id @@ -22691,6 +22964,7 @@ paths: tags: - shares.list summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.list.items_GetVersions parameters: - name: sharedDriveItem-id @@ -22764,6 +23038,7 @@ paths: tags: - shares.list summary: Update the navigation property versions in shares + description: The list of previous versions of the list item. operationId: shares.list.items_UpdateVersions parameters: - name: sharedDriveItem-id @@ -22804,6 +23079,7 @@ paths: tags: - shares.list summary: Delete navigation property versions for shares + description: The list of previous versions of the list item. operationId: shares.list.items_DeleteVersions parameters: - name: sharedDriveItem-id @@ -22843,6 +23119,7 @@ paths: tags: - shares.list summary: Get fields from shares + description: A collection of the fields and values for this version of the list item. operationId: shares.list.items.versions_GetFields parameters: - name: sharedDriveItem-id @@ -22904,6 +23181,7 @@ paths: tags: - shares.list summary: Update the navigation property fields in shares + description: A collection of the fields and values for this version of the list item. operationId: shares.list.items.versions_UpdateFields parameters: - name: sharedDriveItem-id @@ -22944,6 +23222,7 @@ paths: tags: - shares.list summary: Delete navigation property fields for shares + description: A collection of the fields and values for this version of the list item. operationId: shares.list.items.versions_DeleteFields parameters: - name: sharedDriveItem-id @@ -23017,6 +23296,7 @@ paths: tags: - shares.list summary: Get subscriptions from shares + description: The set of subscriptions on the list. operationId: shares.list_ListSubscriptions parameters: - name: sharedDriveItem-id @@ -23137,6 +23417,7 @@ paths: tags: - shares.list summary: Create new navigation property to subscriptions for shares + description: The set of subscriptions on the list. operationId: shares.list_CreateSubscriptions parameters: - name: sharedDriveItem-id @@ -23168,6 +23449,7 @@ paths: tags: - shares.list summary: Get subscriptions from shares + description: The set of subscriptions on the list. operationId: shares.list_GetSubscriptions parameters: - name: sharedDriveItem-id @@ -23236,6 +23518,7 @@ paths: tags: - shares.list summary: Update the navigation property subscriptions in shares + description: The set of subscriptions on the list. operationId: shares.list_UpdateSubscriptions parameters: - name: sharedDriveItem-id @@ -23269,6 +23552,7 @@ paths: tags: - shares.list summary: Delete navigation property subscriptions for shares + description: The set of subscriptions on the list. operationId: shares.list_DeleteSubscriptions parameters: - name: sharedDriveItem-id @@ -23301,6 +23585,7 @@ paths: tags: - shares.listItem summary: Get listItem from shares + description: Used to access the underlying listItem operationId: shares_GetListItem parameters: - name: sharedDriveItem-id @@ -23402,6 +23687,7 @@ paths: tags: - shares.listItem summary: Update the navigation property listItem in shares + description: Used to access the underlying listItem operationId: shares_UpdateListItem parameters: - name: sharedDriveItem-id @@ -23428,6 +23714,7 @@ paths: tags: - shares.listItem summary: Delete navigation property listItem for shares + description: Used to access the underlying listItem operationId: shares_DeleteListItem parameters: - name: sharedDriveItem-id @@ -23453,6 +23740,7 @@ paths: tags: - shares.listItem summary: Get activities from shares + description: The list of recent activities that took place on this item. operationId: shares.listItem_ListActivities parameters: - name: sharedDriveItem-id @@ -23544,6 +23832,7 @@ paths: tags: - shares.listItem summary: Create new navigation property to activities for shares + description: The list of recent activities that took place on this item. operationId: shares.listItem_CreateActivities parameters: - name: sharedDriveItem-id @@ -23575,6 +23864,7 @@ paths: tags: - shares.listItem summary: Get activities from shares + description: The list of recent activities that took place on this item. operationId: shares.listItem_GetActivities parameters: - name: sharedDriveItem-id @@ -23647,6 +23937,7 @@ paths: tags: - shares.listItem summary: Update the navigation property activities in shares + description: The list of recent activities that took place on this item. operationId: shares.listItem_UpdateActivities parameters: - name: sharedDriveItem-id @@ -23680,6 +23971,7 @@ paths: tags: - shares.listItem summary: Delete navigation property activities for shares + description: The list of recent activities that took place on this item. operationId: shares.listItem_DeleteActivities parameters: - name: sharedDriveItem-id @@ -24214,6 +24506,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -24301,6 +24594,7 @@ paths: tags: - shares.listItem summary: Get analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.listItem_GetAnalytics parameters: - name: sharedDriveItem-id @@ -24368,6 +24662,7 @@ paths: tags: - shares.listItem summary: Get ref of analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.listItem_GetRefAnalytics parameters: - name: sharedDriveItem-id @@ -24404,6 +24699,7 @@ paths: tags: - shares.listItem summary: Update the ref of navigation property analytics in shares + description: Analytics about the view activities that took place on this item. operationId: shares.listItem_SetRefAnalytics parameters: - name: sharedDriveItem-id @@ -24432,6 +24728,7 @@ paths: tags: - shares.listItem summary: Delete ref of navigation property analytics for shares + description: Analytics about the view activities that took place on this item. operationId: shares.listItem_DeleteRefAnalytics parameters: - name: sharedDriveItem-id @@ -24457,6 +24754,7 @@ paths: tags: - shares.listItem summary: Get driveItem from shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.listItem_GetDriveItem parameters: - name: sharedDriveItem-id @@ -24605,6 +24903,7 @@ paths: tags: - shares.listItem summary: Update the navigation property driveItem in shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.listItem_UpdateDriveItem parameters: - name: sharedDriveItem-id @@ -24631,6 +24930,7 @@ paths: tags: - shares.listItem summary: Delete navigation property driveItem for shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.listItem_DeleteDriveItem parameters: - name: sharedDriveItem-id @@ -24708,6 +25008,7 @@ paths: tags: - shares.listItem summary: Get fields from shares + description: The values of the columns set on this list item. operationId: shares.listItem_GetFields parameters: - name: sharedDriveItem-id @@ -24755,6 +25056,7 @@ paths: tags: - shares.listItem summary: Update the navigation property fields in shares + description: The values of the columns set on this list item. operationId: shares.listItem_UpdateFields parameters: - name: sharedDriveItem-id @@ -24781,6 +25083,7 @@ paths: tags: - shares.listItem summary: Delete navigation property fields for shares + description: The values of the columns set on this list item. operationId: shares.listItem_DeleteFields parameters: - name: sharedDriveItem-id @@ -24824,6 +25127,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -24904,6 +25208,7 @@ paths: tags: - shares.listItem summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.listItem_ListVersions parameters: - name: sharedDriveItem-id @@ -24993,6 +25298,7 @@ paths: tags: - shares.listItem summary: Create new navigation property to versions for shares + description: The list of previous versions of the list item. operationId: shares.listItem_CreateVersions parameters: - name: sharedDriveItem-id @@ -25024,6 +25330,7 @@ paths: tags: - shares.listItem summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.listItem_GetVersions parameters: - name: sharedDriveItem-id @@ -25089,6 +25396,7 @@ paths: tags: - shares.listItem summary: Update the navigation property versions in shares + description: The list of previous versions of the list item. operationId: shares.listItem_UpdateVersions parameters: - name: sharedDriveItem-id @@ -25122,6 +25430,7 @@ paths: tags: - shares.listItem summary: Delete navigation property versions for shares + description: The list of previous versions of the list item. operationId: shares.listItem_DeleteVersions parameters: - name: sharedDriveItem-id @@ -25154,6 +25463,7 @@ paths: tags: - shares.listItem summary: Get fields from shares + description: A collection of the fields and values for this version of the list item. operationId: shares.listItem.versions_GetFields parameters: - name: sharedDriveItem-id @@ -25208,6 +25518,7 @@ paths: tags: - shares.listItem summary: Update the navigation property fields in shares + description: A collection of the fields and values for this version of the list item. operationId: shares.listItem.versions_UpdateFields parameters: - name: sharedDriveItem-id @@ -25241,6 +25552,7 @@ paths: tags: - shares.listItem summary: Delete navigation property fields for shares + description: A collection of the fields and values for this version of the list item. operationId: shares.listItem.versions_DeleteFields parameters: - name: sharedDriveItem-id @@ -25300,6 +25612,7 @@ paths: tags: - shares.permission summary: Get permission from shares + description: Used to access the permission representing the underlying sharing link operationId: shares_GetPermission parameters: - name: sharedDriveItem-id @@ -25356,6 +25669,7 @@ paths: tags: - shares.permission summary: Update the navigation property permission in shares + description: Used to access the permission representing the underlying sharing link operationId: shares_UpdatePermission parameters: - name: sharedDriveItem-id @@ -25382,6 +25696,7 @@ paths: tags: - shares.permission summary: Delete navigation property permission for shares + description: Used to access the permission representing the underlying sharing link operationId: shares_DeletePermission parameters: - name: sharedDriveItem-id @@ -25490,6 +25805,7 @@ paths: tags: - shares.driveItem summary: Get root from shares + description: Used to access the underlying driveItem. Deprecated -- use driveItem instead. operationId: shares_GetRoot parameters: - name: sharedDriveItem-id @@ -25638,6 +25954,7 @@ paths: tags: - shares.driveItem summary: Update the navigation property root in shares + description: Used to access the underlying driveItem. Deprecated -- use driveItem instead. operationId: shares_UpdateRoot parameters: - name: sharedDriveItem-id @@ -25664,6 +25981,7 @@ paths: tags: - shares.driveItem summary: Delete navigation property root for shares + description: Used to access the underlying driveItem. Deprecated -- use driveItem instead. operationId: shares_DeleteRoot parameters: - name: sharedDriveItem-id @@ -25741,6 +26059,7 @@ paths: tags: - shares.site summary: Get site from shares + description: Used to access the underlying site operationId: shares_GetSite parameters: - name: sharedDriveItem-id @@ -25893,6 +26212,7 @@ paths: tags: - shares.site summary: Update the navigation property site in shares + description: Used to access the underlying site operationId: shares_UpdateSite parameters: - name: sharedDriveItem-id @@ -25919,6 +26239,7 @@ paths: tags: - shares.site summary: Delete navigation property site for shares + description: Used to access the underlying site operationId: shares_DeleteSite parameters: - name: sharedDriveItem-id @@ -25944,6 +26265,7 @@ paths: tags: - users.drive summary: Get drive from users + description: The user's OneDrive. Read-only. operationId: users_GetDrive parameters: - name: user-id @@ -26060,6 +26382,7 @@ paths: tags: - users.drive summary: Update the navigation property drive in users + description: The user's OneDrive. Read-only. operationId: users_UpdateDrive parameters: - name: user-id @@ -26086,6 +26409,7 @@ paths: tags: - users.drive summary: Delete navigation property drive for users + description: The user's OneDrive. Read-only. operationId: users_DeleteDrive parameters: - name: user-id @@ -26111,6 +26435,7 @@ paths: tags: - users.drive summary: Get drives from users + description: A collection of drives available for this user. Read-only. operationId: users_ListDrives parameters: - name: user-id @@ -26249,6 +26574,7 @@ paths: tags: - users.drive summary: Create new navigation property to drives for users + description: A collection of drives available for this user. Read-only. operationId: users_CreateDrives parameters: - name: user-id @@ -26280,6 +26606,7 @@ paths: tags: - users.drive summary: Get drives from users + description: A collection of drives available for this user. Read-only. operationId: users_GetDrives parameters: - name: user-id @@ -26412,6 +26739,7 @@ paths: tags: - users.drive summary: Update the navigation property drives in users + description: A collection of drives available for this user. Read-only. operationId: users_UpdateDrives parameters: - name: user-id @@ -26445,6 +26773,7 @@ paths: tags: - users.drive summary: Delete navigation property drives for users + description: A collection of drives available for this user. Read-only. operationId: users_DeleteDrives parameters: - name: user-id @@ -28598,7 +28927,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -28611,7 +28940,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -28623,12 +28952,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -28637,7 +28966,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -28645,7 +28974,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -28661,7 +28990,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -28677,7 +29006,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -28701,7 +29030,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -28720,11 +29049,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -28732,7 +29061,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -28779,7 +29108,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -28788,7 +29117,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -28826,15 +29155,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -28842,7 +29171,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -28971,6 +29300,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -30016,7 +30349,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -30350,7 +30683,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -31149,6 +31482,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -31766,6 +32100,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -32047,16 +32385,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -32747,11 +33085,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -32766,6 +33105,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -32775,7 +33115,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -32812,7 +33152,6 @@ components: 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: @@ -33016,7 +33355,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -33333,11 +33672,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -34350,7 +34689,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -34914,53 +35253,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -34987,6 +35331,35 @@ components: additionalProperties: type: object description: Enrollment Configuration Assignment + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -35383,6 +35756,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -35576,6 +35953,19 @@ components: additionalProperties: type: object description: Logged On User + microsoft.graph.assignmentFilterEvaluationStatusDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: assignmentFilterEvaluationStatusDetails + type: object + properties: + payloadId: + type: string + description: PayloadId on which filter has been applied. + nullable: true + additionalProperties: + type: object + description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceCompliancePolicyState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -35617,19 +36007,6 @@ components: additionalProperties: type: object description: Device Compliance Policy State for a given device. - microsoft.graph.assignmentFilterEvaluationStatusDetails: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: assignmentFilterEvaluationStatusDetails - type: object - properties: - payloadId: - type: string - description: PayloadId on which filter has been applied. - nullable: true - additionalProperties: - type: object - description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceConfigurationState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -36020,10 +36397,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -37121,10 +37498,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -37195,18 +37584,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -37219,6 +37607,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -37274,7 +37663,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -37556,6 +37944,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -38257,7 +38647,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string @@ -39099,7 +39489,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -39118,14 +39508,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -39134,18 +39524,18 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object microsoft.graph.deviceAndAppManagementAssignmentSource: @@ -39167,16 +39557,6 @@ components: additionalProperties: type: object description: Base type for assignment targets. - microsoft.graph.configurationManagerClientState: - title: configurationManagerClientState - enum: - - unknown - - installed - - healthy - - installFailed - - updateFailed - - communicationError - type: string microsoft.graph.actionState: title: actionState enum: @@ -39188,6 +39568,35 @@ components: - failed - notSupported type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object + microsoft.graph.configurationManagerClientState: + title: configurationManagerClientState + enum: + - unknown + - installed + - healthy + - installFailed + - updateFailed + - communicationError + type: string microsoft.graph.deviceGuardLocalSystemAuthorityCredentialGuardState: title: deviceGuardLocalSystemAuthorityCredentialGuardState enum: @@ -40256,18 +40665,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -40346,7 +40759,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -40370,7 +40783,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -40428,6 +40841,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -40460,6 +40878,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -41065,17 +41485,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -41083,9 +41508,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -41687,16 +42114,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: @@ -41740,6 +42170,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' diff --git a/openApiDocs/beta/Groups.yml b/openApiDocs/beta/Groups.yml index 64776248bf1..dc2f40edbdd 100644 --- a/openApiDocs/beta/Groups.yml +++ b/openApiDocs/beta/Groups.yml @@ -322,10 +322,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -625,6 +624,7 @@ paths: tags: - groups.group summary: Get entity from groups by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: groups.group_GetGroup parameters: - name: group-id @@ -636,10 +636,9 @@ paths: x-ms-docs-key-type: group - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -900,6 +899,7 @@ paths: tags: - groups.group summary: Update entity in groups + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: groups.group_UpdateGroup parameters: - name: group-id @@ -926,6 +926,7 @@ paths: tags: - groups.group summary: Delete entity from groups + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: groups.group_DeleteGroup parameters: - name: group-id @@ -951,6 +952,7 @@ paths: tags: - groups.directoryObject summary: Get acceptedSenders from groups + description: The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. operationId: groups_ListAcceptedSenders parameters: - name: group-id @@ -1033,6 +1035,7 @@ paths: tags: - groups.directoryObject summary: Get ref of acceptedSenders from groups + description: The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. operationId: groups_ListRefAcceptedSenders parameters: - name: group-id @@ -1089,6 +1092,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to acceptedSenders for groups + description: The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. operationId: groups_CreateRefAcceptedSenders parameters: - name: group-id @@ -5463,6 +5467,7 @@ paths: tags: - groups.conversation summary: Get conversations from groups + description: The group's conversations. operationId: groups_ListConversations parameters: - name: group-id @@ -5558,6 +5563,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to conversations for groups + description: The group's conversations. operationId: groups_CreateConversations parameters: - name: group-id @@ -5589,6 +5595,7 @@ paths: tags: - groups.conversation summary: Get conversations from groups + description: The group's conversations. operationId: groups_GetConversations parameters: - name: group-id @@ -5656,6 +5663,7 @@ paths: tags: - groups.conversation summary: Update the navigation property conversations in groups + description: The group's conversations. operationId: groups_UpdateConversations parameters: - name: group-id @@ -5689,6 +5697,7 @@ paths: tags: - groups.conversation summary: Delete navigation property conversations for groups + description: The group's conversations. operationId: groups_DeleteConversations parameters: - name: group-id @@ -5721,6 +5730,7 @@ paths: tags: - groups.conversation summary: Get threads from groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_ListThreads parameters: - name: group-id @@ -5832,6 +5842,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to threads for groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_CreateThreads parameters: - name: group-id @@ -5870,6 +5881,7 @@ paths: tags: - groups.conversation summary: Get threads from groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_GetThreads parameters: - name: group-id @@ -5948,6 +5960,7 @@ paths: tags: - groups.conversation summary: Update the navigation property threads in groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_UpdateThreads parameters: - name: group-id @@ -5988,6 +6001,7 @@ paths: tags: - groups.conversation summary: Delete navigation property threads for groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_DeleteThreads parameters: - name: group-id @@ -6073,6 +6087,7 @@ paths: tags: - groups.conversation summary: Get posts from groups + description: Read-only. Nullable. operationId: groups.conversations.threads_ListPosts parameters: - name: group-id @@ -6216,6 +6231,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to posts for groups + description: Read-only. Nullable. operationId: groups.conversations.threads_CreatePosts parameters: - name: group-id @@ -6261,6 +6277,7 @@ paths: tags: - groups.conversation summary: Get posts from groups + description: Read-only. Nullable. operationId: groups.conversations.threads_GetPosts parameters: - name: group-id @@ -6397,6 +6414,7 @@ paths: tags: - groups.conversation summary: Update the navigation property posts in groups + description: Read-only. Nullable. operationId: groups.conversations.threads_UpdatePosts parameters: - name: group-id @@ -6444,6 +6462,7 @@ paths: tags: - groups.conversation summary: Delete navigation property posts for groups + description: Read-only. Nullable. operationId: groups.conversations.threads_DeletePosts parameters: - name: group-id @@ -6490,6 +6509,7 @@ paths: tags: - groups.conversation summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.conversations.threads.posts_ListAttachments parameters: - name: group-id @@ -6604,6 +6624,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to attachments for groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.conversations.threads.posts_CreateAttachments parameters: - name: group-id @@ -6656,6 +6677,7 @@ paths: tags: - groups.conversation summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.conversations.threads.posts_GetAttachments parameters: - name: group-id @@ -6736,6 +6758,7 @@ paths: tags: - groups.conversation summary: Update the navigation property attachments in groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.conversations.threads.posts_UpdateAttachments parameters: - name: group-id @@ -6790,6 +6813,7 @@ paths: tags: - groups.conversation summary: Delete navigation property attachments for groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.conversations.threads.posts_DeleteAttachments parameters: - name: group-id @@ -6900,6 +6924,7 @@ paths: tags: - groups.conversation summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_ListExtensions parameters: - name: group-id @@ -6999,6 +7024,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_CreateExtensions parameters: - name: group-id @@ -7051,6 +7077,7 @@ paths: tags: - groups.conversation summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_GetExtensions parameters: - name: group-id @@ -7126,6 +7153,7 @@ paths: tags: - groups.conversation summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_UpdateExtensions parameters: - name: group-id @@ -7180,6 +7208,7 @@ paths: tags: - groups.conversation summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_DeleteExtensions parameters: - name: group-id @@ -7233,6 +7262,7 @@ paths: tags: - groups.conversation summary: Get inReplyTo from groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.conversations.threads.posts_GetInReplyTo parameters: - name: group-id @@ -7369,6 +7399,7 @@ paths: tags: - groups.conversation summary: Update the navigation property inReplyTo in groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.conversations.threads.posts_UpdateInReplyTo parameters: - name: group-id @@ -7416,6 +7447,7 @@ paths: tags: - groups.conversation summary: Delete navigation property inReplyTo for groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.conversations.threads.posts_DeleteInReplyTo parameters: - name: group-id @@ -8049,6 +8081,7 @@ paths: tags: - groups.conversation summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_ListMultiValueExtendedProperties parameters: - name: group-id @@ -8151,6 +8184,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -8203,6 +8237,7 @@ paths: tags: - groups.conversation summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_GetMultiValueExtendedProperties parameters: - name: group-id @@ -8279,6 +8314,7 @@ paths: tags: - groups.conversation summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -8333,6 +8369,7 @@ paths: tags: - groups.conversation summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -8386,6 +8423,7 @@ paths: tags: - groups.conversation summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_ListSingleValueExtendedProperties parameters: - name: group-id @@ -8488,6 +8526,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -8540,6 +8579,7 @@ paths: tags: - groups.conversation summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_GetSingleValueExtendedProperties parameters: - name: group-id @@ -8616,6 +8656,7 @@ paths: tags: - groups.conversation summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -8670,6 +8711,7 @@ paths: tags: - groups.conversation summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -8723,6 +8765,7 @@ paths: tags: - groups.directoryObject summary: Get createdOnBehalfOf from groups + description: 'The user (or application) that created the group. Note: This is not set if the user is an administrator. Read-only.' operationId: groups_GetCreatedOnBehalfOf parameters: - name: group-id @@ -8772,6 +8815,7 @@ paths: tags: - groups.directoryObject summary: Get ref of createdOnBehalfOf from groups + description: 'The user (or application) that created the group. Note: This is not set if the user is an administrator. Read-only.' operationId: groups_GetRefCreatedOnBehalfOf parameters: - name: group-id @@ -8795,6 +8839,7 @@ paths: tags: - groups.directoryObject summary: Update the ref of navigation property createdOnBehalfOf in groups + description: 'The user (or application) that created the group. Note: This is not set if the user is an administrator. Read-only.' operationId: groups_SetRefCreatedOnBehalfOf parameters: - name: group-id @@ -8823,6 +8868,7 @@ paths: tags: - groups.directoryObject summary: Delete ref of navigation property createdOnBehalfOf for groups + description: 'The user (or application) that created the group. Note: This is not set if the user is an administrator. Read-only.' operationId: groups_DeleteRefCreatedOnBehalfOf parameters: - name: group-id @@ -8848,6 +8894,7 @@ paths: tags: - groups.endpoint summary: Get endpoints from groups + description: Endpoints for the group. Read-only. Nullable. operationId: groups_ListEndpoints parameters: - name: group-id @@ -8944,6 +8991,7 @@ paths: tags: - groups.endpoint summary: Create new navigation property to endpoints for groups + description: Endpoints for the group. Read-only. Nullable. operationId: groups_CreateEndpoints parameters: - name: group-id @@ -8975,6 +9023,7 @@ paths: tags: - groups.endpoint summary: Get endpoints from groups + description: Endpoints for the group. Read-only. Nullable. operationId: groups_GetEndpoints parameters: - name: group-id @@ -9035,6 +9084,7 @@ paths: tags: - groups.endpoint summary: Update the navigation property endpoints in groups + description: Endpoints for the group. Read-only. Nullable. operationId: groups_UpdateEndpoints parameters: - name: group-id @@ -9068,6 +9118,7 @@ paths: tags: - groups.endpoint summary: Delete navigation property endpoints for groups + description: Endpoints for the group. Read-only. Nullable. operationId: groups_DeleteEndpoints parameters: - name: group-id @@ -11004,6 +11055,7 @@ paths: tags: - groups.extension summary: Get extensions from groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_ListExtensions parameters: - name: group-id @@ -11082,6 +11134,7 @@ paths: tags: - groups.extension summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_CreateExtensions parameters: - name: group-id @@ -11113,6 +11166,7 @@ paths: tags: - groups.extension summary: Get extensions from groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_GetExtensions parameters: - name: group-id @@ -11167,6 +11221,7 @@ paths: tags: - groups.extension summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_UpdateExtensions parameters: - name: group-id @@ -11200,6 +11255,7 @@ paths: tags: - groups.extension summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_DeleteExtensions parameters: - name: group-id @@ -11232,6 +11288,7 @@ paths: tags: - groups.directoryObject summary: Get memberOf from groups + description: 'Groups and administrative units that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.' operationId: groups_ListMemberOf parameters: - name: group-id @@ -11314,6 +11371,7 @@ paths: tags: - groups.directoryObject summary: Get ref of memberOf from groups + description: 'Groups and administrative units that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.' operationId: groups_ListRefMemberOf parameters: - name: group-id @@ -11370,6 +11428,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to memberOf for groups + description: 'Groups and administrative units that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.' operationId: groups_CreateRefMemberOf parameters: - name: group-id @@ -11405,6 +11464,7 @@ paths: tags: - groups.directoryObject summary: Get members from groups + description: 'Users, contacts, and groups that are members of this group. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_ListMembers parameters: - name: group-id @@ -11487,6 +11547,7 @@ paths: tags: - groups.directoryObject summary: Get ref of members from groups + description: 'Users, contacts, and groups that are members of this group. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_ListRefMembers parameters: - name: group-id @@ -11543,6 +11604,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to members for groups + description: 'Users, contacts, and groups that are members of this group. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_CreateRefMembers parameters: - name: group-id @@ -11578,6 +11640,7 @@ paths: tags: - groups.directoryObject summary: Get membersWithLicenseErrors from groups + description: A list of group members with license errors from this group-based license assignment. Read-only. operationId: groups_ListMembersWithLicenseErrors parameters: - name: group-id @@ -11660,6 +11723,7 @@ paths: tags: - groups.directoryObject summary: Get ref of membersWithLicenseErrors from groups + description: A list of group members with license errors from this group-based license assignment. Read-only. operationId: groups_ListRefMembersWithLicenseErrors parameters: - name: group-id @@ -11716,6 +11780,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to membersWithLicenseErrors for groups + description: A list of group members with license errors from this group-based license assignment. Read-only. operationId: groups_CreateRefMembersWithLicenseErrors parameters: - name: group-id @@ -18928,6 +18993,7 @@ paths: tags: - groups.directoryObject summary: Get owners from groups + description: 'The owners of the group. The owners are a set of non-admin users who are allowed to modify this object. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_ListOwners parameters: - name: group-id @@ -19010,6 +19076,7 @@ paths: tags: - groups.directoryObject summary: Get ref of owners from groups + description: 'The owners of the group. The owners are a set of non-admin users who are allowed to modify this object. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_ListRefOwners parameters: - name: group-id @@ -19066,6 +19133,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to owners for groups + description: 'The owners of the group. The owners are a set of non-admin users who are allowed to modify this object. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_CreateRefOwners parameters: - name: group-id @@ -19101,6 +19169,7 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Get permissionGrants from groups + description: The permission that has been granted for a group to a specific application. operationId: groups_ListPermissionGrants parameters: - name: group-id @@ -19197,6 +19266,7 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Create new navigation property to permissionGrants for groups + description: The permission that has been granted for a group to a specific application. operationId: groups_CreatePermissionGrants parameters: - name: group-id @@ -19228,6 +19298,7 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Get permissionGrants from groups + description: The permission that has been granted for a group to a specific application. operationId: groups_GetPermissionGrants parameters: - name: group-id @@ -19288,6 +19359,7 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Update the navigation property permissionGrants in groups + description: The permission that has been granted for a group to a specific application. operationId: groups_UpdatePermissionGrants parameters: - name: group-id @@ -19321,6 +19393,7 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Delete navigation property permissionGrants for groups + description: The permission that has been granted for a group to a specific application. operationId: groups_DeletePermissionGrants parameters: - name: group-id @@ -19353,6 +19426,7 @@ paths: tags: - groups.profilePhoto summary: Get photo from groups + description: The group's profile photo. operationId: groups_GetPhoto parameters: - name: group-id @@ -19402,6 +19476,7 @@ paths: tags: - groups.profilePhoto summary: Update the navigation property photo in groups + description: The group's profile photo. operationId: groups_UpdatePhoto parameters: - name: group-id @@ -19428,6 +19503,7 @@ paths: tags: - groups.profilePhoto summary: Delete navigation property photo for groups + description: The group's profile photo. operationId: groups_DeletePhoto parameters: - name: group-id @@ -19453,6 +19529,7 @@ paths: tags: - groups.profilePhoto summary: Get media content for the navigation property photo from groups + description: The group's profile photo. operationId: groups_GetPhotoContent parameters: - name: group-id @@ -19477,6 +19554,7 @@ paths: tags: - groups.profilePhoto summary: Update media content for the navigation property photo in groups + description: The group's profile photo. operationId: groups_SetPhotoContent parameters: - name: group-id @@ -19505,6 +19583,7 @@ paths: tags: - groups.profilePhoto summary: Get photos from groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_ListPhotos parameters: - name: group-id @@ -19589,6 +19668,7 @@ paths: tags: - groups.profilePhoto summary: Create new navigation property to photos for groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_CreatePhotos parameters: - name: group-id @@ -19620,6 +19700,7 @@ paths: tags: - groups.profilePhoto summary: Get photos from groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_GetPhotos parameters: - name: group-id @@ -19676,6 +19757,7 @@ paths: tags: - groups.profilePhoto summary: Update the navigation property photos in groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_UpdatePhotos parameters: - name: group-id @@ -19709,6 +19791,7 @@ paths: tags: - groups.profilePhoto summary: Delete navigation property photos for groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_DeletePhotos parameters: - name: group-id @@ -19807,6 +19890,7 @@ paths: tags: - groups.directoryObject summary: Get rejectedSenders from groups + description: The list of users or groups that are not allowed to create posts or calendar events in this group. Nullable operationId: groups_ListRejectedSenders parameters: - name: group-id @@ -19889,6 +19973,7 @@ paths: tags: - groups.directoryObject summary: Get ref of rejectedSenders from groups + description: The list of users or groups that are not allowed to create posts or calendar events in this group. Nullable operationId: groups_ListRefRejectedSenders parameters: - name: group-id @@ -19945,6 +20030,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to rejectedSenders for groups + description: The list of users or groups that are not allowed to create posts or calendar events in this group. Nullable operationId: groups_CreateRefRejectedSenders parameters: - name: group-id @@ -19980,6 +20066,7 @@ paths: tags: - groups.directorySetting summary: Get settings from groups + description: 'Settings that can govern this group''s behavior, like whether members can invite guest users to the group. Nullable.' operationId: groups_ListSettings parameters: - name: group-id @@ -20067,6 +20154,7 @@ paths: tags: - groups.directorySetting summary: Create new navigation property to settings for groups + description: 'Settings that can govern this group''s behavior, like whether members can invite guest users to the group. Nullable.' operationId: groups_CreateSettings parameters: - name: group-id @@ -20098,6 +20186,7 @@ paths: tags: - groups.directorySetting summary: Get settings from groups + description: 'Settings that can govern this group''s behavior, like whether members can invite guest users to the group. Nullable.' operationId: groups_GetSettings parameters: - name: group-id @@ -20155,6 +20244,7 @@ paths: tags: - groups.directorySetting summary: Update the navigation property settings in groups + description: 'Settings that can govern this group''s behavior, like whether members can invite guest users to the group. Nullable.' operationId: groups_UpdateSettings parameters: - name: group-id @@ -20188,6 +20278,7 @@ paths: tags: - groups.directorySetting summary: Delete navigation property settings for groups + description: 'Settings that can govern this group''s behavior, like whether members can invite guest users to the group. Nullable.' operationId: groups_DeleteSettings parameters: - name: group-id @@ -20220,6 +20311,7 @@ paths: tags: - groups.conversationThread summary: Get threads from groups + description: The group's conversation threads. Nullable. operationId: groups_ListThreads parameters: - name: group-id @@ -20324,6 +20416,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to threads for groups + description: The group's conversation threads. Nullable. operationId: groups_CreateThreads parameters: - name: group-id @@ -20355,6 +20448,7 @@ paths: tags: - groups.conversationThread summary: Get threads from groups + description: The group's conversation threads. Nullable. operationId: groups_GetThreads parameters: - name: group-id @@ -20425,6 +20519,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property threads in groups + description: The group's conversation threads. Nullable. operationId: groups_UpdateThreads parameters: - name: group-id @@ -20458,6 +20553,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property threads for groups + description: The group's conversation threads. Nullable. operationId: groups_DeleteThreads parameters: - name: group-id @@ -20529,6 +20625,7 @@ paths: tags: - groups.conversationThread summary: Get posts from groups + description: Read-only. Nullable. operationId: groups.threads_ListPosts parameters: - name: group-id @@ -20665,6 +20762,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to posts for groups + description: Read-only. Nullable. operationId: groups.threads_CreatePosts parameters: - name: group-id @@ -20703,6 +20801,7 @@ paths: tags: - groups.conversationThread summary: Get posts from groups + description: Read-only. Nullable. operationId: groups.threads_GetPosts parameters: - name: group-id @@ -20826,6 +20925,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property posts in groups + description: Read-only. Nullable. operationId: groups.threads_UpdatePosts parameters: - name: group-id @@ -20866,6 +20966,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property posts for groups + description: Read-only. Nullable. operationId: groups.threads_DeletePosts parameters: - name: group-id @@ -20905,6 +21006,7 @@ paths: tags: - groups.conversationThread summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.threads.posts_ListAttachments parameters: - name: group-id @@ -21012,6 +21114,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to attachments for groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.threads.posts_CreateAttachments parameters: - name: group-id @@ -21057,6 +21160,7 @@ paths: tags: - groups.conversationThread summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.threads.posts_GetAttachments parameters: - name: group-id @@ -21130,6 +21234,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property attachments in groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.threads.posts_UpdateAttachments parameters: - name: group-id @@ -21177,6 +21282,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property attachments for groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.threads.posts_DeleteAttachments parameters: - name: group-id @@ -21273,6 +21379,7 @@ paths: tags: - groups.conversationThread summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.threads.posts_ListExtensions parameters: - name: group-id @@ -21365,6 +21472,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.threads.posts_CreateExtensions parameters: - name: group-id @@ -21410,6 +21518,7 @@ paths: tags: - groups.conversationThread summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.threads.posts_GetExtensions parameters: - name: group-id @@ -21478,6 +21587,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.threads.posts_UpdateExtensions parameters: - name: group-id @@ -21525,6 +21635,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.threads.posts_DeleteExtensions parameters: - name: group-id @@ -21571,6 +21682,7 @@ paths: tags: - groups.conversationThread summary: Get inReplyTo from groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.threads.posts_GetInReplyTo parameters: - name: group-id @@ -21694,6 +21806,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property inReplyTo in groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.threads.posts_UpdateInReplyTo parameters: - name: group-id @@ -21734,6 +21847,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property inReplyTo for groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.threads.posts_DeleteInReplyTo parameters: - name: group-id @@ -22297,6 +22411,7 @@ paths: tags: - groups.conversationThread summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_ListMultiValueExtendedProperties parameters: - name: group-id @@ -22392,6 +22507,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -22437,6 +22553,7 @@ paths: tags: - groups.conversationThread summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_GetMultiValueExtendedProperties parameters: - name: group-id @@ -22506,6 +22623,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -22553,6 +22671,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -22599,6 +22718,7 @@ paths: tags: - groups.conversationThread summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_ListSingleValueExtendedProperties parameters: - name: group-id @@ -22694,6 +22814,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -22739,6 +22860,7 @@ paths: tags: - groups.conversationThread summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_GetSingleValueExtendedProperties parameters: - name: group-id @@ -22808,6 +22930,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -22855,6 +22978,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -23402,6 +23526,7 @@ paths: tags: - users.group summary: Get joinedGroups from users + description: Read-only. Nullable. operationId: users_ListJoinedGroups parameters: - name: user-id @@ -23683,6 +23808,7 @@ paths: tags: - users.group summary: Create new navigation property to joinedGroups for users + description: Read-only. Nullable. operationId: users_CreateJoinedGroups parameters: - name: user-id @@ -23714,6 +23840,7 @@ paths: tags: - users.group summary: Get joinedGroups from users + description: Read-only. Nullable. operationId: users_GetJoinedGroups parameters: - name: user-id @@ -24014,6 +24141,7 @@ paths: tags: - users.group summary: Update the navigation property joinedGroups in users + description: Read-only. Nullable. operationId: users_UpdateJoinedGroups parameters: - name: user-id @@ -24047,6 +24175,7 @@ paths: tags: - users.group summary: Delete navigation property joinedGroups for users + description: Read-only. Nullable. operationId: users_DeleteJoinedGroups parameters: - name: user-id @@ -24349,6 +24478,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -25031,7 +25161,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -25627,7 +25757,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -27238,7 +27368,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -27251,7 +27381,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -27263,12 +27393,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -27277,7 +27407,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -27285,7 +27415,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -27301,7 +27431,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -27317,7 +27447,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -27341,7 +27471,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -27360,11 +27490,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -27372,7 +27502,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -27419,7 +27549,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -27428,7 +27558,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -27466,15 +27596,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -27482,7 +27612,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -27611,6 +27741,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -29806,6 +29940,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -29930,7 +30066,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -29954,7 +30090,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -30088,7 +30224,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -30355,7 +30491,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -31167,6 +31303,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -31448,16 +31588,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -32126,11 +32266,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -32145,6 +32286,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -32154,7 +32296,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -32191,7 +32333,6 @@ components: 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: @@ -33244,11 +33385,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -33580,6 +33721,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -33612,6 +33758,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -33715,6 +33863,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' @@ -34432,53 +34581,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -34505,6 +34659,35 @@ components: additionalProperties: type: object description: Enrollment Configuration Assignment + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -34901,6 +35084,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -35094,6 +35281,19 @@ components: additionalProperties: type: object description: Logged On User + microsoft.graph.assignmentFilterEvaluationStatusDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: assignmentFilterEvaluationStatusDetails + type: object + properties: + payloadId: + type: string + description: PayloadId on which filter has been applied. + nullable: true + additionalProperties: + type: object + description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceCompliancePolicyState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -35135,19 +35335,6 @@ components: additionalProperties: type: object description: Device Compliance Policy State for a given device. - microsoft.graph.assignmentFilterEvaluationStatusDetails: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: assignmentFilterEvaluationStatusDetails - type: object - properties: - payloadId: - type: string - description: PayloadId on which filter has been applied. - nullable: true - additionalProperties: - type: object - description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceConfigurationState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -35538,10 +35725,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -36484,10 +36671,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -36558,18 +36757,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -36582,6 +36780,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -36637,7 +36836,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -37285,7 +37483,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string @@ -37916,7 +38114,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -37935,14 +38133,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -37951,18 +38149,18 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object microsoft.graph.deviceAndAppManagementAssignmentSource: @@ -37984,16 +38182,6 @@ components: additionalProperties: type: object description: Base type for assignment targets. - microsoft.graph.configurationManagerClientState: - title: configurationManagerClientState - enum: - - unknown - - installed - - healthy - - installFailed - - updateFailed - - communicationError - type: string microsoft.graph.actionState: title: actionState enum: @@ -38005,6 +38193,35 @@ components: - failed - notSupported type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object + microsoft.graph.configurationManagerClientState: + title: configurationManagerClientState + enum: + - unknown + - installed + - healthy + - installFailed + - updateFailed + - communicationError + type: string microsoft.graph.deviceGuardLocalSystemAuthorityCredentialGuardState: title: deviceGuardLocalSystemAuthorityCredentialGuardState enum: @@ -38909,18 +39126,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -39314,17 +39535,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -39332,9 +39558,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -39737,16 +39965,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: diff --git a/openApiDocs/beta/Identity.DirectoryManagement.yml b/openApiDocs/beta/Identity.DirectoryManagement.yml index 7684ed07ef0..5b2a097fa5a 100644 --- a/openApiDocs/beta/Identity.DirectoryManagement.yml +++ b/openApiDocs/beta/Identity.DirectoryManagement.yml @@ -15,10 +15,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -133,6 +132,7 @@ paths: tags: - administrativeUnits.administrativeUnit summary: Get entity from administrativeUnits by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: administrativeUnits.administrativeUnit_GetAdministrativeUnit parameters: - name: administrativeUnit-id @@ -144,10 +144,9 @@ paths: x-ms-docs-key-type: administrativeUnit - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -213,6 +212,7 @@ paths: tags: - administrativeUnits.administrativeUnit summary: Update entity in administrativeUnits + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: administrativeUnits.administrativeUnit_UpdateAdministrativeUnit parameters: - name: administrativeUnit-id @@ -239,6 +239,7 @@ paths: tags: - administrativeUnits.administrativeUnit summary: Delete entity from administrativeUnits + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: administrativeUnits.administrativeUnit_DeleteAdministrativeUnit parameters: - name: administrativeUnit-id @@ -264,6 +265,7 @@ paths: tags: - administrativeUnits.extension summary: Get extensions from administrativeUnits + description: The collection of open extensions defined for this Administrative Unit. Nullable. operationId: administrativeUnits_ListExtensions parameters: - name: administrativeUnit-id @@ -342,6 +344,7 @@ paths: tags: - administrativeUnits.extension summary: Create new navigation property to extensions for administrativeUnits + description: The collection of open extensions defined for this Administrative Unit. Nullable. operationId: administrativeUnits_CreateExtensions parameters: - name: administrativeUnit-id @@ -373,6 +376,7 @@ paths: tags: - administrativeUnits.extension summary: Get extensions from administrativeUnits + description: The collection of open extensions defined for this Administrative Unit. Nullable. operationId: administrativeUnits_GetExtensions parameters: - name: administrativeUnit-id @@ -427,6 +431,7 @@ paths: tags: - administrativeUnits.extension summary: Update the navigation property extensions in administrativeUnits + description: The collection of open extensions defined for this Administrative Unit. Nullable. operationId: administrativeUnits_UpdateExtensions parameters: - name: administrativeUnit-id @@ -460,6 +465,7 @@ paths: tags: - administrativeUnits.extension summary: Delete navigation property extensions for administrativeUnits + description: The collection of open extensions defined for this Administrative Unit. Nullable. operationId: administrativeUnits_DeleteExtensions parameters: - name: administrativeUnit-id @@ -492,6 +498,7 @@ paths: tags: - administrativeUnits.directoryObject summary: Get members from administrativeUnits + description: 'Users and groups that are members of this Adminsitrative Unit. HTTP Methods: GET (list members), POST (add members), DELETE (remove members).' operationId: administrativeUnits_ListMembers parameters: - name: administrativeUnit-id @@ -574,6 +581,7 @@ paths: tags: - administrativeUnits.directoryObject summary: Get ref of members from administrativeUnits + description: 'Users and groups that are members of this Adminsitrative Unit. HTTP Methods: GET (list members), POST (add members), DELETE (remove members).' operationId: administrativeUnits_ListRefMembers parameters: - name: administrativeUnit-id @@ -630,6 +638,7 @@ paths: tags: - administrativeUnits.directoryObject summary: Create new navigation property ref to members for administrativeUnits + description: 'Users and groups that are members of this Adminsitrative Unit. HTTP Methods: GET (list members), POST (add members), DELETE (remove members).' operationId: administrativeUnits_CreateRefMembers parameters: - name: administrativeUnit-id @@ -849,6 +858,7 @@ paths: tags: - administrativeUnits.scopedRoleMembership summary: Get scopedRoleMembers from administrativeUnits + description: 'Scoped-role members of this Administrative Unit. HTTP Methods: GET (list scopedRoleMemberships), POST (add scopedRoleMembership), DELETE (remove scopedRoleMembership).' operationId: administrativeUnits_ListScopedRoleMembers parameters: - name: administrativeUnit-id @@ -936,6 +946,7 @@ paths: tags: - administrativeUnits.scopedRoleMembership summary: Create new navigation property to scopedRoleMembers for administrativeUnits + description: 'Scoped-role members of this Administrative Unit. HTTP Methods: GET (list scopedRoleMemberships), POST (add scopedRoleMembership), DELETE (remove scopedRoleMembership).' operationId: administrativeUnits_CreateScopedRoleMembers parameters: - name: administrativeUnit-id @@ -967,6 +978,7 @@ paths: tags: - administrativeUnits.scopedRoleMembership summary: Get scopedRoleMembers from administrativeUnits + description: 'Scoped-role members of this Administrative Unit. HTTP Methods: GET (list scopedRoleMemberships), POST (add scopedRoleMembership), DELETE (remove scopedRoleMembership).' operationId: administrativeUnits_GetScopedRoleMembers parameters: - name: administrativeUnit-id @@ -1024,6 +1036,7 @@ paths: tags: - administrativeUnits.scopedRoleMembership summary: Update the navigation property scopedRoleMembers in administrativeUnits + description: 'Scoped-role members of this Administrative Unit. HTTP Methods: GET (list scopedRoleMemberships), POST (add scopedRoleMembership), DELETE (remove scopedRoleMembership).' operationId: administrativeUnits_UpdateScopedRoleMembers parameters: - name: administrativeUnit-id @@ -1057,6 +1070,7 @@ paths: tags: - administrativeUnits.scopedRoleMembership summary: Delete navigation property scopedRoleMembers for administrativeUnits + description: 'Scoped-role members of this Administrative Unit. HTTP Methods: GET (list scopedRoleMemberships), POST (add scopedRoleMembership), DELETE (remove scopedRoleMembership).' operationId: administrativeUnits_DeleteScopedRoleMembers parameters: - name: administrativeUnit-id @@ -1216,10 +1230,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -1302,6 +1315,7 @@ paths: - manager - memberOf - transitiveMemberOf + - transitiveReports type: string - name: $expand in: query @@ -1318,6 +1332,7 @@ paths: - manager - memberOf - transitiveMemberOf + - transitiveReports type: string responses: '200': @@ -1369,6 +1384,7 @@ paths: tags: - contacts.orgContact summary: Get entity from contacts by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contacts.orgContact_GetOrgContact parameters: - name: orgContact-id @@ -1380,10 +1396,9 @@ paths: x-ms-docs-key-type: orgContact - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -1418,6 +1433,7 @@ paths: - manager - memberOf - transitiveMemberOf + - transitiveReports type: string - name: $expand in: query @@ -1434,6 +1450,7 @@ paths: - manager - memberOf - transitiveMemberOf + - transitiveReports type: string responses: '200': @@ -1459,6 +1476,10 @@ paths: operationId: contacts.ListTransitiveMemberOf parameters: orgContact-id: $request.path.orgContact-id + transitiveReports: + operationId: contacts.ListTransitiveReports + parameters: + orgContact-id: $request.path.orgContact-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation @@ -1466,6 +1487,7 @@ paths: tags: - contacts.orgContact summary: Update entity in contacts + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contacts.orgContact_UpdateOrgContact parameters: - name: orgContact-id @@ -1492,6 +1514,7 @@ paths: tags: - contacts.orgContact summary: Delete entity from contacts + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contacts.orgContact_DeleteOrgContact parameters: - name: orgContact-id @@ -1517,6 +1540,7 @@ paths: tags: - contacts.directoryObject summary: Get directReports from contacts + description: The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. operationId: contacts_ListDirectReports parameters: - name: orgContact-id @@ -1599,6 +1623,7 @@ paths: tags: - contacts.directoryObject summary: Get ref of directReports from contacts + description: The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. operationId: contacts_ListRefDirectReports parameters: - name: orgContact-id @@ -1655,6 +1680,7 @@ paths: tags: - contacts.directoryObject summary: Create new navigation property ref to directReports for contacts + description: The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. operationId: contacts_CreateRefDirectReports parameters: - name: orgContact-id @@ -1690,6 +1716,7 @@ paths: tags: - contacts.directoryObject summary: Get manager from contacts + description: The user or contact that is this contact's manager. Read-only. operationId: contacts_GetManager parameters: - name: orgContact-id @@ -1739,6 +1766,7 @@ paths: tags: - contacts.directoryObject summary: Get ref of manager from contacts + description: The user or contact that is this contact's manager. Read-only. operationId: contacts_GetRefManager parameters: - name: orgContact-id @@ -1762,6 +1790,7 @@ paths: tags: - contacts.directoryObject summary: Update the ref of navigation property manager in contacts + description: The user or contact that is this contact's manager. Read-only. operationId: contacts_SetRefManager parameters: - name: orgContact-id @@ -1790,6 +1819,7 @@ paths: tags: - contacts.directoryObject summary: Delete ref of navigation property manager for contacts + description: The user or contact that is this contact's manager. Read-only. operationId: contacts_DeleteRefManager parameters: - name: orgContact-id @@ -1815,6 +1845,7 @@ paths: tags: - contacts.directoryObject summary: Get memberOf from contacts + description: Groups that this contact is a member of. Read-only. Nullable. operationId: contacts_ListMemberOf parameters: - name: orgContact-id @@ -1897,6 +1928,7 @@ paths: tags: - contacts.directoryObject summary: Get ref of memberOf from contacts + description: Groups that this contact is a member of. Read-only. Nullable. operationId: contacts_ListRefMemberOf parameters: - name: orgContact-id @@ -1953,6 +1985,7 @@ paths: tags: - contacts.directoryObject summary: Create new navigation property ref to memberOf for contacts + description: Groups that this contact is a member of. Read-only. Nullable. operationId: contacts_CreateRefMemberOf parameters: - name: orgContact-id @@ -2340,6 +2373,179 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + '/contacts/{orgContact-id}/transitiveReports': + get: + tags: + - contacts.directoryObject + summary: Get transitiveReports from contacts + operationId: contacts_ListTransitiveReports + parameters: + - name: orgContact-id + in: path + description: 'key: id of orgContact' + required: true + schema: + type: string + x-ms-docs-key-type: orgContact + - $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 + 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 + 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 directoryObject + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + '@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 + '/contacts/{orgContact-id}/transitiveReports/$ref': + get: + tags: + - contacts.directoryObject + summary: Get ref of transitiveReports from contacts + operationId: contacts_ListRefTransitiveReports + parameters: + - name: orgContact-id + in: path + description: 'key: id of orgContact' + required: true + schema: + type: string + x-ms-docs-key-type: orgContact + - $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 + type: string + responses: + '200': + description: Retrieved navigation property links + content: + application/json: + schema: + title: Collection of links of directoryObject + 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: + - contacts.directoryObject + summary: Create new navigation property ref to transitiveReports for contacts + operationId: contacts_CreateRefTransitiveReports + parameters: + - name: orgContact-id + in: path + description: 'key: id of orgContact' + required: true + schema: + type: string + x-ms-docs-key-type: orgContact + 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 /contacts/microsoft.graph.delta(): get: tags: @@ -2577,6 +2783,7 @@ paths: tags: - contracts.contract summary: Get entity from contracts by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contracts.contract_GetContract parameters: - name: contract-id @@ -2629,6 +2836,7 @@ paths: tags: - contracts.contract summary: Update entity in contracts + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contracts.contract_UpdateContract parameters: - name: contract-id @@ -2655,6 +2863,7 @@ paths: tags: - contracts.contract summary: Delete entity from contracts + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contracts.contract_DeleteContract parameters: - name: contract-id @@ -2973,10 +3182,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -3192,6 +3400,7 @@ paths: tags: - devices.device summary: Get entity from devices by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: devices.device_GetDevice parameters: - name: device-id @@ -3203,10 +3412,9 @@ paths: x-ms-docs-key-type: device - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -3327,6 +3535,7 @@ paths: tags: - devices.device summary: Update entity in devices + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: devices.device_UpdateDevice parameters: - name: device-id @@ -3353,6 +3562,7 @@ paths: tags: - devices.device summary: Delete entity from devices + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: devices.device_DeleteDevice parameters: - name: device-id @@ -3378,6 +3588,7 @@ paths: tags: - devices.command summary: Get commands from devices + description: Set of commands sent to this device. operationId: devices_ListCommands parameters: - name: device-id @@ -3482,6 +3693,7 @@ paths: tags: - devices.command summary: Create new navigation property to commands for devices + description: Set of commands sent to this device. operationId: devices_CreateCommands parameters: - name: device-id @@ -3513,6 +3725,7 @@ paths: tags: - devices.command summary: Get commands from devices + description: Set of commands sent to this device. operationId: devices_GetCommands parameters: - name: device-id @@ -3583,6 +3796,7 @@ paths: tags: - devices.command summary: Update the navigation property commands in devices + description: Set of commands sent to this device. operationId: devices_UpdateCommands parameters: - name: device-id @@ -3616,6 +3830,7 @@ paths: tags: - devices.command summary: Delete navigation property commands for devices + description: Set of commands sent to this device. operationId: devices_DeleteCommands parameters: - name: device-id @@ -3648,6 +3863,7 @@ paths: tags: - devices.extension summary: Get extensions from devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_ListExtensions parameters: - name: device-id @@ -3726,6 +3942,7 @@ paths: tags: - devices.extension summary: Create new navigation property to extensions for devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_CreateExtensions parameters: - name: device-id @@ -3757,6 +3974,7 @@ paths: tags: - devices.extension summary: Get extensions from devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_GetExtensions parameters: - name: device-id @@ -3811,6 +4029,7 @@ paths: tags: - devices.extension summary: Update the navigation property extensions in devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_UpdateExtensions parameters: - name: device-id @@ -3844,6 +4063,7 @@ paths: tags: - devices.extension summary: Delete navigation property extensions for devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_DeleteExtensions parameters: - name: device-id @@ -3876,6 +4096,7 @@ paths: tags: - devices.directoryObject summary: Get memberOf from devices + description: Groups that this device is a member of. Read-only. Nullable. operationId: devices_ListMemberOf parameters: - name: device-id @@ -3958,6 +4179,7 @@ paths: tags: - devices.directoryObject summary: Get ref of memberOf from devices + description: Groups that this device is a member of. Read-only. Nullable. operationId: devices_ListRefMemberOf parameters: - name: device-id @@ -4014,6 +4236,7 @@ paths: tags: - devices.directoryObject summary: Create new navigation property ref to memberOf for devices + description: Groups that this device is a member of. Read-only. Nullable. operationId: devices_CreateRefMemberOf parameters: - name: device-id @@ -4233,6 +4456,7 @@ paths: tags: - devices.directoryObject summary: Get registeredOwners from devices + 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.' operationId: devices_ListRegisteredOwners parameters: - name: device-id @@ -4315,6 +4539,7 @@ paths: tags: - devices.directoryObject summary: Get ref of registeredOwners from devices + 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.' operationId: devices_ListRefRegisteredOwners parameters: - name: device-id @@ -4371,6 +4596,7 @@ paths: tags: - devices.directoryObject summary: Create new navigation property ref to registeredOwners for devices + 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.' operationId: devices_CreateRefRegisteredOwners parameters: - name: device-id @@ -4406,6 +4632,7 @@ paths: tags: - devices.directoryObject summary: Get registeredUsers from devices + 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.' operationId: devices_ListRegisteredUsers parameters: - name: device-id @@ -4488,6 +4715,7 @@ paths: tags: - devices.directoryObject summary: Get ref of registeredUsers from devices + 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.' operationId: devices_ListRefRegisteredUsers parameters: - name: device-id @@ -4544,6 +4772,7 @@ paths: tags: - devices.directoryObject summary: Create new navigation property ref to registeredUsers for devices + 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.' operationId: devices_CreateRefRegisteredUsers parameters: - name: device-id @@ -4579,6 +4808,7 @@ paths: tags: - devices.directoryObject summary: Get transitiveMemberOf from devices + description: Groups that this device is a member of. This operation is transitive. operationId: devices_ListTransitiveMemberOf parameters: - name: device-id @@ -4661,6 +4891,7 @@ paths: tags: - devices.directoryObject summary: Get ref of transitiveMemberOf from devices + description: Groups that this device is a member of. This operation is transitive. operationId: devices_ListRefTransitiveMemberOf parameters: - name: device-id @@ -4717,6 +4948,7 @@ paths: tags: - devices.directoryObject summary: Create new navigation property ref to transitiveMemberOf for devices + description: Groups that this device is a member of. This operation is transitive. operationId: devices_CreateRefTransitiveMemberOf parameters: - name: device-id @@ -4752,6 +4984,7 @@ paths: tags: - devices.usageRight summary: Get usageRights from devices + description: Represents the usage rights a device has been granted. operationId: devices_ListUsageRights parameters: - name: device-id @@ -4839,6 +5072,7 @@ paths: tags: - devices.usageRight summary: Create new navigation property to usageRights for devices + description: Represents the usage rights a device has been granted. operationId: devices_CreateUsageRights parameters: - name: device-id @@ -4870,6 +5104,7 @@ paths: tags: - devices.usageRight summary: Get usageRights from devices + description: Represents the usage rights a device has been granted. operationId: devices_GetUsageRights parameters: - name: device-id @@ -4927,6 +5162,7 @@ paths: tags: - devices.usageRight summary: Update the navigation property usageRights in devices + description: Represents the usage rights a device has been granted. operationId: devices_UpdateUsageRights parameters: - name: device-id @@ -4960,6 +5196,7 @@ paths: tags: - devices.usageRight summary: Delete navigation property usageRights for devices + description: Represents the usage rights a device has been granted. operationId: devices_DeleteUsageRights parameters: - name: device-id @@ -5406,6 +5643,7 @@ paths: tags: - directory.directoryObject summary: Get deletedItems from directory + description: Recently deleted items. Read-only. Nullable. operationId: directory_ListDeletedItems parameters: - $ref: '#/components/parameters/top' @@ -5480,6 +5718,7 @@ paths: tags: - directory.directoryObject summary: Create new navigation property to deletedItems for directory + description: Recently deleted items. Read-only. Nullable. operationId: directory_CreateDeletedItems requestBody: description: New navigation property @@ -5503,6 +5742,7 @@ paths: tags: - directory.directoryObject summary: Get deletedItems from directory + description: Recently deleted items. Read-only. Nullable. operationId: directory_GetDeletedItems parameters: - name: directoryObject-id @@ -5551,6 +5791,7 @@ paths: tags: - directory.directoryObject summary: Update the navigation property deletedItems in directory + description: Recently deleted items. Read-only. Nullable. operationId: directory_UpdateDeletedItems parameters: - name: directoryObject-id @@ -5577,6 +5818,7 @@ paths: tags: - directory.directoryObject summary: Delete navigation property deletedItems for directory + description: Recently deleted items. Read-only. Nullable. operationId: directory_DeleteDeletedItems parameters: - name: directoryObject-id @@ -5602,6 +5844,7 @@ paths: tags: - directory.featureRolloutPolicy summary: Get featureRolloutPolicies from directory + description: Nullable. operationId: directory_ListFeatureRolloutPolicies parameters: - $ref: '#/components/parameters/top' @@ -5690,6 +5933,7 @@ paths: tags: - directory.featureRolloutPolicy summary: Create new navigation property to featureRolloutPolicies for directory + description: Nullable. operationId: directory_CreateFeatureRolloutPolicies requestBody: description: New navigation property @@ -5713,6 +5957,7 @@ paths: tags: - directory.featureRolloutPolicy summary: Get featureRolloutPolicies from directory + description: Nullable. operationId: directory_GetFeatureRolloutPolicies parameters: - name: featureRolloutPolicy-id @@ -5772,6 +6017,7 @@ paths: tags: - directory.featureRolloutPolicy summary: Update the navigation property featureRolloutPolicies in directory + description: Nullable. operationId: directory_UpdateFeatureRolloutPolicies parameters: - name: featureRolloutPolicy-id @@ -5798,6 +6044,7 @@ paths: tags: - directory.featureRolloutPolicy summary: Delete navigation property featureRolloutPolicies for directory + description: Nullable. operationId: directory_DeleteFeatureRolloutPolicies parameters: - name: featureRolloutPolicy-id @@ -5823,6 +6070,7 @@ paths: tags: - directory.featureRolloutPolicy summary: Get appliesTo from directory + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: directory.featureRolloutPolicies_ListAppliesTo parameters: - name: featureRolloutPolicy-id @@ -5904,6 +6152,7 @@ paths: tags: - directory.featureRolloutPolicy summary: Create new navigation property to appliesTo for directory + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: directory.featureRolloutPolicies_CreateAppliesTo parameters: - name: featureRolloutPolicy-id @@ -5935,6 +6184,7 @@ paths: tags: - directory.featureRolloutPolicy summary: Get appliesTo from directory + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: directory.featureRolloutPolicies_GetAppliesTo parameters: - name: featureRolloutPolicy-id @@ -5990,6 +6240,7 @@ paths: tags: - directory.featureRolloutPolicy summary: Update the navigation property appliesTo in directory + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: directory.featureRolloutPolicies_UpdateAppliesTo parameters: - name: featureRolloutPolicy-id @@ -6023,6 +6274,7 @@ paths: tags: - directory.featureRolloutPolicy summary: Delete navigation property appliesTo for directory + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: directory.featureRolloutPolicies_DeleteAppliesTo parameters: - name: featureRolloutPolicy-id @@ -6361,6 +6613,7 @@ paths: tags: - directoryRoles.directoryRole summary: Get entity from directoryRoles by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoles.directoryRole_GetDirectoryRole parameters: - name: directoryRole-id @@ -6425,6 +6678,7 @@ paths: tags: - directoryRoles.directoryRole summary: Update entity in directoryRoles + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoles.directoryRole_UpdateDirectoryRole parameters: - name: directoryRole-id @@ -6451,6 +6705,7 @@ paths: tags: - directoryRoles.directoryRole summary: Delete entity from directoryRoles + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoles.directoryRole_DeleteDirectoryRole parameters: - name: directoryRole-id @@ -6476,6 +6731,7 @@ paths: tags: - directoryRoles.directoryObject summary: Get members from directoryRoles + description: 'Users that are members of this directory role. HTTP Methods: GET, POST, DELETE. Read-only. Nullable.' operationId: directoryRoles_ListMembers parameters: - name: directoryRole-id @@ -6558,6 +6814,7 @@ paths: tags: - directoryRoles.directoryObject summary: Get ref of members from directoryRoles + description: 'Users that are members of this directory role. HTTP Methods: GET, POST, DELETE. Read-only. Nullable.' operationId: directoryRoles_ListRefMembers parameters: - name: directoryRole-id @@ -6614,6 +6871,7 @@ paths: tags: - directoryRoles.directoryObject summary: Create new navigation property ref to members for directoryRoles + description: 'Users that are members of this directory role. HTTP Methods: GET, POST, DELETE. Read-only. Nullable.' operationId: directoryRoles_CreateRefMembers parameters: - name: directoryRole-id @@ -6833,6 +7091,7 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Get scopedMembers from directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_ListScopedMembers parameters: - name: directoryRole-id @@ -6920,6 +7179,7 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Create new navigation property to scopedMembers for directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_CreateScopedMembers parameters: - name: directoryRole-id @@ -6951,6 +7211,7 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Get scopedMembers from directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_GetScopedMembers parameters: - name: directoryRole-id @@ -7008,6 +7269,7 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Update the navigation property scopedMembers in directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_UpdateScopedMembers parameters: - name: directoryRole-id @@ -7041,6 +7303,7 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Delete navigation property scopedMembers for directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_DeleteScopedMembers parameters: - name: directoryRole-id @@ -7299,6 +7562,7 @@ paths: tags: - directoryRoleTemplates.directoryRoleTemplate summary: Get entity from directoryRoleTemplates by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoleTemplates.directoryRoleTemplate_GetDirectoryRoleTemplate parameters: - name: directoryRoleTemplate-id @@ -7349,6 +7613,7 @@ paths: tags: - directoryRoleTemplates.directoryRoleTemplate summary: Update entity in directoryRoleTemplates + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoleTemplates.directoryRoleTemplate_UpdateDirectoryRoleTemplate parameters: - name: directoryRoleTemplate-id @@ -7375,6 +7640,7 @@ paths: tags: - directoryRoleTemplates.directoryRoleTemplate summary: Delete entity from directoryRoleTemplates + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoleTemplates.directoryRoleTemplate_DeleteDirectoryRoleTemplate parameters: - name: directoryRoleTemplate-id @@ -7795,6 +8061,7 @@ paths: tags: - directorySettingTemplates.directorySettingTemplate summary: Get entity from directorySettingTemplates by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directorySettingTemplates.directorySettingTemplate_GetDirectorySettingTemplate parameters: - name: directorySettingTemplate-id @@ -7846,6 +8113,7 @@ paths: tags: - directorySettingTemplates.directorySettingTemplate summary: Update entity in directorySettingTemplates + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directorySettingTemplates.directorySettingTemplate_UpdateDirectorySettingTemplate parameters: - name: directorySettingTemplate-id @@ -7872,6 +8140,7 @@ paths: tags: - directorySettingTemplates.directorySettingTemplate summary: Delete entity from directorySettingTemplates + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directorySettingTemplates.directorySettingTemplate_DeleteDirectorySettingTemplate parameters: - name: directorySettingTemplate-id @@ -8455,6 +8724,7 @@ paths: tags: - domains.directoryObject summary: Get domainNameReferences from domains + description: 'Read-only, Nullable' operationId: domains_ListDomainNameReferences parameters: - name: domain-id @@ -8537,6 +8807,7 @@ paths: tags: - domains.directoryObject summary: Get ref of domainNameReferences from domains + description: 'Read-only, Nullable' operationId: domains_ListRefDomainNameReferences parameters: - name: domain-id @@ -8593,6 +8864,7 @@ paths: tags: - domains.directoryObject summary: Create new navigation property ref to domainNameReferences for domains + description: 'Read-only, Nullable' operationId: domains_CreateRefDomainNameReferences parameters: - name: domain-id @@ -8686,6 +8958,7 @@ paths: tags: - domains.domainDnsRecord summary: Get serviceConfigurationRecords from domains + 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' operationId: domains_ListServiceConfigurationRecords parameters: - name: domain-id @@ -8779,6 +9052,7 @@ paths: tags: - domains.domainDnsRecord summary: Create new navigation property to serviceConfigurationRecords for domains + 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' operationId: domains_CreateServiceConfigurationRecords parameters: - name: domain-id @@ -8810,6 +9084,7 @@ paths: tags: - domains.domainDnsRecord summary: Get serviceConfigurationRecords from domains + 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' operationId: domains_GetServiceConfigurationRecords parameters: - name: domain-id @@ -8869,6 +9144,7 @@ paths: tags: - domains.domainDnsRecord summary: Update the navigation property serviceConfigurationRecords in domains + 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' operationId: domains_UpdateServiceConfigurationRecords parameters: - name: domain-id @@ -8902,6 +9178,7 @@ paths: tags: - domains.domainDnsRecord summary: Delete navigation property serviceConfigurationRecords for domains + 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' operationId: domains_DeleteServiceConfigurationRecords parameters: - name: domain-id @@ -9174,6 +9451,7 @@ paths: tags: - domains.domainDnsRecord summary: Get verificationDnsRecords from domains + 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' operationId: domains_ListVerificationDnsRecords parameters: - name: domain-id @@ -9267,6 +9545,7 @@ paths: tags: - domains.domainDnsRecord summary: Create new navigation property to verificationDnsRecords for domains + 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' operationId: domains_CreateVerificationDnsRecords parameters: - name: domain-id @@ -9298,6 +9577,7 @@ paths: tags: - domains.domainDnsRecord summary: Get verificationDnsRecords from domains + 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' operationId: domains_GetVerificationDnsRecords parameters: - name: domain-id @@ -9357,6 +9637,7 @@ paths: tags: - domains.domainDnsRecord summary: Update the navigation property verificationDnsRecords in domains + 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' operationId: domains_UpdateVerificationDnsRecords parameters: - name: domain-id @@ -9390,6 +9671,7 @@ paths: tags: - domains.domainDnsRecord summary: Delete navigation property verificationDnsRecords for domains + 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' operationId: domains_DeleteVerificationDnsRecords parameters: - name: domain-id @@ -9599,6 +9881,7 @@ paths: tags: - organization.organization summary: Get entity from organization by key + description: The organization resource represents an instance of global settings and resources which operate and are provisioned at the tenant-level. operationId: organization.organization_GetOrganization parameters: - name: organization-id @@ -9696,6 +9979,7 @@ paths: tags: - organization.organization summary: Update entity in organization + description: The organization resource represents an instance of global settings and resources which operate and are provisioned at the tenant-level. operationId: organization.organization_UpdateOrganization parameters: - name: organization-id @@ -9722,6 +10006,7 @@ paths: tags: - organization.organization summary: Delete entity from organization + description: The organization resource represents an instance of global settings and resources which operate and are provisioned at the tenant-level. operationId: organization.organization_DeleteOrganization parameters: - name: organization-id @@ -9858,6 +10143,7 @@ paths: tags: - organization.extension summary: Get extensions from organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_ListExtensions parameters: - name: organization-id @@ -9936,6 +10222,7 @@ paths: tags: - organization.extension summary: Create new navigation property to extensions for organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_CreateExtensions parameters: - name: organization-id @@ -9967,6 +10254,7 @@ paths: tags: - organization.extension summary: Get extensions from organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_GetExtensions parameters: - name: organization-id @@ -10021,6 +10309,7 @@ paths: tags: - organization.extension summary: Update the navigation property extensions in organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_UpdateExtensions parameters: - name: organization-id @@ -10054,6 +10343,7 @@ paths: tags: - organization.extension summary: Delete navigation property extensions for organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_DeleteExtensions parameters: - name: organization-id @@ -10081,6 +10371,49 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + '/organization/{organization-id}/microsoft.graph.activateService': + post: + tags: + - organization.Actions + summary: Invoke action activateService + operationId: organization_activateService + parameters: + - name: organization-id + in: path + description: 'key: id of organization' + required: true + schema: + type: string + x-ms-docs-key-type: organization + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + service: + type: string + 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 + format: uuid + nullable: true + skuId: + 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 + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/organization/{organization-id}/microsoft.graph.checkMemberGroups': post: tags: @@ -10270,6 +10603,7 @@ paths: tags: - organization.Actions summary: Invoke action setMobileDeviceManagementAuthority + description: Set mobile device management authority operationId: organization_setMobileDeviceManagementAuthority parameters: - name: organization-id @@ -10297,6 +10631,7 @@ paths: tags: - organization.organizationSettings summary: Get settings from organization + description: Retrieve the properties and relationships of organizationSettings object. Nullable. operationId: organization_GetSettings parameters: - name: organization-id @@ -10357,6 +10692,7 @@ paths: tags: - organization.organizationSettings summary: Update the navigation property settings in organization + description: Retrieve the properties and relationships of organizationSettings object. Nullable. operationId: organization_UpdateSettings parameters: - name: organization-id @@ -10383,6 +10719,7 @@ paths: tags: - organization.organizationSettings summary: Delete navigation property settings for organization + description: Retrieve the properties and relationships of organizationSettings object. Nullable. operationId: organization_DeleteSettings parameters: - name: organization-id @@ -10408,6 +10745,7 @@ paths: tags: - organization.organizationSettings summary: Get itemInsights from organization + description: 'Contains the properties that are configured by an administrator for the visibility of Microsoft Graph-derived insights, between a user and other items in Microsoft 365, such as documents or sites. Get itemInsightsSettings through this navigation property.' operationId: organization.settings_GetItemInsights parameters: - name: organization-id @@ -10457,6 +10795,7 @@ paths: tags: - organization.organizationSettings summary: Update the navigation property itemInsights in organization + description: 'Contains the properties that are configured by an administrator for the visibility of Microsoft Graph-derived insights, between a user and other items in Microsoft 365, such as documents or sites. Get itemInsightsSettings through this navigation property.' operationId: organization.settings_UpdateItemInsights parameters: - name: organization-id @@ -10483,6 +10822,7 @@ paths: tags: - organization.organizationSettings summary: Delete navigation property itemInsights for organization + description: 'Contains the properties that are configured by an administrator for the visibility of Microsoft Graph-derived insights, between a user and other items in Microsoft 365, such as documents or sites. Get itemInsightsSettings through this navigation property.' operationId: organization.settings_DeleteItemInsights parameters: - name: organization-id @@ -10508,6 +10848,7 @@ paths: tags: - organization.organizationSettings summary: Get profileCardProperties from organization + description: Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. Get organization settings returns the properties configured for profile cards for the organization. operationId: organization.settings_ListProfileCardProperties parameters: - name: organization-id @@ -10592,6 +10933,7 @@ paths: tags: - organization.organizationSettings summary: Create new navigation property to profileCardProperties for organization + description: Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. Get organization settings returns the properties configured for profile cards for the organization. operationId: organization.settings_CreateProfileCardProperties parameters: - name: organization-id @@ -10623,6 +10965,7 @@ paths: tags: - organization.organizationSettings summary: Get profileCardProperties from organization + description: Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. Get organization settings returns the properties configured for profile cards for the organization. operationId: organization.settings_GetProfileCardProperties parameters: - name: organization-id @@ -10679,6 +11022,7 @@ paths: tags: - organization.organizationSettings summary: Update the navigation property profileCardProperties in organization + description: Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. Get organization settings returns the properties configured for profile cards for the organization. operationId: organization.settings_UpdateProfileCardProperties parameters: - name: organization-id @@ -10712,6 +11056,7 @@ paths: tags: - organization.organizationSettings summary: Delete navigation property profileCardProperties for organization + description: Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. Get organization settings returns the properties configured for profile cards for the organization. operationId: organization.settings_DeleteProfileCardProperties parameters: - name: organization-id @@ -11273,6 +11618,7 @@ paths: tags: - users.scopedRoleMembership summary: Get scopedRoleMemberOf from users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_ListScopedRoleMemberOf parameters: - name: user-id @@ -11360,6 +11706,7 @@ paths: tags: - users.scopedRoleMembership summary: Create new navigation property to scopedRoleMemberOf for users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_CreateScopedRoleMemberOf parameters: - name: user-id @@ -11391,6 +11738,7 @@ paths: tags: - users.scopedRoleMembership summary: Get scopedRoleMemberOf from users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_GetScopedRoleMemberOf parameters: - name: user-id @@ -11448,6 +11796,7 @@ paths: tags: - users.scopedRoleMembership summary: Update the navigation property scopedRoleMemberOf in users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_UpdateScopedRoleMemberOf parameters: - name: user-id @@ -11481,6 +11830,7 @@ paths: tags: - users.scopedRoleMembership summary: Delete navigation property scopedRoleMemberOf for users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_DeleteScopedRoleMemberOf parameters: - name: user-id @@ -11667,6 +12017,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + 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. @@ -11857,11 +12211,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -11876,6 +12231,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -11885,7 +12241,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -12241,7 +12597,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 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.' + description: 'The time and date at which the tenant was last 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.' format: date-time nullable: true onPremisesSyncEnabled: diff --git a/openApiDocs/beta/Identity.Governance.yml b/openApiDocs/beta/Identity.Governance.yml index 4d491e7389c..99a96a6b4f2 100644 --- a/openApiDocs/beta/Identity.Governance.yml +++ b/openApiDocs/beta/Identity.Governance.yml @@ -276,6 +276,7 @@ paths: tags: - accessReviews.accessReviewDecision summary: Get decisions from accessReviews + description: The collection of decisions for this access review. operationId: accessReviews_ListDecisions parameters: - name: accessReview-id @@ -381,6 +382,7 @@ paths: tags: - accessReviews.accessReviewDecision summary: Create new navigation property to decisions for accessReviews + description: The collection of decisions for this access review. operationId: accessReviews_CreateDecisions parameters: - name: accessReview-id @@ -412,6 +414,7 @@ paths: tags: - accessReviews.accessReviewDecision summary: Get decisions from accessReviews + description: The collection of decisions for this access review. operationId: accessReviews_GetDecisions parameters: - name: accessReview-id @@ -475,6 +478,7 @@ paths: tags: - accessReviews.accessReviewDecision summary: Update the navigation property decisions in accessReviews + description: The collection of decisions for this access review. operationId: accessReviews_UpdateDecisions parameters: - name: accessReview-id @@ -508,6 +512,7 @@ paths: tags: - accessReviews.accessReviewDecision summary: Delete navigation property decisions for accessReviews + description: The collection of decisions for this access review. operationId: accessReviews_DeleteDecisions parameters: - name: accessReview-id @@ -540,6 +545,7 @@ paths: tags: - accessReviews.accessReview summary: Get instances from accessReviews + description: 'The collection of access reviews instances past, present and future, if this object is a recurring access review.' operationId: accessReviews_ListInstances parameters: - name: accessReview-id @@ -656,6 +662,7 @@ paths: tags: - accessReviews.accessReview summary: Create new navigation property to instances for accessReviews + description: 'The collection of access reviews instances past, present and future, if this object is a recurring access review.' operationId: accessReviews_CreateInstances parameters: - name: accessReview-id @@ -687,6 +694,7 @@ paths: tags: - accessReviews.accessReview summary: Get instances from accessReviews + description: 'The collection of access reviews instances past, present and future, if this object is a recurring access review.' operationId: accessReviews_GetInstances parameters: - name: accessReview-id @@ -780,6 +788,7 @@ paths: tags: - accessReviews.accessReview summary: Update the navigation property instances in accessReviews + description: 'The collection of access reviews instances past, present and future, if this object is a recurring access review.' operationId: accessReviews_UpdateInstances parameters: - name: accessReview-id @@ -813,6 +822,7 @@ paths: tags: - accessReviews.accessReview summary: Delete navigation property instances for accessReviews + description: 'The collection of access reviews instances past, present and future, if this object is a recurring access review.' operationId: accessReviews_DeleteInstances parameters: - name: accessReview-id @@ -925,6 +935,7 @@ paths: tags: - accessReviews.accessReviewDecision summary: Get myDecisions from accessReviews + description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews_ListMyDecisions parameters: - name: accessReview-id @@ -1030,6 +1041,7 @@ paths: tags: - accessReviews.accessReviewDecision summary: Create new navigation property to myDecisions for accessReviews + description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews_CreateMyDecisions parameters: - name: accessReview-id @@ -1061,6 +1073,7 @@ paths: tags: - accessReviews.accessReviewDecision summary: Get myDecisions from accessReviews + description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews_GetMyDecisions parameters: - name: accessReview-id @@ -1124,6 +1137,7 @@ paths: tags: - accessReviews.accessReviewDecision summary: Update the navigation property myDecisions in accessReviews + description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews_UpdateMyDecisions parameters: - name: accessReview-id @@ -1157,6 +1171,7 @@ paths: tags: - accessReviews.accessReviewDecision summary: Delete navigation property myDecisions for accessReviews + description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews_DeleteMyDecisions parameters: - name: accessReview-id @@ -1189,6 +1204,7 @@ paths: tags: - accessReviews.accessReviewReviewer summary: Get reviewers from accessReviews + description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews_ListReviewers parameters: - name: accessReview-id @@ -1273,6 +1289,7 @@ paths: tags: - accessReviews.accessReviewReviewer summary: Create new navigation property to reviewers for accessReviews + description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews_CreateReviewers parameters: - name: accessReview-id @@ -1304,6 +1321,7 @@ paths: tags: - accessReviews.accessReviewReviewer summary: Get reviewers from accessReviews + description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews_GetReviewers parameters: - name: accessReview-id @@ -1360,6 +1378,7 @@ paths: tags: - accessReviews.accessReviewReviewer summary: Update the navigation property reviewers in accessReviews + description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews_UpdateReviewers parameters: - name: accessReview-id @@ -1393,6 +1412,7 @@ paths: tags: - accessReviews.accessReviewReviewer summary: Delete navigation property reviewers for accessReviews + description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews_DeleteReviewers parameters: - name: accessReview-id @@ -1662,6 +1682,7 @@ paths: tags: - agreements.agreementAcceptance summary: Get acceptances from agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_ListAcceptances parameters: - name: agreement-id @@ -1779,6 +1800,7 @@ paths: tags: - agreements.agreementAcceptance summary: Create new navigation property to acceptances for agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_CreateAcceptances parameters: - name: agreement-id @@ -1810,6 +1832,7 @@ paths: tags: - agreements.agreementAcceptance summary: Get acceptances from agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_GetAcceptances parameters: - name: agreement-id @@ -1877,6 +1900,7 @@ paths: tags: - agreements.agreementAcceptance summary: Update the navigation property acceptances in agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_UpdateAcceptances parameters: - name: agreement-id @@ -1910,6 +1934,7 @@ paths: tags: - agreements.agreementAcceptance summary: Delete navigation property acceptances for agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_DeleteAcceptances parameters: - name: agreement-id @@ -1942,6 +1967,7 @@ paths: tags: - agreements.agreementFile summary: Get file from agreements + description: Default PDF linked to this agreement. operationId: agreements_GetFile parameters: - name: agreement-id @@ -2003,6 +2029,7 @@ paths: tags: - agreements.agreementFile summary: Update the navigation property file in agreements + description: Default PDF linked to this agreement. operationId: agreements_UpdateFile parameters: - name: agreement-id @@ -2029,6 +2056,7 @@ paths: tags: - agreements.agreementFile summary: Delete navigation property file for agreements + description: Default PDF linked to this agreement. operationId: agreements_DeleteFile parameters: - name: agreement-id @@ -2611,6 +2639,7 @@ paths: tags: - agreements.agreementFileLocalization summary: Get files from agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_ListFiles parameters: - name: agreement-id @@ -2712,6 +2741,7 @@ paths: tags: - agreements.agreementFileLocalization summary: Create new navigation property to files for agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_CreateFiles parameters: - name: agreement-id @@ -2743,6 +2773,7 @@ paths: tags: - agreements.agreementFileLocalization summary: Get files from agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_GetFiles parameters: - name: agreement-id @@ -2812,6 +2843,7 @@ paths: tags: - agreements.agreementFileLocalization summary: Update the navigation property files in agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_UpdateFiles parameters: - name: agreement-id @@ -2845,6 +2877,7 @@ paths: tags: - agreements.agreementFileLocalization summary: Delete navigation property files for agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_DeleteFiles parameters: - name: agreement-id @@ -3359,6 +3392,45 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + '/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/microsoft.graph.filterByCurrentUser(on={on})': + get: + tags: + - identityGovernance.Functions + summary: Invoke function filterByCurrentUser + operationId: identityGovernance.accessReviews.definitions.instances.decisions_filterByCurrentUser + 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 + - name: on + in: path + description: 'Usage: on={on}' + required: true + schema: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions' + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/definition/microsoft.graph.stop': post: tags: @@ -3570,6 +3642,38 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/microsoft.graph.filterByCurrentUser(on={on})': + get: + tags: + - identityGovernance.Functions + summary: Invoke function filterByCurrentUser + operationId: identityGovernance.accessReviews.definitions.instances_filterByCurrentUser + parameters: + - name: accessReviewScheduleDefinition-id + in: path + description: 'key: id of accessReviewScheduleDefinition' + required: true + schema: + type: string + x-ms-docs-key-type: accessReviewScheduleDefinition + - name: on + in: path + description: 'Usage: on={on}' + required: true + schema: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceFilterByCurrentUserOptions' + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/microsoft.graph.stop': post: tags: @@ -3590,6 +3694,31 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/identityGovernance/accessReviews/definitions/microsoft.graph.filterByCurrentUser(on={on})': + get: + tags: + - identityGovernance.Functions + summary: Invoke function filterByCurrentUser + operationId: identityGovernance.accessReviews.definitions_filterByCurrentUser + parameters: + - name: on + in: path + description: 'Usage: on={on}' + required: true + schema: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinitionFilterByCurrentUserOptions' + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinition' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/microsoft.graph.generateDownloadUri': post: tags: @@ -4552,6 +4681,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies_GetAccessPackage parameters: - name: accessPackageAssignmentPolicy-id @@ -4628,6 +4758,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies_GetRefAccessPackage parameters: - name: accessPackageAssignmentPolicy-id @@ -4664,6 +4795,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies_SetRefAccessPackage parameters: - name: accessPackageAssignmentPolicy-id @@ -4692,6 +4824,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies_DeleteRefAccessPackage parameters: - name: accessPackageAssignmentPolicy-id @@ -5103,6 +5236,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -5189,6 +5323,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -5222,6 +5357,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -5254,6 +5390,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -5327,6 +5464,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -5363,6 +5501,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -5398,6 +5537,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -5430,6 +5570,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -5529,6 +5670,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -5567,6 +5709,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -5641,6 +5784,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -5681,6 +5825,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -5720,6 +5865,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -5828,6 +5974,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -5866,6 +6013,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -5943,6 +6091,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -5983,6 +6132,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -6022,6 +6172,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -6118,6 +6269,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -6158,6 +6310,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -6197,6 +6350,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog_ListAccessPackageResources parameters: - name: accessPackageAssignmentPolicy-id @@ -6311,6 +6465,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog_CreateAccessPackageResources parameters: - name: accessPackageAssignmentPolicy-id @@ -6342,6 +6497,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog_GetAccessPackageResources parameters: - name: accessPackageAssignmentPolicy-id @@ -6428,6 +6584,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResources in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog_UpdateAccessPackageResources parameters: - name: accessPackageAssignmentPolicy-id @@ -6461,6 +6618,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog_DeleteAccessPackageResources parameters: - name: accessPackageAssignmentPolicy-id @@ -6493,6 +6651,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -6566,6 +6725,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -6602,6 +6762,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -6637,6 +6798,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -6669,6 +6831,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -6768,6 +6931,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -6806,6 +6970,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -6880,6 +7045,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -6920,6 +7086,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -6959,6 +7126,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -7055,6 +7223,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -7095,6 +7264,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -7134,6 +7304,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -7242,6 +7413,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -7280,6 +7452,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -7357,6 +7530,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -7397,6 +7571,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -7436,6 +7611,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -7532,6 +7708,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -7572,6 +7749,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -7877,6 +8055,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -7963,6 +8142,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -7996,6 +8176,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -8028,6 +8209,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -8101,6 +8283,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -8137,6 +8320,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -8172,6 +8356,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -8204,6 +8389,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -8303,6 +8489,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -8341,6 +8528,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -8415,6 +8603,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -8455,6 +8644,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -8494,6 +8684,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -8590,6 +8781,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -8630,6 +8822,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -8669,6 +8862,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -8777,6 +8971,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -8815,6 +9010,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -8892,6 +9088,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -8932,6 +9129,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -8971,6 +9169,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog_ListAccessPackages parameters: - name: accessPackageAssignmentPolicy-id @@ -9082,6 +9281,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog_CreateAccessPackages parameters: - name: accessPackageAssignmentPolicy-id @@ -9113,6 +9313,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog_GetAccessPackages parameters: - name: accessPackageAssignmentPolicy-id @@ -9198,6 +9399,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackages in identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog_UpdateAccessPackages parameters: - name: accessPackageAssignmentPolicy-id @@ -9231,6 +9433,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog_DeleteAccessPackages parameters: - name: accessPackageAssignmentPolicy-id @@ -9263,6 +9466,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_ListAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentPolicy-id @@ -9394,6 +9598,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_CreateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentPolicy-id @@ -9432,6 +9637,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_GetAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentPolicy-id @@ -9524,6 +9730,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicies in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_UpdateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentPolicy-id @@ -9564,6 +9771,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_DeleteAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentPolicy-id @@ -9603,6 +9811,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_GetAccessPackageCatalog parameters: - name: accessPackageAssignmentPolicy-id @@ -9696,6 +9905,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_GetRefAccessPackageCatalog parameters: - name: accessPackageAssignmentPolicy-id @@ -9747,6 +9957,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageCatalog in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_SetRefAccessPackageCatalog parameters: - name: accessPackageAssignmentPolicy-id @@ -9782,6 +9993,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageCatalog for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_DeleteRefAccessPackageCatalog parameters: - name: accessPackageAssignmentPolicy-id @@ -9814,6 +10026,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_ListAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -9915,6 +10128,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_CreateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -9953,6 +10167,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_GetAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -10035,6 +10250,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoleScopes in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_UpdateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -10075,6 +10291,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_DeleteAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -10114,6 +10331,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageAssignmentPolicy-id @@ -10188,6 +10406,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceRole parameters: - name: accessPackageAssignmentPolicy-id @@ -10228,6 +10447,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceRole parameters: - name: accessPackageAssignmentPolicy-id @@ -10267,6 +10487,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -10363,6 +10584,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -10403,6 +10625,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -10442,6 +10665,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -10523,6 +10747,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -10567,6 +10792,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -10609,6 +10835,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -10648,6 +10875,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -10754,6 +10982,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -10799,6 +11028,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -10881,6 +11111,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -10928,6 +11159,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -10974,6 +11206,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -11089,6 +11322,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -11134,6 +11368,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -11219,6 +11454,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -11266,6 +11502,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -11312,6 +11549,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -11418,6 +11656,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -11465,6 +11704,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -11511,6 +11751,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceScope parameters: - name: accessPackageAssignmentPolicy-id @@ -11588,6 +11829,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceScope parameters: - name: accessPackageAssignmentPolicy-id @@ -11628,6 +11870,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceScope parameters: - name: accessPackageAssignmentPolicy-id @@ -11667,6 +11910,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -11763,6 +12007,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -11803,6 +12048,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -11842,6 +12088,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -11923,6 +12170,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -11967,6 +12215,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -12009,6 +12258,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentPolicy-id @@ -12048,6 +12298,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -12154,6 +12405,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -12199,6 +12451,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -12281,6 +12534,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -12328,6 +12582,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentPolicy-id @@ -12374,6 +12629,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -12480,6 +12736,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -12527,6 +12784,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentPolicy-id @@ -12573,6 +12831,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -12688,6 +12947,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -12733,6 +12993,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -12818,6 +13079,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -12865,6 +13127,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentPolicy-id @@ -13226,6 +13489,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_GetAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -13302,6 +13566,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_GetRefAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -13338,6 +13603,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_SetRefAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -13366,6 +13632,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_DeleteRefAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -13529,6 +13796,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_GetAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -13604,6 +13872,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackage in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_UpdateAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -13630,6 +13899,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackage for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_DeleteAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -13655,6 +13925,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_ListAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentRequest-id @@ -13779,6 +14050,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_CreateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentRequest-id @@ -13810,6 +14082,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_GetAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentRequest-id @@ -13893,6 +14166,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicies in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_UpdateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentRequest-id @@ -13926,6 +14200,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_DeleteAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentRequest-id @@ -13958,6 +14233,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies_GetAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -14044,6 +14320,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies_GetRefAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -14090,6 +14367,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies_SetRefAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -14125,6 +14403,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies_DeleteRefAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -14604,6 +14883,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -14700,6 +14980,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -14740,6 +15021,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -14779,6 +15061,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -14860,6 +15143,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -14904,6 +15188,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -14946,6 +15231,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -14985,6 +15271,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -15091,6 +15378,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -15136,6 +15424,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -15218,6 +15507,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -15265,6 +15555,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -15311,6 +15602,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -15426,6 +15718,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -15471,6 +15764,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -15556,6 +15850,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -15603,6 +15898,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -15649,6 +15945,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -15755,6 +16052,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -15802,6 +16100,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -15848,6 +16147,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_ListAccessPackageResources parameters: - name: accessPackageAssignmentRequest-id @@ -15969,6 +16269,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_CreateAccessPackageResources parameters: - name: accessPackageAssignmentRequest-id @@ -16007,6 +16308,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_GetAccessPackageResources parameters: - name: accessPackageAssignmentRequest-id @@ -16103,6 +16405,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResources in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_UpdateAccessPackageResources parameters: - name: accessPackageAssignmentRequest-id @@ -16143,6 +16446,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_DeleteAccessPackageResources parameters: - name: accessPackageAssignmentRequest-id @@ -16182,6 +16486,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -16263,6 +16568,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -16307,6 +16613,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -16349,6 +16656,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -16388,6 +16696,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -16494,6 +16803,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -16539,6 +16849,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -16621,6 +16932,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -16668,6 +16980,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -16714,6 +17027,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -16820,6 +17134,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -16867,6 +17182,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -16913,6 +17229,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -17028,6 +17345,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -17073,6 +17391,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -17158,6 +17477,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -17205,6 +17525,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -17251,6 +17572,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -17357,6 +17679,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -17404,6 +17727,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -17752,6 +18076,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -17848,6 +18173,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -17888,6 +18214,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -17927,6 +18254,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -18008,6 +18336,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -18052,6 +18381,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -18094,6 +18424,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -18133,6 +18464,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -18239,6 +18571,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -18284,6 +18617,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -18366,6 +18700,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -18413,6 +18748,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -18459,6 +18795,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -18565,6 +18902,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -18612,6 +18950,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -18658,6 +18997,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -18773,6 +19113,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -18818,6 +19159,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -18903,6 +19245,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -18950,6 +19293,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -18996,6 +19340,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_ListAccessPackages parameters: - name: accessPackageAssignmentRequest-id @@ -19114,6 +19459,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_CreateAccessPackages parameters: - name: accessPackageAssignmentRequest-id @@ -19152,6 +19498,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_GetAccessPackages parameters: - name: accessPackageAssignmentRequest-id @@ -19247,6 +19594,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackages in identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_UpdateAccessPackages parameters: - name: accessPackageAssignmentRequest-id @@ -19287,6 +19635,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_DeleteAccessPackages parameters: - name: accessPackageAssignmentRequest-id @@ -19398,6 +19747,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_GetAccessPackageCatalog parameters: - name: accessPackageAssignmentRequest-id @@ -19480,6 +19830,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_GetRefAccessPackageCatalog parameters: - name: accessPackageAssignmentRequest-id @@ -19520,6 +19871,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageCatalog in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_SetRefAccessPackageCatalog parameters: - name: accessPackageAssignmentRequest-id @@ -19548,6 +19900,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageCatalog for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_DeleteRefAccessPackageCatalog parameters: - name: accessPackageAssignmentRequest-id @@ -19573,6 +19926,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_ListAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentRequest-id @@ -19667,6 +20021,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_CreateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentRequest-id @@ -19698,6 +20053,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_GetAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentRequest-id @@ -19771,6 +20127,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoleScopes in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_UpdateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentRequest-id @@ -19804,6 +20161,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage_DeleteAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentRequest-id @@ -19836,6 +20194,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageAssignmentRequest-id @@ -19902,6 +20261,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes_UpdateAccessPackageResourceRole parameters: - name: accessPackageAssignmentRequest-id @@ -19935,6 +20295,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes_DeleteAccessPackageResourceRole parameters: - name: accessPackageAssignmentRequest-id @@ -19967,6 +20328,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -20053,6 +20415,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -20086,6 +20449,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -20118,6 +20482,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -20191,6 +20556,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -20227,6 +20593,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -20262,6 +20629,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -20294,6 +20662,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -20393,6 +20762,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -20431,6 +20801,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -20505,6 +20876,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -20545,6 +20917,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -20584,6 +20957,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -20692,6 +21066,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -20730,6 +21105,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -20807,6 +21183,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -20847,6 +21224,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -20886,6 +21264,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -20982,6 +21361,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -21022,6 +21402,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -21061,6 +21442,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes_GetAccessPackageResourceScope parameters: - name: accessPackageAssignmentRequest-id @@ -21130,6 +21512,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes_UpdateAccessPackageResourceScope parameters: - name: accessPackageAssignmentRequest-id @@ -21163,6 +21546,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes_DeleteAccessPackageResourceScope parameters: - name: accessPackageAssignmentRequest-id @@ -21195,6 +21579,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -21281,6 +21666,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -21314,6 +21700,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -21346,6 +21733,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -21419,6 +21807,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -21455,6 +21844,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -21490,6 +21880,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -21522,6 +21913,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -21621,6 +22013,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -21659,6 +22052,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -21733,6 +22127,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -21773,6 +22168,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -21812,6 +22208,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -21908,6 +22305,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -21948,6 +22346,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -21987,6 +22386,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -22095,6 +22495,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -22133,6 +22534,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -22210,6 +22612,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -22250,6 +22653,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -22289,6 +22693,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicy from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_GetAccessPackageAssignmentPolicy parameters: - name: accessPackageAssignmentRequest-id @@ -22363,6 +22768,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicy in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_UpdateAccessPackageAssignmentPolicy parameters: - name: accessPackageAssignmentRequest-id @@ -22389,6 +22795,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicy for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_DeleteAccessPackageAssignmentPolicy parameters: - name: accessPackageAssignmentRequest-id @@ -22414,6 +22821,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy_GetAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -22490,6 +22898,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy_GetRefAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -22526,6 +22935,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy_SetRefAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -22554,6 +22964,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy_DeleteRefAccessPackage parameters: - name: accessPackageAssignmentRequest-id @@ -22965,6 +23376,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -23051,6 +23463,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -23084,6 +23497,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -23116,6 +23530,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -23189,6 +23604,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -23225,6 +23641,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -23260,6 +23677,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -23292,6 +23710,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -23391,6 +23810,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -23429,6 +23849,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -23503,6 +23924,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -23543,6 +23965,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -23582,6 +24005,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -23690,6 +24114,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -23728,6 +24153,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -23805,6 +24231,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -23845,6 +24272,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -23884,6 +24312,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -23980,6 +24409,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -24020,6 +24450,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -24059,6 +24490,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog_ListAccessPackageResources parameters: - name: accessPackageAssignmentRequest-id @@ -24173,6 +24605,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog_CreateAccessPackageResources parameters: - name: accessPackageAssignmentRequest-id @@ -24204,6 +24637,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog_GetAccessPackageResources parameters: - name: accessPackageAssignmentRequest-id @@ -24290,6 +24724,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResources in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog_UpdateAccessPackageResources parameters: - name: accessPackageAssignmentRequest-id @@ -24323,6 +24758,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog_DeleteAccessPackageResources parameters: - name: accessPackageAssignmentRequest-id @@ -24355,6 +24791,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -24428,6 +24865,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -24464,6 +24902,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -24499,6 +24938,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -24531,6 +24971,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -24630,6 +25071,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -24668,6 +25110,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -24742,6 +25185,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -24782,6 +25226,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -24821,6 +25266,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -24917,6 +25363,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -24957,6 +25404,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -24996,6 +25444,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -25104,6 +25553,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -25142,6 +25592,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -25219,6 +25670,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -25259,6 +25711,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -25298,6 +25751,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -25394,6 +25848,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -25434,6 +25889,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -25739,6 +26195,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -25825,6 +26282,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -25858,6 +26316,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -25890,6 +26349,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -25963,6 +26423,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -25999,6 +26460,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -26034,6 +26496,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -26066,6 +26529,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -26165,6 +26629,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -26203,6 +26668,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -26277,6 +26743,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -26317,6 +26784,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -26356,6 +26824,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -26452,6 +26921,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -26492,6 +26962,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -26531,6 +27002,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -26639,6 +27111,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -26677,6 +27150,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -26754,6 +27228,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -26794,6 +27269,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -26833,6 +27309,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog_ListAccessPackages parameters: - name: accessPackageAssignmentRequest-id @@ -26944,6 +27421,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog_CreateAccessPackages parameters: - name: accessPackageAssignmentRequest-id @@ -26975,6 +27453,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog_GetAccessPackages parameters: - name: accessPackageAssignmentRequest-id @@ -27060,6 +27539,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackages in identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog_UpdateAccessPackages parameters: - name: accessPackageAssignmentRequest-id @@ -27093,6 +27573,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog_DeleteAccessPackages parameters: - name: accessPackageAssignmentRequest-id @@ -27125,6 +27606,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_ListAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentRequest-id @@ -27256,6 +27738,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_CreateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentRequest-id @@ -27294,6 +27777,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentRequest-id @@ -27386,6 +27870,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicies in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_UpdateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentRequest-id @@ -27426,6 +27911,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_DeleteAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentRequest-id @@ -27465,6 +27951,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetAccessPackageCatalog parameters: - name: accessPackageAssignmentRequest-id @@ -27558,6 +28045,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetRefAccessPackageCatalog parameters: - name: accessPackageAssignmentRequest-id @@ -27609,6 +28097,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageCatalog in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_SetRefAccessPackageCatalog parameters: - name: accessPackageAssignmentRequest-id @@ -27644,6 +28133,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageCatalog for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_DeleteRefAccessPackageCatalog parameters: - name: accessPackageAssignmentRequest-id @@ -27676,6 +28166,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_ListAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentRequest-id @@ -27777,6 +28268,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_CreateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentRequest-id @@ -27815,6 +28307,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentRequest-id @@ -27897,6 +28390,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoleScopes in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_UpdateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentRequest-id @@ -27937,6 +28431,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_DeleteAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentRequest-id @@ -27976,6 +28471,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageAssignmentRequest-id @@ -28050,6 +28546,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceRole parameters: - name: accessPackageAssignmentRequest-id @@ -28090,6 +28587,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceRole parameters: - name: accessPackageAssignmentRequest-id @@ -28129,6 +28627,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -28225,6 +28724,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -28265,6 +28765,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -28304,6 +28805,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -28385,6 +28887,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -28429,6 +28932,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -28471,6 +28975,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -28510,6 +29015,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -28616,6 +29122,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -28661,6 +29168,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -28743,6 +29251,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -28790,6 +29299,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -28836,6 +29346,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -28951,6 +29462,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -28996,6 +29508,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -29081,6 +29594,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -29128,6 +29642,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -29174,6 +29689,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -29280,6 +29796,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -29327,6 +29844,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -29373,6 +29891,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceScope parameters: - name: accessPackageAssignmentRequest-id @@ -29450,6 +29969,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceScope parameters: - name: accessPackageAssignmentRequest-id @@ -29490,6 +30010,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceScope parameters: - name: accessPackageAssignmentRequest-id @@ -29529,6 +30050,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -29625,6 +30147,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -29665,6 +30188,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -29704,6 +30228,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -29785,6 +30310,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -29829,6 +30355,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -29871,6 +30398,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -29910,6 +30438,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -30016,6 +30545,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -30061,6 +30591,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -30143,6 +30674,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -30190,6 +30722,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -30236,6 +30769,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -30342,6 +30876,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -30389,6 +30924,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -30435,6 +30971,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -30550,6 +31087,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -30595,6 +31133,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -30680,6 +31219,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -30727,6 +31267,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -31186,6 +31727,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentResourceRoles from identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_ListAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -31281,6 +31823,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentResourceRoles for identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_CreateAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -31312,6 +31855,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentResourceRoles from identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_GetAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -31398,6 +31942,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentResourceRoles in identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_UpdateAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -31431,6 +31976,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentResourceRoles for identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_DeleteAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -31463,6 +32009,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_ListAccessPackageAssignments parameters: - name: accessPackageAssignmentRequest-id @@ -31585,6 +32132,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignments for identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_CreateAccessPackageAssignments parameters: - name: accessPackageAssignmentRequest-id @@ -31623,6 +32171,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_GetAccessPackageAssignments parameters: - name: accessPackageAssignmentRequest-id @@ -31734,6 +32283,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignments in identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_UpdateAccessPackageAssignments parameters: - name: accessPackageAssignmentRequest-id @@ -31774,6 +32324,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignments for identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_DeleteAccessPackageAssignments parameters: - name: accessPackageAssignmentRequest-id @@ -31852,6 +32403,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_GetAccessPackageResourceRole parameters: - name: accessPackageAssignmentRequest-id @@ -31918,6 +32470,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_UpdateAccessPackageResourceRole parameters: - name: accessPackageAssignmentRequest-id @@ -31951,6 +32504,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_DeleteAccessPackageResourceRole parameters: - name: accessPackageAssignmentRequest-id @@ -31983,6 +32537,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -32069,6 +32624,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -32102,6 +32658,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -32134,6 +32691,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -32207,6 +32765,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -32243,6 +32802,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -32278,6 +32838,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -32310,6 +32871,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -32409,6 +32971,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -32447,6 +33010,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -32521,6 +33085,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -32561,6 +33126,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -32600,6 +33166,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -32708,6 +33275,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -32746,6 +33314,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -32823,6 +33392,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -32863,6 +33433,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -32902,6 +33473,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -32998,6 +33570,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -33038,6 +33611,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -33077,6 +33651,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_GetAccessPackageResourceScope parameters: - name: accessPackageAssignmentRequest-id @@ -33146,6 +33721,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_UpdateAccessPackageResourceScope parameters: - name: accessPackageAssignmentRequest-id @@ -33179,6 +33755,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_DeleteAccessPackageResourceScope parameters: - name: accessPackageAssignmentRequest-id @@ -33211,6 +33788,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -33297,6 +33875,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -33330,6 +33909,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -33362,6 +33942,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -33435,6 +34016,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -33471,6 +34053,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -33506,6 +34089,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentRequest-id @@ -33538,6 +34122,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -33637,6 +34222,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -33675,6 +34261,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -33749,6 +34336,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -33789,6 +34377,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentRequest-id @@ -33828,6 +34417,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -33924,6 +34514,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -33964,6 +34555,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentRequest-id @@ -34003,6 +34595,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -34111,6 +34704,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -34149,6 +34743,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -34226,6 +34821,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -34266,6 +34862,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentRequest-id @@ -34305,6 +34902,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageSubject from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_GetAccessPackageSubject parameters: - name: accessPackageAssignmentRequest-id @@ -34375,6 +34973,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageSubject in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_UpdateAccessPackageSubject parameters: - name: accessPackageAssignmentRequest-id @@ -34408,6 +35007,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageSubject for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles_DeleteAccessPackageSubject parameters: - name: accessPackageAssignmentRequest-id @@ -34652,6 +35252,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get target from identityGovernance + description: The subject of the access package assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_GetTarget parameters: - name: accessPackageAssignmentRequest-id @@ -34714,6 +35315,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property target in identityGovernance + description: The subject of the access package assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_UpdateTarget parameters: - name: accessPackageAssignmentRequest-id @@ -34740,6 +35342,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property target for identityGovernance + description: The subject of the access package assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment_DeleteTarget parameters: - name: accessPackageAssignmentRequest-id @@ -34939,6 +35542,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get requestor from identityGovernance + description: 'The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable.' operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_GetRequestor parameters: - name: accessPackageAssignmentRequest-id @@ -35001,6 +35605,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property requestor in identityGovernance + description: 'The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable.' operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_UpdateRequestor parameters: - name: accessPackageAssignmentRequest-id @@ -35027,6 +35632,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property requestor for identityGovernance + description: 'The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable.' operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_DeleteRequestor parameters: - name: accessPackageAssignmentRequest-id @@ -35468,6 +36074,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_ListAccessPackageAssignments parameters: - name: accessPackageAssignmentResourceRole-id @@ -35583,6 +36190,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignments for identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_CreateAccessPackageAssignments parameters: - name: accessPackageAssignmentResourceRole-id @@ -35614,6 +36222,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_GetAccessPackageAssignments parameters: - name: accessPackageAssignmentResourceRole-id @@ -35713,6 +36322,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignments in identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_UpdateAccessPackageAssignments parameters: - name: accessPackageAssignmentResourceRole-id @@ -35746,6 +36356,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignments for identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_DeleteAccessPackageAssignments parameters: - name: accessPackageAssignmentResourceRole-id @@ -35778,6 +36389,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_GetAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -35863,6 +36475,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackage in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_UpdateAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -35896,6 +36509,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackage for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_DeleteAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -35928,6 +36542,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_ListAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentResourceRole-id @@ -36059,6 +36674,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_CreateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentResourceRole-id @@ -36097,6 +36713,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_GetAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentResourceRole-id @@ -36189,6 +36806,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicies in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_UpdateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentResourceRole-id @@ -36229,6 +36847,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_DeleteAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentResourceRole-id @@ -36268,6 +36887,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies_GetAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -36364,6 +36984,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies_GetRefAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -36420,6 +37041,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies_SetRefAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -36462,6 +37084,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies_DeleteRefAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -37009,6 +37632,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -37115,6 +37739,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -37162,6 +37787,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -37208,6 +37834,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -37297,6 +37924,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -37349,6 +37977,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -37398,6 +38027,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -37444,6 +38074,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -37557,6 +38188,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -37609,6 +38241,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -37699,6 +38332,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -37753,6 +38387,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -37806,6 +38441,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -37928,6 +38564,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -37980,6 +38617,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -38073,6 +38711,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -38127,6 +38766,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -38180,6 +38820,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -38296,6 +38937,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -38350,6 +38992,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -38403,6 +39046,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_ListAccessPackageResources parameters: - name: accessPackageAssignmentResourceRole-id @@ -38531,6 +39175,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_CreateAccessPackageResources parameters: - name: accessPackageAssignmentResourceRole-id @@ -38576,6 +39221,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_GetAccessPackageResources parameters: - name: accessPackageAssignmentResourceRole-id @@ -38682,6 +39328,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResources in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_UpdateAccessPackageResources parameters: - name: accessPackageAssignmentResourceRole-id @@ -38729,6 +39376,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_DeleteAccessPackageResources parameters: - name: accessPackageAssignmentResourceRole-id @@ -38775,6 +39423,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -38864,6 +39513,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -38916,6 +39566,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -38965,6 +39616,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -39011,6 +39663,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -39124,6 +39777,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -39176,6 +39830,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -39266,6 +39921,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -39320,6 +39976,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -39373,6 +40030,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -39489,6 +40147,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -39543,6 +40202,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -39596,6 +40256,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -39718,6 +40379,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -39770,6 +40432,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -39863,6 +40526,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -39917,6 +40581,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -39970,6 +40635,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -40086,6 +40752,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -40140,6 +40807,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -40531,6 +41199,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -40637,6 +41306,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -40684,6 +41354,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -40730,6 +41401,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -40819,6 +41491,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -40871,6 +41544,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -40920,6 +41594,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -40966,6 +41641,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -41079,6 +41755,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -41131,6 +41808,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -41221,6 +41899,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -41275,6 +41954,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -41328,6 +42008,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -41444,6 +42125,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -41498,6 +42180,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -41551,6 +42234,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -41673,6 +42357,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -41725,6 +42410,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -41818,6 +42504,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -41872,6 +42559,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -41925,6 +42613,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_ListAccessPackages parameters: - name: accessPackageAssignmentResourceRole-id @@ -42050,6 +42739,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_CreateAccessPackages parameters: - name: accessPackageAssignmentResourceRole-id @@ -42095,6 +42785,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_GetAccessPackages parameters: - name: accessPackageAssignmentResourceRole-id @@ -42200,6 +42891,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackages in identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_UpdateAccessPackages parameters: - name: accessPackageAssignmentResourceRole-id @@ -42247,6 +42939,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_DeleteAccessPackages parameters: - name: accessPackageAssignmentResourceRole-id @@ -42379,6 +43072,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_GetAccessPackageCatalog parameters: - name: accessPackageAssignmentResourceRole-id @@ -42472,6 +43166,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_GetRefAccessPackageCatalog parameters: - name: accessPackageAssignmentResourceRole-id @@ -42523,6 +43218,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageCatalog in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_SetRefAccessPackageCatalog parameters: - name: accessPackageAssignmentResourceRole-id @@ -42558,6 +43254,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageCatalog for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_DeleteRefAccessPackageCatalog parameters: - name: accessPackageAssignmentResourceRole-id @@ -42590,6 +43287,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_ListAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -42691,6 +43389,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_CreateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -42729,6 +43428,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_GetAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -42811,6 +43511,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoleScopes in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_UpdateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -42851,6 +43552,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage_DeleteAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -42890,6 +43592,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageAssignmentResourceRole-id @@ -42964,6 +43667,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_UpdateAccessPackageResourceRole parameters: - name: accessPackageAssignmentResourceRole-id @@ -43004,6 +43708,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_DeleteAccessPackageResourceRole parameters: - name: accessPackageAssignmentResourceRole-id @@ -43043,6 +43748,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -43139,6 +43845,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -43179,6 +43886,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -43218,6 +43926,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -43299,6 +44008,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -43343,6 +44053,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -43385,6 +44096,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -43424,6 +44136,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -43530,6 +44243,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -43575,6 +44289,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -43657,6 +44372,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -43704,6 +44420,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -43750,6 +44467,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -43865,6 +44583,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -43910,6 +44629,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -43995,6 +44715,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -44042,6 +44763,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -44088,6 +44810,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -44194,6 +44917,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -44241,6 +44965,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -44287,6 +45012,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_GetAccessPackageResourceScope parameters: - name: accessPackageAssignmentResourceRole-id @@ -44364,6 +45090,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_UpdateAccessPackageResourceScope parameters: - name: accessPackageAssignmentResourceRole-id @@ -44404,6 +45131,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_DeleteAccessPackageResourceScope parameters: - name: accessPackageAssignmentResourceRole-id @@ -44443,6 +45171,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -44539,6 +45268,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -44579,6 +45309,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -44618,6 +45349,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -44699,6 +45431,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -44743,6 +45476,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -44785,6 +45519,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -44824,6 +45559,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -44930,6 +45666,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -44975,6 +45712,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -45057,6 +45795,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -45104,6 +45843,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -45150,6 +45890,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -45256,6 +45997,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -45303,6 +46045,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -45349,6 +46092,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -45464,6 +46208,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -45509,6 +46254,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -45594,6 +46340,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -45641,6 +46388,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -45687,6 +46435,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicy from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_GetAccessPackageAssignmentPolicy parameters: - name: accessPackageAssignmentResourceRole-id @@ -45770,6 +46519,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicy in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_UpdateAccessPackageAssignmentPolicy parameters: - name: accessPackageAssignmentResourceRole-id @@ -45803,6 +46553,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicy for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_DeleteAccessPackageAssignmentPolicy parameters: - name: accessPackageAssignmentResourceRole-id @@ -45835,6 +46586,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy_GetAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -45921,6 +46673,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy_GetRefAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -45967,6 +46720,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy_SetRefAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -46002,6 +46756,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy_DeleteRefAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -46481,6 +47236,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -46577,6 +47333,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -46617,6 +47374,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -46656,6 +47414,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -46737,6 +47496,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -46781,6 +47541,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -46823,6 +47584,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -46862,6 +47624,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -46968,6 +47731,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -47013,6 +47777,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -47095,6 +47860,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -47142,6 +47908,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -47188,6 +47955,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -47303,6 +48071,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -47348,6 +48117,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -47433,6 +48203,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -47480,6 +48251,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -47526,6 +48298,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -47632,6 +48405,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -47679,6 +48453,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -47725,6 +48500,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_ListAccessPackageResources parameters: - name: accessPackageAssignmentResourceRole-id @@ -47846,6 +48622,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_CreateAccessPackageResources parameters: - name: accessPackageAssignmentResourceRole-id @@ -47884,6 +48661,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_GetAccessPackageResources parameters: - name: accessPackageAssignmentResourceRole-id @@ -47980,6 +48758,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResources in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_UpdateAccessPackageResources parameters: - name: accessPackageAssignmentResourceRole-id @@ -48020,6 +48799,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_DeleteAccessPackageResources parameters: - name: accessPackageAssignmentResourceRole-id @@ -48059,6 +48839,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -48140,6 +48921,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -48184,6 +48966,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -48226,6 +49009,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -48265,6 +49049,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -48371,6 +49156,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -48416,6 +49202,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -48498,6 +49285,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -48545,6 +49333,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -48591,6 +49380,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -48697,6 +49487,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -48744,6 +49535,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -48790,6 +49582,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -48905,6 +49698,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -48950,6 +49744,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -49035,6 +49830,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -49082,6 +49878,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -49128,6 +49925,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -49234,6 +50032,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -49281,6 +50080,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -49629,6 +50429,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -49725,6 +50526,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -49765,6 +50567,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -49804,6 +50607,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -49885,6 +50689,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -49929,6 +50734,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -49971,6 +50777,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -50010,6 +50817,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -50116,6 +50924,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -50161,6 +50970,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -50243,6 +51053,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -50290,6 +51101,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -50336,6 +51148,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -50442,6 +51255,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -50489,6 +51303,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -50535,6 +51350,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -50650,6 +51466,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -50695,6 +51512,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -50780,6 +51598,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -50827,6 +51646,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -50873,6 +51693,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_ListAccessPackages parameters: - name: accessPackageAssignmentResourceRole-id @@ -50991,6 +51812,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_CreateAccessPackages parameters: - name: accessPackageAssignmentResourceRole-id @@ -51029,6 +51851,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_GetAccessPackages parameters: - name: accessPackageAssignmentResourceRole-id @@ -51124,6 +51947,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackages in identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_UpdateAccessPackages parameters: - name: accessPackageAssignmentResourceRole-id @@ -51164,6 +51988,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_DeleteAccessPackages parameters: - name: accessPackageAssignmentResourceRole-id @@ -51203,6 +52028,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_ListAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentResourceRole-id @@ -51341,6 +52167,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_CreateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentResourceRole-id @@ -51386,6 +52213,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentResourceRole-id @@ -51487,6 +52315,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicies in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_UpdateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentResourceRole-id @@ -51534,6 +52363,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_DeleteAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentResourceRole-id @@ -51580,6 +52410,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetAccessPackageCatalog parameters: - name: accessPackageAssignmentResourceRole-id @@ -51684,6 +52515,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetRefAccessPackageCatalog parameters: - name: accessPackageAssignmentResourceRole-id @@ -51746,6 +52578,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageCatalog in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_SetRefAccessPackageCatalog parameters: - name: accessPackageAssignmentResourceRole-id @@ -51788,6 +52621,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageCatalog for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_DeleteRefAccessPackageCatalog parameters: - name: accessPackageAssignmentResourceRole-id @@ -51827,6 +52661,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_ListAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -51935,6 +52770,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_CreateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -51980,6 +52816,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -52071,6 +52908,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoleScopes in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_UpdateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -52118,6 +52956,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_DeleteAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -52164,6 +53003,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageAssignmentResourceRole-id @@ -52246,6 +53086,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceRole parameters: - name: accessPackageAssignmentResourceRole-id @@ -52293,6 +53134,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceRole parameters: - name: accessPackageAssignmentResourceRole-id @@ -52339,6 +53181,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -52445,6 +53288,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -52492,6 +53336,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -52538,6 +53383,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -52627,6 +53473,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -52679,6 +53526,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -52728,6 +53576,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -52774,6 +53623,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -52887,6 +53737,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -52939,6 +53790,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -53029,6 +53881,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -53083,6 +53936,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -53136,6 +53990,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -53258,6 +54113,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -53310,6 +54166,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -53403,6 +54260,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -53457,6 +54315,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -53510,6 +54369,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -53626,6 +54486,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -53680,6 +54541,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -53733,6 +54595,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceScope parameters: - name: accessPackageAssignmentResourceRole-id @@ -53818,6 +54681,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceScope parameters: - name: accessPackageAssignmentResourceRole-id @@ -53865,6 +54729,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceScope parameters: - name: accessPackageAssignmentResourceRole-id @@ -53911,6 +54776,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -54017,6 +54883,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -54064,6 +54931,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -54110,6 +54978,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -54199,6 +55068,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -54251,6 +55121,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -54300,6 +55171,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -54346,6 +55218,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -54459,6 +55332,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -54511,6 +55385,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -54601,6 +55476,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -54655,6 +55531,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -54708,6 +55585,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -54824,6 +55702,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -54878,6 +55757,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -54931,6 +55811,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -55053,6 +55934,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -55105,6 +55987,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -55198,6 +56081,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -55252,6 +56136,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -55711,6 +56596,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentRequests_GetAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -55807,6 +56693,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentRequests_GetRefAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -55863,6 +56750,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentRequests_SetRefAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -55905,6 +56793,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentRequests_DeleteRefAccessPackage parameters: - name: accessPackageAssignmentResourceRole-id @@ -56168,6 +57057,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get requestor from identityGovernance + description: 'The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable.' operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentRequests_GetRequestor parameters: - name: accessPackageAssignmentResourceRole-id @@ -56246,6 +57136,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property requestor in identityGovernance + description: 'The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable.' operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentRequests_UpdateRequestor parameters: - name: accessPackageAssignmentResourceRole-id @@ -56286,6 +57177,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property requestor for identityGovernance + description: 'The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable.' operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentRequests_DeleteRequestor parameters: - name: accessPackageAssignmentResourceRole-id @@ -56582,6 +57474,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentResourceRoles from identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_ListAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -56684,6 +57577,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentResourceRoles for identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_CreateAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -56722,6 +57616,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentResourceRoles from identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_GetAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -56819,6 +57714,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentResourceRoles in identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_UpdateAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -56859,6 +57755,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentResourceRoles for identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_DeleteAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -56931,6 +57828,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get target from identityGovernance + description: The subject of the access package assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_GetTarget parameters: - name: accessPackageAssignmentResourceRole-id @@ -57001,6 +57899,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property target in identityGovernance + description: The subject of the access package assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_UpdateTarget parameters: - name: accessPackageAssignmentResourceRole-id @@ -57034,6 +57933,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property target for identityGovernance + description: The subject of the access package assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_DeleteTarget parameters: - name: accessPackageAssignmentResourceRole-id @@ -57284,6 +58184,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_GetAccessPackageResourceRole parameters: - name: accessPackageAssignmentResourceRole-id @@ -57342,6 +58243,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_UpdateAccessPackageResourceRole parameters: - name: accessPackageAssignmentResourceRole-id @@ -57368,6 +58270,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_DeleteAccessPackageResourceRole parameters: - name: accessPackageAssignmentResourceRole-id @@ -57393,6 +58296,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -57469,6 +58373,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -57495,6 +58400,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -57520,6 +58426,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -57585,6 +58492,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -57613,6 +58521,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -57641,6 +58550,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -57666,6 +58576,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -57758,6 +58669,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -57789,6 +58701,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -57855,6 +58768,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -57888,6 +58802,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -57920,6 +58835,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -58021,6 +58937,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -58052,6 +58969,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -58121,6 +59039,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -58154,6 +59073,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -58186,6 +59106,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -58272,6 +59193,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -58305,6 +59227,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -58337,6 +59260,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_GetAccessPackageResourceScope parameters: - name: accessPackageAssignmentResourceRole-id @@ -58398,6 +59322,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_UpdateAccessPackageResourceScope parameters: - name: accessPackageAssignmentResourceRole-id @@ -58424,6 +59349,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_DeleteAccessPackageResourceScope parameters: - name: accessPackageAssignmentResourceRole-id @@ -58449,6 +59375,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -58525,6 +59452,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -58551,6 +59479,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -58576,6 +59505,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -58641,6 +59571,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -58669,6 +59600,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -58697,6 +59629,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id @@ -58722,6 +59655,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -58814,6 +59748,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -58845,6 +59780,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -58911,6 +59847,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -58944,6 +59881,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id @@ -58976,6 +59914,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -59062,6 +60001,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -59095,6 +60035,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignmentResourceRole-id @@ -59127,6 +60068,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -59228,6 +60170,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -59259,6 +60202,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -59328,6 +60272,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -59361,6 +60306,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id @@ -59393,6 +60339,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageSubject from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_GetAccessPackageSubject parameters: - name: accessPackageAssignmentResourceRole-id @@ -59455,6 +60402,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageSubject in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_UpdateAccessPackageSubject parameters: - name: accessPackageAssignmentResourceRole-id @@ -59481,6 +60429,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageSubject for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_DeleteAccessPackageSubject parameters: - name: accessPackageAssignmentResourceRole-id @@ -59947,6 +60896,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_GetAccessPackage parameters: - name: accessPackageAssignment-id @@ -60022,6 +60972,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackage in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_UpdateAccessPackage parameters: - name: accessPackageAssignment-id @@ -60048,6 +60999,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackage for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_DeleteAccessPackage parameters: - name: accessPackageAssignment-id @@ -60073,6 +61025,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_ListAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id @@ -60197,6 +61150,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_CreateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id @@ -60228,6 +61182,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_GetAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id @@ -60311,6 +61266,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicies in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_UpdateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id @@ -60344,6 +61300,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_DeleteAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id @@ -60376,6 +61333,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies_GetAccessPackage parameters: - name: accessPackageAssignment-id @@ -60462,6 +61420,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies_GetRefAccessPackage parameters: - name: accessPackageAssignment-id @@ -60508,6 +61467,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies_SetRefAccessPackage parameters: - name: accessPackageAssignment-id @@ -60543,6 +61503,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies_DeleteRefAccessPackage parameters: - name: accessPackageAssignment-id @@ -61022,6 +61983,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -61118,6 +62080,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -61158,6 +62121,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -61197,6 +62161,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -61278,6 +62243,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -61322,6 +62288,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -61364,6 +62331,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -61403,6 +62371,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -61509,6 +62478,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -61554,6 +62524,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -61636,6 +62607,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -61683,6 +62655,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -61729,6 +62702,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -61844,6 +62818,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -61889,6 +62864,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -61974,6 +62950,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -62021,6 +62998,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -62067,6 +63045,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -62173,6 +63152,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -62220,6 +63200,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -62266,6 +63247,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_ListAccessPackageResources parameters: - name: accessPackageAssignment-id @@ -62387,6 +63369,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_CreateAccessPackageResources parameters: - name: accessPackageAssignment-id @@ -62425,6 +63408,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_GetAccessPackageResources parameters: - name: accessPackageAssignment-id @@ -62521,6 +63505,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResources in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_UpdateAccessPackageResources parameters: - name: accessPackageAssignment-id @@ -62561,6 +63546,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_DeleteAccessPackageResources parameters: - name: accessPackageAssignment-id @@ -62600,6 +63586,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -62681,6 +63668,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -62725,6 +63713,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -62767,6 +63756,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -62806,6 +63796,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -62912,6 +63903,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -62957,6 +63949,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -63039,6 +64032,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -63086,6 +64080,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -63132,6 +64127,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -63238,6 +64234,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -63285,6 +64282,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -63331,6 +64329,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -63446,6 +64445,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -63491,6 +64491,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -63576,6 +64577,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -63623,6 +64625,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -63669,6 +64672,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -63775,6 +64779,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -63822,6 +64827,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -64170,6 +65176,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -64266,6 +65273,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -64306,6 +65314,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -64345,6 +65354,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -64426,6 +65436,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -64470,6 +65481,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -64512,6 +65524,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -64551,6 +65564,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -64657,6 +65671,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -64702,6 +65717,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -64784,6 +65800,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -64831,6 +65848,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -64877,6 +65895,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -64983,6 +66002,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -65030,6 +66050,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -65076,6 +66097,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -65191,6 +66213,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -65236,6 +66259,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -65321,6 +66345,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -65368,6 +66393,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -65414,6 +66440,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_ListAccessPackages parameters: - name: accessPackageAssignment-id @@ -65532,6 +66559,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_CreateAccessPackages parameters: - name: accessPackageAssignment-id @@ -65570,6 +66598,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_GetAccessPackages parameters: - name: accessPackageAssignment-id @@ -65665,6 +66694,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackages in identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_UpdateAccessPackages parameters: - name: accessPackageAssignment-id @@ -65705,6 +66735,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog_DeleteAccessPackages parameters: - name: accessPackageAssignment-id @@ -65816,6 +66847,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_GetAccessPackageCatalog parameters: - name: accessPackageAssignment-id @@ -65898,6 +66930,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_GetRefAccessPackageCatalog parameters: - name: accessPackageAssignment-id @@ -65938,6 +66971,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageCatalog in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_SetRefAccessPackageCatalog parameters: - name: accessPackageAssignment-id @@ -65966,6 +67000,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageCatalog for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_DeleteRefAccessPackageCatalog parameters: - name: accessPackageAssignment-id @@ -65991,6 +67026,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_ListAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignment-id @@ -66085,6 +67121,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_CreateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignment-id @@ -66116,6 +67153,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_GetAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignment-id @@ -66189,6 +67227,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoleScopes in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_UpdateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignment-id @@ -66222,6 +67261,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_DeleteAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignment-id @@ -66254,6 +67294,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageAssignment-id @@ -66320,6 +67361,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_UpdateAccessPackageResourceRole parameters: - name: accessPackageAssignment-id @@ -66353,6 +67395,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_DeleteAccessPackageResourceRole parameters: - name: accessPackageAssignment-id @@ -66385,6 +67428,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -66471,6 +67515,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -66504,6 +67549,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -66536,6 +67582,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -66609,6 +67656,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -66645,6 +67693,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -66680,6 +67729,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -66712,6 +67762,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -66811,6 +67862,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -66849,6 +67901,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -66923,6 +67976,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -66963,6 +68017,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -67002,6 +68057,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -67110,6 +68166,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -67148,6 +68205,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -67225,6 +68283,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -67265,6 +68324,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -67304,6 +68364,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -67400,6 +68461,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -67440,6 +68502,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -67479,6 +68542,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_GetAccessPackageResourceScope parameters: - name: accessPackageAssignment-id @@ -67548,6 +68612,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_UpdateAccessPackageResourceScope parameters: - name: accessPackageAssignment-id @@ -67581,6 +68646,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_DeleteAccessPackageResourceScope parameters: - name: accessPackageAssignment-id @@ -67613,6 +68679,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -67699,6 +68766,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -67732,6 +68800,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -67764,6 +68833,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -67837,6 +68907,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -67873,6 +68944,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -67908,6 +68980,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -67940,6 +69013,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -68039,6 +69113,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -68077,6 +69152,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -68151,6 +69227,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -68191,6 +69268,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -68230,6 +69308,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -68326,6 +69405,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -68366,6 +69446,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -68405,6 +69486,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -68513,6 +69595,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -68551,6 +69634,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -68628,6 +69712,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -68668,6 +69753,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -68707,6 +69793,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicy from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_GetAccessPackageAssignmentPolicy parameters: - name: accessPackageAssignment-id @@ -68781,6 +69868,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicy in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_UpdateAccessPackageAssignmentPolicy parameters: - name: accessPackageAssignment-id @@ -68807,6 +69895,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicy for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_DeleteAccessPackageAssignmentPolicy parameters: - name: accessPackageAssignment-id @@ -68832,6 +69921,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy_GetAccessPackage parameters: - name: accessPackageAssignment-id @@ -68908,6 +69998,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy_GetRefAccessPackage parameters: - name: accessPackageAssignment-id @@ -68944,6 +70035,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy_SetRefAccessPackage parameters: - name: accessPackageAssignment-id @@ -68972,6 +70064,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy_DeleteRefAccessPackage parameters: - name: accessPackageAssignment-id @@ -69383,6 +70476,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -69469,6 +70563,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -69502,6 +70597,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -69534,6 +70630,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -69607,6 +70704,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -69643,6 +70741,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -69678,6 +70777,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -69710,6 +70810,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -69809,6 +70910,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -69847,6 +70949,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -69921,6 +71024,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -69961,6 +71065,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -70000,6 +71105,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -70108,6 +71214,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -70146,6 +71253,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -70223,6 +71331,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -70263,6 +71372,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -70302,6 +71412,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -70398,6 +71509,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -70438,6 +71550,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -70477,6 +71590,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_ListAccessPackageResources parameters: - name: accessPackageAssignment-id @@ -70591,6 +71705,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_CreateAccessPackageResources parameters: - name: accessPackageAssignment-id @@ -70622,6 +71737,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_GetAccessPackageResources parameters: - name: accessPackageAssignment-id @@ -70708,6 +71824,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResources in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_UpdateAccessPackageResources parameters: - name: accessPackageAssignment-id @@ -70741,6 +71858,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_DeleteAccessPackageResources parameters: - name: accessPackageAssignment-id @@ -70773,6 +71891,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -70846,6 +71965,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -70882,6 +72002,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -70917,6 +72038,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -70949,6 +72071,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -71048,6 +72171,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -71086,6 +72210,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -71160,6 +72285,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -71200,6 +72326,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -71239,6 +72366,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -71335,6 +72463,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -71375,6 +72504,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -71414,6 +72544,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -71522,6 +72653,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -71560,6 +72692,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -71637,6 +72770,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -71677,6 +72811,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -71716,6 +72851,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -71812,6 +72948,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -71852,6 +72989,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -72157,6 +73295,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -72243,6 +73382,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -72276,6 +73416,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -72308,6 +73449,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -72381,6 +73523,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -72417,6 +73560,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -72452,6 +73596,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -72484,6 +73629,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -72583,6 +73729,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -72621,6 +73768,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -72695,6 +73843,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -72735,6 +73884,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -72774,6 +73924,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -72870,6 +74021,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -72910,6 +74062,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -72949,6 +74102,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -73057,6 +74211,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -73095,6 +74250,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -73172,6 +74328,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -73212,6 +74369,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -73251,6 +74409,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_ListAccessPackages parameters: - name: accessPackageAssignment-id @@ -73362,6 +74521,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_CreateAccessPackages parameters: - name: accessPackageAssignment-id @@ -73393,6 +74553,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_GetAccessPackages parameters: - name: accessPackageAssignment-id @@ -73478,6 +74639,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackages in identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_UpdateAccessPackages parameters: - name: accessPackageAssignment-id @@ -73511,6 +74673,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog_DeleteAccessPackages parameters: - name: accessPackageAssignment-id @@ -73543,6 +74706,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_ListAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id @@ -73674,6 +74838,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_CreateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id @@ -73712,6 +74877,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id @@ -73804,6 +74970,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicies in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_UpdateAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id @@ -73844,6 +75011,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_DeleteAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id @@ -73883,6 +75051,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetAccessPackageCatalog parameters: - name: accessPackageAssignment-id @@ -73976,6 +75145,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetRefAccessPackageCatalog parameters: - name: accessPackageAssignment-id @@ -74027,6 +75197,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageCatalog in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_SetRefAccessPackageCatalog parameters: - name: accessPackageAssignment-id @@ -74062,6 +75233,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageCatalog for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_DeleteRefAccessPackageCatalog parameters: - name: accessPackageAssignment-id @@ -74094,6 +75266,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_ListAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignment-id @@ -74195,6 +75368,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_CreateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignment-id @@ -74233,6 +75407,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_GetAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignment-id @@ -74315,6 +75490,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoleScopes in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_UpdateAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignment-id @@ -74355,6 +75531,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_DeleteAccessPackageResourceRoleScopes parameters: - name: accessPackageAssignment-id @@ -74394,6 +75571,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageAssignment-id @@ -74468,6 +75646,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceRole parameters: - name: accessPackageAssignment-id @@ -74508,6 +75687,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceRole parameters: - name: accessPackageAssignment-id @@ -74547,6 +75727,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -74643,6 +75824,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -74683,6 +75865,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -74722,6 +75905,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -74803,6 +75987,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -74847,6 +76032,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -74889,6 +76075,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -74928,6 +76115,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -75034,6 +76222,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -75079,6 +76268,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -75161,6 +76351,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -75208,6 +76399,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -75254,6 +76446,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -75369,6 +76562,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -75414,6 +76608,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -75499,6 +76694,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -75546,6 +76742,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -75592,6 +76789,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -75698,6 +76896,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -75745,6 +76944,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -75791,6 +76991,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceScope parameters: - name: accessPackageAssignment-id @@ -75868,6 +77069,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceScope parameters: - name: accessPackageAssignment-id @@ -75908,6 +77110,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceScope parameters: - name: accessPackageAssignment-id @@ -75947,6 +77150,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -76043,6 +77247,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -76083,6 +77288,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -76122,6 +77328,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -76203,6 +77410,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -76247,6 +77455,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -76289,6 +77498,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -76328,6 +77538,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -76434,6 +77645,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -76479,6 +77691,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -76561,6 +77774,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -76608,6 +77822,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -76654,6 +77869,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -76760,6 +77976,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -76807,6 +78024,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -76853,6 +78071,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -76968,6 +78187,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -77013,6 +78233,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -77098,6 +78319,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -77145,6 +78367,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -77545,6 +78768,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_GetAccessPackage parameters: - name: accessPackageAssignment-id @@ -77631,6 +78855,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_GetRefAccessPackage parameters: - name: accessPackageAssignment-id @@ -77677,6 +78902,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_SetRefAccessPackage parameters: - name: accessPackageAssignment-id @@ -77712,6 +78938,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_DeleteRefAccessPackage parameters: - name: accessPackageAssignment-id @@ -77935,6 +79162,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get requestor from identityGovernance + description: 'The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable.' operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_GetRequestor parameters: - name: accessPackageAssignment-id @@ -78005,6 +79233,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property requestor in identityGovernance + description: 'The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable.' operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_UpdateRequestor parameters: - name: accessPackageAssignment-id @@ -78038,6 +79267,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property requestor for identityGovernance + description: 'The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable.' operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_DeleteRequestor parameters: - name: accessPackageAssignment-id @@ -78288,6 +79518,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentResourceRoles from identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_ListAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignment-id @@ -78383,6 +79614,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentResourceRoles for identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_CreateAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignment-id @@ -78414,6 +79646,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentResourceRoles from identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_GetAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignment-id @@ -78500,6 +79733,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentResourceRoles in identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_UpdateAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignment-id @@ -78533,6 +79767,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentResourceRoles for identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_DeleteAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignment-id @@ -78565,6 +79800,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_ListAccessPackageAssignments parameters: - name: accessPackageAssignment-id @@ -78687,6 +79923,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignments for identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_CreateAccessPackageAssignments parameters: - name: accessPackageAssignment-id @@ -78725,6 +79962,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_GetAccessPackageAssignments parameters: - name: accessPackageAssignment-id @@ -78836,6 +80074,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignments in identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_UpdateAccessPackageAssignments parameters: - name: accessPackageAssignment-id @@ -78876,6 +80115,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignments for identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_DeleteAccessPackageAssignments parameters: - name: accessPackageAssignment-id @@ -78954,6 +80194,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_GetAccessPackageResourceRole parameters: - name: accessPackageAssignment-id @@ -79020,6 +80261,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_UpdateAccessPackageResourceRole parameters: - name: accessPackageAssignment-id @@ -79053,6 +80295,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_DeleteAccessPackageResourceRole parameters: - name: accessPackageAssignment-id @@ -79085,6 +80328,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -79171,6 +80415,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -79204,6 +80449,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -79236,6 +80482,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -79309,6 +80556,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -79345,6 +80593,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -79380,6 +80629,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -79412,6 +80662,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -79511,6 +80762,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -79549,6 +80801,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -79623,6 +80876,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -79663,6 +80917,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -79702,6 +80957,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -79810,6 +81066,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -79848,6 +81105,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -79925,6 +81183,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -79965,6 +81224,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -80004,6 +81264,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -80100,6 +81361,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -80140,6 +81402,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -80179,6 +81442,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_GetAccessPackageResourceScope parameters: - name: accessPackageAssignment-id @@ -80248,6 +81512,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_UpdateAccessPackageResourceScope parameters: - name: accessPackageAssignment-id @@ -80281,6 +81546,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_DeleteAccessPackageResourceScope parameters: - name: accessPackageAssignment-id @@ -80313,6 +81579,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -80399,6 +81666,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -80432,6 +81700,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -80464,6 +81733,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -80537,6 +81807,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -80573,6 +81844,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -80608,6 +81880,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id @@ -80640,6 +81913,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -80739,6 +82013,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -80777,6 +82052,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -80851,6 +82127,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -80891,6 +82168,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id @@ -80930,6 +82208,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -81026,6 +82305,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -81066,6 +82346,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageAssignment-id @@ -81105,6 +82386,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -81213,6 +82495,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -81251,6 +82534,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -81328,6 +82612,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -81368,6 +82653,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id @@ -81407,6 +82693,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageSubject from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_GetAccessPackageSubject parameters: - name: accessPackageAssignment-id @@ -81477,6 +82764,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageSubject in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_UpdateAccessPackageSubject parameters: - name: accessPackageAssignment-id @@ -81510,6 +82798,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageSubject for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_DeleteAccessPackageSubject parameters: - name: accessPackageAssignment-id @@ -81754,6 +83043,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get target from identityGovernance + description: The subject of the access package assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_GetTarget parameters: - name: accessPackageAssignment-id @@ -81816,6 +83106,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property target in identityGovernance + description: The subject of the access package assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_UpdateTarget parameters: - name: accessPackageAssignment-id @@ -81842,6 +83133,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property target for identityGovernance + description: The subject of the access package assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_DeleteTarget parameters: - name: accessPackageAssignment-id @@ -82561,6 +83853,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -82647,6 +83940,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -82680,6 +83974,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -82712,6 +84007,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -82785,6 +84081,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -82821,6 +84118,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -82856,6 +84154,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -82888,6 +84187,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -82987,6 +84287,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -83025,6 +84326,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -83099,6 +84401,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -83139,6 +84442,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -83178,6 +84482,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -83286,6 +84591,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -83324,6 +84630,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -83401,6 +84708,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -83441,6 +84749,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -83480,6 +84789,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -83576,6 +84886,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -83616,6 +84927,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -83655,6 +84967,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_ListAccessPackageResources parameters: - name: accessPackageCatalog-id @@ -83769,6 +85082,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_CreateAccessPackageResources parameters: - name: accessPackageCatalog-id @@ -83800,6 +85114,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_GetAccessPackageResources parameters: - name: accessPackageCatalog-id @@ -83886,6 +85201,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResources in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_UpdateAccessPackageResources parameters: - name: accessPackageCatalog-id @@ -83919,6 +85235,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_DeleteAccessPackageResources parameters: - name: accessPackageCatalog-id @@ -83951,6 +85268,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -84024,6 +85342,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -84060,6 +85379,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -84095,6 +85415,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -84127,6 +85448,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -84226,6 +85548,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_CreateAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -84264,6 +85587,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -84338,6 +85662,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_UpdateAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -84378,6 +85703,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_DeleteAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -84417,6 +85743,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -84513,6 +85840,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -84553,6 +85881,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -84592,6 +85921,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -84700,6 +86030,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_CreateAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -84738,6 +86069,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -84815,6 +86147,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_UpdateAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -84855,6 +86188,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_DeleteAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -84894,6 +86228,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -84990,6 +86325,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -85030,6 +86366,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -85335,6 +86672,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -85421,6 +86759,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -85454,6 +86793,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -85486,6 +86826,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -85559,6 +86900,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -85595,6 +86937,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -85630,6 +86973,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -85662,6 +87006,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -85761,6 +87106,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -85799,6 +87145,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -85873,6 +87220,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -85913,6 +87261,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -85952,6 +87301,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -86048,6 +87398,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -86088,6 +87439,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -86127,6 +87479,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -86235,6 +87588,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -86273,6 +87627,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -86350,6 +87705,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -86390,6 +87746,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -86429,6 +87786,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_ListAccessPackages parameters: - name: accessPackageCatalog-id @@ -86540,6 +87898,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_CreateAccessPackages parameters: - name: accessPackageCatalog-id @@ -86571,6 +87930,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_GetAccessPackages parameters: - name: accessPackageCatalog-id @@ -86656,6 +88016,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackages in identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_UpdateAccessPackages parameters: - name: accessPackageCatalog-id @@ -86689,6 +88050,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_DeleteAccessPackages parameters: - name: accessPackageCatalog-id @@ -86721,6 +88083,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_ListAccessPackageAssignmentPolicies parameters: - name: accessPackageCatalog-id @@ -86852,6 +88215,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_CreateAccessPackageAssignmentPolicies parameters: - name: accessPackageCatalog-id @@ -86890,6 +88254,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_GetAccessPackageAssignmentPolicies parameters: - name: accessPackageCatalog-id @@ -86982,6 +88347,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicies in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_UpdateAccessPackageAssignmentPolicies parameters: - name: accessPackageCatalog-id @@ -87022,6 +88388,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_DeleteAccessPackageAssignmentPolicies parameters: - name: accessPackageCatalog-id @@ -87061,6 +88428,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageAssignmentPolicies_GetAccessPackage parameters: - name: accessPackageCatalog-id @@ -87157,6 +88525,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageAssignmentPolicies_GetRefAccessPackage parameters: - name: accessPackageCatalog-id @@ -87213,6 +88582,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageAssignmentPolicies_SetRefAccessPackage parameters: - name: accessPackageCatalog-id @@ -87255,6 +88625,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageAssignmentPolicies_DeleteRefAccessPackage parameters: - name: accessPackageCatalog-id @@ -87476,6 +88847,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_GetAccessPackageCatalog parameters: - name: accessPackageCatalog-id @@ -87569,6 +88941,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_GetRefAccessPackageCatalog parameters: - name: accessPackageCatalog-id @@ -87620,6 +88993,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageCatalog in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_SetRefAccessPackageCatalog parameters: - name: accessPackageCatalog-id @@ -87655,6 +89029,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageCatalog for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_DeleteRefAccessPackageCatalog parameters: - name: accessPackageCatalog-id @@ -87687,6 +89062,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_ListAccessPackageResourceRoleScopes parameters: - name: accessPackageCatalog-id @@ -87788,6 +89164,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_CreateAccessPackageResourceRoleScopes parameters: - name: accessPackageCatalog-id @@ -87826,6 +89203,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_GetAccessPackageResourceRoleScopes parameters: - name: accessPackageCatalog-id @@ -87908,6 +89286,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoleScopes in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_UpdateAccessPackageResourceRoleScopes parameters: - name: accessPackageCatalog-id @@ -87948,6 +89327,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_DeleteAccessPackageResourceRoleScopes parameters: - name: accessPackageCatalog-id @@ -87987,6 +89367,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageCatalog-id @@ -88061,6 +89442,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceRole parameters: - name: accessPackageCatalog-id @@ -88101,6 +89483,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceRole parameters: - name: accessPackageCatalog-id @@ -88140,6 +89523,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -88236,6 +89620,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -88276,6 +89661,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -88315,6 +89701,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -88396,6 +89783,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -88440,6 +89828,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -88482,6 +89871,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -88521,6 +89911,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -88627,6 +90018,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -88672,6 +90064,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -88754,6 +90147,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -88801,6 +90195,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -88847,6 +90242,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -88962,6 +90358,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -89007,6 +90404,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -89092,6 +90490,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -89139,6 +90538,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -89185,6 +90585,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -89291,6 +90692,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -89338,6 +90740,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -89384,6 +90787,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceScope parameters: - name: accessPackageCatalog-id @@ -89461,6 +90865,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceScope parameters: - name: accessPackageCatalog-id @@ -89501,6 +90906,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceScope parameters: - name: accessPackageCatalog-id @@ -89540,6 +90946,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -89636,6 +91043,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -89676,6 +91084,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -89715,6 +91124,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -89796,6 +91206,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -89840,6 +91251,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -89882,6 +91294,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id @@ -89921,6 +91334,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -90027,6 +91441,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -90072,6 +91487,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -90154,6 +91570,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -90201,6 +91618,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id @@ -90247,6 +91665,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -90353,6 +91772,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -90400,6 +91820,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageCatalog-id @@ -90446,6 +91867,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -90561,6 +91983,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -90606,6 +92029,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -90691,6 +92115,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -90738,6 +92163,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id @@ -91101,6 +92527,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Required. operationId: identityGovernance.entitlementManagement.accessPackageResourceEnvironments_ListAccessPackageResources parameters: - name: accessPackageResourceEnvironment-id @@ -91216,6 +92643,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResources from identityGovernance + description: Read-only. Required. operationId: identityGovernance.entitlementManagement.accessPackageResourceEnvironments_ListRefAccessPackageResources parameters: - name: accessPackageResourceEnvironment-id @@ -91290,6 +92718,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property ref to accessPackageResources for identityGovernance + description: Read-only. Required. operationId: identityGovernance.entitlementManagement.accessPackageResourceEnvironments_CreateRefAccessPackageResources parameters: - name: accessPackageResourceEnvironment-id @@ -91566,6 +92995,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRequests_GetAccessPackageResource parameters: - name: accessPackageResourceRequest-id @@ -91643,6 +93073,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResource from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRequests_GetRefAccessPackageResource parameters: - name: accessPackageResourceRequest-id @@ -91679,6 +93110,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResource in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRequests_SetRefAccessPackageResource parameters: - name: accessPackageResourceRequest-id @@ -91707,6 +93139,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResource for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRequests_DeleteRefAccessPackageResource parameters: - name: accessPackageResourceRequest-id @@ -91732,6 +93165,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get requestor from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRequests_GetRequestor parameters: - name: accessPackageResourceRequest-id @@ -91794,6 +93228,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property requestor in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRequests_UpdateRequestor parameters: - name: accessPackageResourceRequest-id @@ -91820,6 +93255,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property requestor for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRequests_DeleteRequestor parameters: - name: accessPackageResourceRequest-id @@ -92224,6 +93660,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageResourceRoleScope-id @@ -92282,6 +93719,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes_UpdateAccessPackageResourceRole parameters: - name: accessPackageResourceRoleScope-id @@ -92308,6 +93746,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes_DeleteAccessPackageResourceRole parameters: - name: accessPackageResourceRoleScope-id @@ -92333,6 +93772,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -92409,6 +93849,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -92435,6 +93876,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -92460,6 +93902,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id @@ -92525,6 +93968,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id @@ -92553,6 +93997,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id @@ -92581,6 +94026,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id @@ -92606,6 +94052,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id @@ -92698,6 +94145,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id @@ -92729,6 +94177,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id @@ -92795,6 +94244,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id @@ -92828,6 +94278,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id @@ -92860,6 +94311,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id @@ -92961,6 +94413,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id @@ -92992,6 +94445,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id @@ -93061,6 +94515,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id @@ -93094,6 +94549,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id @@ -93126,6 +94582,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -93212,6 +94669,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -93245,6 +94703,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -93277,6 +94736,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes_GetAccessPackageResourceScope parameters: - name: accessPackageResourceRoleScope-id @@ -93338,6 +94798,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes_UpdateAccessPackageResourceScope parameters: - name: accessPackageResourceRoleScope-id @@ -93364,6 +94825,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes_DeleteAccessPackageResourceScope parameters: - name: accessPackageResourceRoleScope-id @@ -93389,6 +94851,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -93465,6 +94928,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -93491,6 +94955,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -93516,6 +94981,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id @@ -93581,6 +95047,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id @@ -93609,6 +95076,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id @@ -93637,6 +95105,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id @@ -93662,6 +95131,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id @@ -93754,6 +95224,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id @@ -93785,6 +95256,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id @@ -93851,6 +95323,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id @@ -93884,6 +95357,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id @@ -93916,6 +95390,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -94002,6 +95477,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -94035,6 +95511,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageResourceRoleScope-id @@ -94067,6 +95544,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id @@ -94168,6 +95646,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id @@ -94199,6 +95678,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id @@ -94268,6 +95748,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id @@ -94301,6 +95782,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id @@ -94590,6 +96072,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResource-id @@ -94655,6 +96138,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResources_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackageResource-id @@ -94683,6 +96167,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResources_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackageResource-id @@ -94711,6 +96196,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackageResources_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackageResource-id @@ -94736,6 +96222,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackageResource-id @@ -94828,6 +96315,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources_CreateAccessPackageResourceRoles parameters: - name: accessPackageResource-id @@ -94859,6 +96347,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackageResource-id @@ -94925,6 +96414,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources_UpdateAccessPackageResourceRoles parameters: - name: accessPackageResource-id @@ -94958,6 +96448,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources_DeleteAccessPackageResourceRoles parameters: - name: accessPackageResource-id @@ -94990,6 +96481,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackageResource-id @@ -95076,6 +96568,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackageResource-id @@ -95109,6 +96602,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackageResource-id @@ -95141,6 +96635,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackageResource-id @@ -95242,6 +96737,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources_CreateAccessPackageResourceScopes parameters: - name: accessPackageResource-id @@ -95273,6 +96769,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackageResource-id @@ -95342,6 +96839,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources_UpdateAccessPackageResourceScopes parameters: - name: accessPackageResource-id @@ -95375,6 +96873,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources_DeleteAccessPackageResourceScopes parameters: - name: accessPackageResource-id @@ -95407,6 +96906,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackageResource-id @@ -95493,6 +96993,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackageResource-id @@ -95526,6 +97027,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackageResource-id @@ -95811,6 +97313,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_ListAccessPackageAssignmentPolicies parameters: - name: accessPackage-id @@ -95935,6 +97438,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_CreateAccessPackageAssignmentPolicies parameters: - name: accessPackage-id @@ -95966,6 +97470,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_GetAccessPackageAssignmentPolicies parameters: - name: accessPackage-id @@ -96049,6 +97554,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageAssignmentPolicies in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_UpdateAccessPackageAssignmentPolicies parameters: - name: accessPackage-id @@ -96082,6 +97588,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageAssignmentPolicies for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_DeleteAccessPackageAssignmentPolicies parameters: - name: accessPackage-id @@ -96114,6 +97621,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies_GetAccessPackage parameters: - name: accessPackage-id @@ -96200,6 +97708,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies_GetRefAccessPackage parameters: - name: accessPackage-id @@ -96246,6 +97755,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackage in identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies_SetRefAccessPackage parameters: - name: accessPackage-id @@ -96281,6 +97791,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackage for identityGovernance + description: The access package with this policy. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies_DeleteRefAccessPackage parameters: - name: accessPackage-id @@ -96760,6 +98271,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackage-id @@ -96856,6 +98368,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackage-id @@ -96896,6 +98409,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackage-id @@ -96935,6 +98449,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -97016,6 +98531,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -97060,6 +98576,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -97102,6 +98619,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -97141,6 +98659,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -97247,6 +98766,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -97292,6 +98812,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -97374,6 +98895,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -97421,6 +98943,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -97467,6 +98990,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -97582,6 +99106,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -97627,6 +99152,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -97712,6 +99238,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -97759,6 +99286,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -97805,6 +99333,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackage-id @@ -97911,6 +99440,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackage-id @@ -97958,6 +99488,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackage-id @@ -98004,6 +99535,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog_ListAccessPackageResources parameters: - name: accessPackage-id @@ -98125,6 +99657,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog_CreateAccessPackageResources parameters: - name: accessPackage-id @@ -98163,6 +99696,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog_GetAccessPackageResources parameters: - name: accessPackage-id @@ -98259,6 +99793,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResources in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog_UpdateAccessPackageResources parameters: - name: accessPackage-id @@ -98299,6 +99834,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResources for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog_DeleteAccessPackageResources parameters: - name: accessPackage-id @@ -98338,6 +99874,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -98419,6 +99956,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -98463,6 +100001,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -98505,6 +100044,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -98544,6 +100084,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -98650,6 +100191,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -98695,6 +100237,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -98777,6 +100320,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -98824,6 +100368,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -98870,6 +100415,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackage-id @@ -98976,6 +100522,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackage-id @@ -99023,6 +100570,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackage-id @@ -99069,6 +100617,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -99184,6 +100733,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_CreateAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -99229,6 +100779,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -99314,6 +100865,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_UpdateAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -99361,6 +100913,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources_DeleteAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -99407,6 +100960,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackage-id @@ -99513,6 +101067,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackage-id @@ -99560,6 +101115,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResources.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackage-id @@ -99908,6 +101464,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackage-id @@ -100004,6 +101561,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackage-id @@ -100044,6 +101602,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackage-id @@ -100083,6 +101642,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -100164,6 +101724,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -100208,6 +101769,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -100250,6 +101812,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -100289,6 +101852,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -100395,6 +101959,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -100440,6 +102005,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -100522,6 +102088,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -100569,6 +102136,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -100615,6 +102183,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackage-id @@ -100721,6 +102290,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackage-id @@ -100768,6 +102338,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackage-id @@ -100814,6 +102385,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -100929,6 +102501,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -100974,6 +102547,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -101059,6 +102633,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -101106,6 +102681,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackageResourceScopes.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -101152,6 +102728,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog_ListAccessPackages parameters: - name: accessPackage-id @@ -101270,6 +102847,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog_CreateAccessPackages parameters: - name: accessPackage-id @@ -101308,6 +102886,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog_GetAccessPackages parameters: - name: accessPackage-id @@ -101403,6 +102982,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackages in identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog_UpdateAccessPackages parameters: - name: accessPackage-id @@ -101443,6 +103023,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackages for identityGovernance + description: The access packages in this catalog. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog_DeleteAccessPackages parameters: - name: accessPackage-id @@ -101554,6 +103135,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_GetAccessPackageCatalog parameters: - name: accessPackage-id @@ -101636,6 +103218,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageCatalog from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_GetRefAccessPackageCatalog parameters: - name: accessPackage-id @@ -101676,6 +103259,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageCatalog in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_SetRefAccessPackageCatalog parameters: - name: accessPackage-id @@ -101704,6 +103288,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageCatalog for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_DeleteRefAccessPackageCatalog parameters: - name: accessPackage-id @@ -101729,6 +103314,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_ListAccessPackageResourceRoleScopes parameters: - name: accessPackage-id @@ -101823,6 +103409,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_CreateAccessPackageResourceRoleScopes parameters: - name: accessPackage-id @@ -101854,6 +103441,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_GetAccessPackageResourceRoleScopes parameters: - name: accessPackage-id @@ -101927,6 +103515,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoleScopes in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_UpdateAccessPackageResourceRoleScopes parameters: - name: accessPackage-id @@ -101960,6 +103549,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoleScopes for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.accessPackages_DeleteAccessPackageResourceRoleScopes parameters: - name: accessPackage-id @@ -101992,6 +103582,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackage-id @@ -102058,6 +103649,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRole in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceRole parameters: - name: accessPackage-id @@ -102091,6 +103683,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRole for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceRole parameters: - name: accessPackage-id @@ -102123,6 +103716,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_GetAccessPackageResource parameters: - name: accessPackage-id @@ -102209,6 +103803,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_UpdateAccessPackageResource parameters: - name: accessPackage-id @@ -102242,6 +103837,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole_DeleteAccessPackageResource parameters: - name: accessPackage-id @@ -102274,6 +103870,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -102347,6 +103944,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -102383,6 +103981,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -102418,6 +104017,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -102450,6 +104050,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -102549,6 +104150,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -102587,6 +104189,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -102661,6 +104264,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -102701,6 +104305,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -102740,6 +104345,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -102848,6 +104454,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -102886,6 +104493,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -102963,6 +104571,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -103003,6 +104612,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -103042,6 +104652,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_GetAccessPackageResource parameters: - name: accessPackage-id @@ -103138,6 +104749,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_UpdateAccessPackageResource parameters: - name: accessPackage-id @@ -103178,6 +104790,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes_DeleteAccessPackageResource parameters: - name: accessPackage-id @@ -103217,6 +104830,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScope from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceScope parameters: - name: accessPackage-id @@ -103286,6 +104900,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScope in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes_UpdateAccessPackageResourceScope parameters: - name: accessPackage-id @@ -103319,6 +104934,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScope for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes_DeleteAccessPackageResourceScope parameters: - name: accessPackage-id @@ -103351,6 +104967,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_GetAccessPackageResource parameters: - name: accessPackage-id @@ -103437,6 +105054,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_UpdateAccessPackageResource parameters: - name: accessPackage-id @@ -103470,6 +105088,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope_DeleteAccessPackageResource parameters: - name: accessPackage-id @@ -103502,6 +105121,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -103575,6 +105195,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -103611,6 +105232,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the ref of navigation property accessPackageResourceEnvironment in identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_SetRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -103646,6 +105268,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete ref of navigation property accessPackageResourceEnvironment for identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteRefAccessPackageResourceEnvironment parameters: - name: accessPackage-id @@ -103678,6 +105301,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -103777,6 +105401,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -103815,6 +105440,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -103889,6 +105515,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceRoles in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -103929,6 +105556,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceRoles for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceRoles parameters: - name: accessPackage-id @@ -103968,6 +105596,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResource from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_GetAccessPackageResource parameters: - name: accessPackage-id @@ -104064,6 +105693,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResource in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_UpdateAccessPackageResource parameters: - name: accessPackage-id @@ -104104,6 +105734,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResource for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles_DeleteAccessPackageResource parameters: - name: accessPackage-id @@ -104143,6 +105774,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -104251,6 +105883,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_CreateAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -104289,6 +105922,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -104366,6 +106000,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property accessPackageResourceScopes in identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_UpdateAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -104406,6 +106041,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property accessPackageResourceScopes for identityGovernance + description: Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_DeleteAccessPackageResourceScopes parameters: - name: accessPackage-id @@ -104729,6 +106365,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get externalSponsors from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.connectedOrganizations_ListExternalSponsors parameters: - name: connectedOrganization-id @@ -104810,6 +106447,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to externalSponsors for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.connectedOrganizations_CreateExternalSponsors parameters: - name: connectedOrganization-id @@ -104841,6 +106479,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get externalSponsors from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.connectedOrganizations_GetExternalSponsors parameters: - name: connectedOrganization-id @@ -104896,6 +106535,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property externalSponsors in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.connectedOrganizations_UpdateExternalSponsors parameters: - name: connectedOrganization-id @@ -104929,6 +106569,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property externalSponsors for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.connectedOrganizations_DeleteExternalSponsors parameters: - name: connectedOrganization-id @@ -104961,6 +106602,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get internalSponsors from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.connectedOrganizations_ListInternalSponsors parameters: - name: connectedOrganization-id @@ -105042,6 +106684,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Create new navigation property to internalSponsors for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.connectedOrganizations_CreateInternalSponsors parameters: - name: connectedOrganization-id @@ -105073,6 +106716,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get internalSponsors from identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.connectedOrganizations_GetInternalSponsors parameters: - name: connectedOrganization-id @@ -105128,6 +106772,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Update the navigation property internalSponsors in identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.connectedOrganizations_UpdateInternalSponsors parameters: - name: connectedOrganization-id @@ -105161,6 +106806,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Delete navigation property internalSponsors for identityGovernance + description: Nullable. operationId: identityGovernance.entitlementManagement.connectedOrganizations_DeleteInternalSponsors parameters: - name: connectedOrganization-id @@ -105508,6 +107154,7 @@ paths: tags: - privilegedAccess.governanceResource summary: Get resources from privilegedAccess + description: A collection of resources for the provider. operationId: privilegedAccess_ListResources parameters: - name: privilegedAccess-id @@ -105614,6 +107261,7 @@ paths: tags: - privilegedAccess.governanceResource summary: Create new navigation property to resources for privilegedAccess + description: A collection of resources for the provider. operationId: privilegedAccess_CreateResources parameters: - name: privilegedAccess-id @@ -105645,6 +107293,7 @@ paths: tags: - privilegedAccess.governanceResource summary: Get resources from privilegedAccess + description: A collection of resources for the provider. operationId: privilegedAccess_GetResources parameters: - name: privilegedAccess-id @@ -105741,6 +107390,7 @@ paths: tags: - privilegedAccess.governanceResource summary: Update the navigation property resources in privilegedAccess + description: A collection of resources for the provider. operationId: privilegedAccess_UpdateResources parameters: - name: privilegedAccess-id @@ -105774,6 +107424,7 @@ paths: tags: - privilegedAccess.governanceResource summary: Delete navigation property resources for privilegedAccess + description: A collection of resources for the provider. operationId: privilegedAccess_DeleteResources parameters: - name: privilegedAccess-id @@ -105806,6 +107457,7 @@ paths: tags: - privilegedAccess.governanceRoleAssignmentRequest summary: Get roleAssignmentRequests from privilegedAccess + description: A collection of role assignment requests for the provider. operationId: privilegedAccess_ListRoleAssignmentRequests parameters: - name: privilegedAccess-id @@ -105920,6 +107572,7 @@ paths: tags: - privilegedAccess.governanceRoleAssignmentRequest summary: Create new navigation property to roleAssignmentRequests for privilegedAccess + description: A collection of role assignment requests for the provider. operationId: privilegedAccess_CreateRoleAssignmentRequests parameters: - name: privilegedAccess-id @@ -105951,6 +107604,7 @@ paths: tags: - privilegedAccess.governanceRoleAssignmentRequest summary: Get roleAssignmentRequests from privilegedAccess + description: A collection of role assignment requests for the provider. operationId: privilegedAccess_GetRoleAssignmentRequests parameters: - name: privilegedAccess-id @@ -106037,6 +107691,7 @@ paths: tags: - privilegedAccess.governanceRoleAssignmentRequest summary: Update the navigation property roleAssignmentRequests in privilegedAccess + description: A collection of role assignment requests for the provider. operationId: privilegedAccess_UpdateRoleAssignmentRequests parameters: - name: privilegedAccess-id @@ -106070,6 +107725,7 @@ paths: tags: - privilegedAccess.governanceRoleAssignmentRequest summary: Delete navigation property roleAssignmentRequests for privilegedAccess + description: A collection of role assignment requests for the provider. operationId: privilegedAccess_DeleteRoleAssignmentRequests parameters: - name: privilegedAccess-id @@ -106102,6 +107758,7 @@ paths: tags: - privilegedAccess.governanceRoleAssignment summary: Get roleAssignments from privilegedAccess + description: A collection of role assignments for the provider. operationId: privilegedAccess_ListRoleAssignments parameters: - name: privilegedAccess-id @@ -106218,6 +107875,7 @@ paths: tags: - privilegedAccess.governanceRoleAssignment summary: Create new navigation property to roleAssignments for privilegedAccess + description: A collection of role assignments for the provider. operationId: privilegedAccess_CreateRoleAssignments parameters: - name: privilegedAccess-id @@ -106249,6 +107907,7 @@ paths: tags: - privilegedAccess.governanceRoleAssignment summary: Get roleAssignments from privilegedAccess + description: A collection of role assignments for the provider. operationId: privilegedAccess_GetRoleAssignments parameters: - name: privilegedAccess-id @@ -106342,6 +108001,7 @@ paths: tags: - privilegedAccess.governanceRoleAssignment summary: Update the navigation property roleAssignments in privilegedAccess + description: A collection of role assignments for the provider. operationId: privilegedAccess_UpdateRoleAssignments parameters: - name: privilegedAccess-id @@ -106375,6 +108035,7 @@ paths: tags: - privilegedAccess.governanceRoleAssignment summary: Delete navigation property roleAssignments for privilegedAccess + description: A collection of role assignments for the provider. operationId: privilegedAccess_DeleteRoleAssignments parameters: - name: privilegedAccess-id @@ -106407,6 +108068,7 @@ paths: tags: - privilegedAccess.governanceRoleDefinition summary: Get roleDefinitions from privilegedAccess + description: A collection of role defintions for the provider. operationId: privilegedAccess_ListRoleDefinitions parameters: - name: privilegedAccess-id @@ -106501,6 +108163,7 @@ paths: tags: - privilegedAccess.governanceRoleDefinition summary: Create new navigation property to roleDefinitions for privilegedAccess + description: A collection of role defintions for the provider. operationId: privilegedAccess_CreateRoleDefinitions parameters: - name: privilegedAccess-id @@ -106532,6 +108195,7 @@ paths: tags: - privilegedAccess.governanceRoleDefinition summary: Get roleDefinitions from privilegedAccess + description: A collection of role defintions for the provider. operationId: privilegedAccess_GetRoleDefinitions parameters: - name: privilegedAccess-id @@ -106605,6 +108269,7 @@ paths: tags: - privilegedAccess.governanceRoleDefinition summary: Update the navigation property roleDefinitions in privilegedAccess + description: A collection of role defintions for the provider. operationId: privilegedAccess_UpdateRoleDefinitions parameters: - name: privilegedAccess-id @@ -106638,6 +108303,7 @@ paths: tags: - privilegedAccess.governanceRoleDefinition summary: Delete navigation property roleDefinitions for privilegedAccess + description: A collection of role defintions for the provider. operationId: privilegedAccess_DeleteRoleDefinitions parameters: - name: privilegedAccess-id @@ -106670,6 +108336,7 @@ paths: tags: - privilegedAccess.governanceRoleSetting summary: Get roleSettings from privilegedAccess + description: A collection of role settings for the provider. operationId: privilegedAccess_ListRoleSettings parameters: - name: privilegedAccess-id @@ -106779,6 +108446,7 @@ paths: tags: - privilegedAccess.governanceRoleSetting summary: Create new navigation property to roleSettings for privilegedAccess + description: A collection of role settings for the provider. operationId: privilegedAccess_CreateRoleSettings parameters: - name: privilegedAccess-id @@ -106810,6 +108478,7 @@ paths: tags: - privilegedAccess.governanceRoleSetting summary: Get roleSettings from privilegedAccess + description: A collection of role settings for the provider. operationId: privilegedAccess_GetRoleSettings parameters: - name: privilegedAccess-id @@ -106888,6 +108557,7 @@ paths: tags: - privilegedAccess.governanceRoleSetting summary: Update the navigation property roleSettings in privilegedAccess + description: A collection of role settings for the provider. operationId: privilegedAccess_UpdateRoleSettings parameters: - name: privilegedAccess-id @@ -106921,6 +108591,7 @@ paths: tags: - privilegedAccess.governanceRoleSetting summary: Delete navigation property roleSettings for privilegedAccess + description: A collection of role settings for the provider. operationId: privilegedAccess_DeleteRoleSettings parameters: - name: privilegedAccess-id @@ -107198,6 +108869,7 @@ paths: tags: - privilegedApproval.privilegedRoleAssignmentRequest summary: Get request from privilegedApproval + description: Read-only. The role assignment request for this approval object operationId: privilegedApproval_GetRequest parameters: - name: privilegedApproval-id @@ -107264,6 +108936,7 @@ paths: tags: - privilegedApproval.privilegedRoleAssignmentRequest summary: Get ref of request from privilegedApproval + description: Read-only. The role assignment request for this approval object operationId: privilegedApproval_GetRefRequest parameters: - name: privilegedApproval-id @@ -107292,6 +108965,7 @@ paths: tags: - privilegedApproval.privilegedRoleAssignmentRequest summary: Update the ref of navigation property request in privilegedApproval + description: Read-only. The role assignment request for this approval object operationId: privilegedApproval_SetRefRequest parameters: - name: privilegedApproval-id @@ -107320,6 +108994,7 @@ paths: tags: - privilegedApproval.privilegedRoleAssignmentRequest summary: Delete ref of navigation property request for privilegedApproval + description: Read-only. The role assignment request for this approval object operationId: privilegedApproval_DeleteRefRequest parameters: - name: privilegedApproval-id @@ -107345,6 +109020,7 @@ paths: tags: - privilegedApproval.privilegedRole summary: Get roleInfo from privilegedApproval + description: Read-only. Nullable. operationId: privilegedApproval_GetRoleInfo parameters: - name: privilegedApproval-id @@ -107412,6 +109088,7 @@ paths: tags: - privilegedApproval.privilegedRole summary: Update the navigation property roleInfo in privilegedApproval + description: Read-only. Nullable. operationId: privilegedApproval_UpdateRoleInfo parameters: - name: privilegedApproval-id @@ -107438,6 +109115,7 @@ paths: tags: - privilegedApproval.privilegedRole summary: Delete navigation property roleInfo for privilegedApproval + description: Read-only. Nullable. operationId: privilegedApproval_DeleteRoleInfo parameters: - name: privilegedApproval-id @@ -107998,6 +109676,7 @@ paths: tags: - privilegedRoleAssignmentRequests.privilegedRole summary: Get roleInfo from privilegedRoleAssignmentRequests + description: The roleInfo object of the role assignment request. operationId: privilegedRoleAssignmentRequests_GetRoleInfo parameters: - name: privilegedRoleAssignmentRequest-id @@ -108065,6 +109744,7 @@ paths: tags: - privilegedRoleAssignmentRequests.privilegedRole summary: Update the navigation property roleInfo in privilegedRoleAssignmentRequests + description: The roleInfo object of the role assignment request. operationId: privilegedRoleAssignmentRequests_UpdateRoleInfo parameters: - name: privilegedRoleAssignmentRequest-id @@ -108091,6 +109771,7 @@ paths: tags: - privilegedRoleAssignmentRequests.privilegedRole summary: Delete navigation property roleInfo for privilegedRoleAssignmentRequests + description: The roleInfo object of the role assignment request. operationId: privilegedRoleAssignmentRequests_DeleteRoleInfo parameters: - name: privilegedRoleAssignmentRequest-id @@ -108422,6 +110103,7 @@ paths: tags: - privilegedRoleAssignments.privilegedRole summary: Get roleInfo from privilegedRoleAssignments + description: Read-only. Nullable. The associated role information. operationId: privilegedRoleAssignments_GetRoleInfo parameters: - name: privilegedRoleAssignment-id @@ -108489,6 +110171,7 @@ paths: tags: - privilegedRoleAssignments.privilegedRole summary: Update the navigation property roleInfo in privilegedRoleAssignments + description: Read-only. Nullable. The associated role information. operationId: privilegedRoleAssignments_UpdateRoleInfo parameters: - name: privilegedRoleAssignment-id @@ -108515,6 +110198,7 @@ paths: tags: - privilegedRoleAssignments.privilegedRole summary: Delete navigation property roleInfo for privilegedRoleAssignments + description: Read-only. Nullable. The associated role information. operationId: privilegedRoleAssignments_DeleteRoleInfo parameters: - name: privilegedRoleAssignment-id @@ -108779,6 +110463,7 @@ paths: tags: - privilegedRoles.privilegedRoleAssignment summary: Get assignments from privilegedRoles + description: The assignments for this role. Read-only. Nullable. operationId: privilegedRoles_ListAssignments parameters: - name: privilegedRole-id @@ -108875,6 +110560,7 @@ paths: tags: - privilegedRoles.privilegedRoleAssignment summary: Get ref of assignments from privilegedRoles + description: The assignments for this role. Read-only. Nullable. operationId: privilegedRoles_ListRefAssignments parameters: - name: privilegedRole-id @@ -108939,6 +110625,7 @@ paths: tags: - privilegedRoles.privilegedRoleAssignment summary: Create new navigation property ref to assignments for privilegedRoles + description: The assignments for this role. Read-only. Nullable. operationId: privilegedRoles_CreateRefAssignments parameters: - name: privilegedRole-id @@ -109044,6 +110731,7 @@ paths: tags: - privilegedRoles.privilegedRoleSettings summary: Get settings from privilegedRoles + description: The settings for this role. Read-only. Nullable. operationId: privilegedRoles_GetSettings parameters: - name: privilegedRole-id @@ -109101,6 +110789,7 @@ paths: tags: - privilegedRoles.privilegedRoleSettings summary: Update the navigation property settings in privilegedRoles + description: The settings for this role. Read-only. Nullable. operationId: privilegedRoles_UpdateSettings parameters: - name: privilegedRole-id @@ -109127,6 +110816,7 @@ paths: tags: - privilegedRoles.privilegedRoleSettings summary: Delete navigation property settings for privilegedRoles + description: The settings for this role. Read-only. Nullable. operationId: privilegedRoles_DeleteSettings parameters: - name: privilegedRole-id @@ -109152,6 +110842,7 @@ paths: tags: - privilegedRoles.privilegedRoleSummary summary: Get summary from privilegedRoles + description: The summary information for this role. Read-only. Nullable. operationId: privilegedRoles_GetSummary parameters: - name: privilegedRole-id @@ -109204,6 +110895,7 @@ paths: tags: - privilegedRoles.privilegedRoleSummary summary: Update the navigation property summary in privilegedRoles + description: The summary information for this role. Read-only. Nullable. operationId: privilegedRoles_UpdateSummary parameters: - name: privilegedRole-id @@ -109230,6 +110922,7 @@ paths: tags: - privilegedRoles.privilegedRoleSummary summary: Delete navigation property summary for privilegedRoles + description: The summary information for this role. Read-only. Nullable. operationId: privilegedRoles_DeleteSummary parameters: - name: privilegedRole-id @@ -109488,6 +111181,7 @@ paths: tags: - programControls.program summary: Get program from programControls + description: The program this control is part of. operationId: programControls_GetProgram parameters: - name: programControl-id @@ -109544,6 +111238,7 @@ paths: tags: - programControls.program summary: Update the navigation property program in programControls + description: The program this control is part of. operationId: programControls_UpdateProgram parameters: - name: programControl-id @@ -109570,6 +111265,7 @@ paths: tags: - programControls.program summary: Delete navigation property program for programControls + description: The program this control is part of. operationId: programControls_DeleteProgram parameters: - name: programControl-id @@ -110004,6 +111700,7 @@ paths: tags: - programs.programControl summary: Get controls from programs + description: Controls associated with the program. operationId: programs_ListControls parameters: - name: program-id @@ -110108,6 +111805,7 @@ paths: tags: - programs.programControl summary: Create new navigation property to controls for programs + description: Controls associated with the program. operationId: programs_CreateControls parameters: - name: program-id @@ -110139,6 +111837,7 @@ paths: tags: - programs.programControl summary: Get controls from programs + description: Controls associated with the program. operationId: programs_GetControls parameters: - name: program-id @@ -110209,6 +111908,7 @@ paths: tags: - programs.programControl summary: Update the navigation property controls in programs + description: Controls associated with the program. operationId: programs_UpdateControls parameters: - name: program-id @@ -110242,6 +111942,7 @@ paths: tags: - programs.programControl summary: Delete navigation property controls for programs + description: Controls associated with the program. operationId: programs_DeleteControls parameters: - name: program-id @@ -110274,6 +111975,7 @@ paths: tags: - users.agreementAcceptance summary: Get agreementAcceptances from users + description: The user's terms of use acceptance statuses. Read-only. Nullable. operationId: users_ListAgreementAcceptances parameters: - name: user-id @@ -110392,6 +112094,7 @@ paths: tags: - users.agreementAcceptance summary: Get ref of agreementAcceptances from users + description: The user's terms of use acceptance statuses. Read-only. Nullable. operationId: users_ListRefAgreementAcceptances parameters: - name: user-id @@ -110472,6 +112175,7 @@ paths: tags: - users.agreementAcceptance summary: Create new navigation property ref to agreementAcceptances for users + description: The user's terms of use acceptance statuses. Read-only. Nullable. operationId: users_CreateRefAgreementAcceptances parameters: - name: user-id @@ -110768,6 +112472,176 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions: + title: accessReviewInstanceDecisionItemFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewInstanceDecisionItem: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewInstanceDecisionItem + type: object + properties: + accessReviewId: + type: string + description: The identifier of the accessReviewInstance parent. + appliedBy: + $ref: '#/components/schemas/microsoft.graph.userIdentity' + 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 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: + type: string + description: 'The result of applying the decision. Possible values: NotApplied, Success, Failed, NotFound, or NotSupported.' + nullable: true + decision: + type: string + description: 'Result of the review. Possible values: Approve, Deny, NotReviewed, or DontKnow.' + nullable: true + justification: + 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 timestamp when the review occurred. + format: date-time + nullable: true + target: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemTarget' + additionalProperties: + type: object + microsoft.graph.accessReviewInstanceFilterByCurrentUserOptions: + title: accessReviewInstanceFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewInstance: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewInstance + 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: '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: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + 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. 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: + type: string + description: 'Specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Read-only.' + nullable: true + decisions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' + description: 'Each user reviewed in an accessReviewInstance has a decision item representing if their access was approved, denied, or not yet reviewed.' + definition: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinition' + additionalProperties: + type: object + microsoft.graph.accessReviewScheduleDefinitionFilterByCurrentUserOptions: + title: accessReviewScheduleDefinitionFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewScheduleDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewScheduleDefinition + type: object + properties: + backupReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' + 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 + description: Timestamp when the access review series was created. Supports $select. + format: date-time + nullable: true + descriptionForAdmins: + type: string + description: Description provided by review creators to provide more context of the review to admins. Supports $select. + nullable: true + descriptionForReviewers: + type: string + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. + nullable: true + displayName: + type: string + description: Name of the access review series. Required on create. Supports $select. + nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' + instanceEnumerationScope: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Timestamp when the access review series was last modified. Supports $select. + format: date-time + nullable: true + reviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' + scope: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + settings: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' + status: + type: string + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' + nullable: true + instances: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' + additionalProperties: + type: object microsoft.graph.accessReviewHistoryDefinition: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -110779,33 +112653,41 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[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 access review definition was created. format: date-time decisions: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryDecisionFilter' + description: 'Determines which review decisions will be included in the fetched review history data if specified. Optional on create. All decisions will be included by default if no decisions are provided on create. Possible values are: approve, deny, dontKnow, notReviewed, and notNotified.' displayName: type: string + description: Name for the access review history data collection. Required. downloadUri: type: string + description: Uri which can be used to retrieve review history data. This URI will be active for 24 hours after being generated. 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 + description: Timestamp when all of the available data for this definition was collected. This will be set after this definition's status is set to done. 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 + description: 'Timestamp, reviews starting on or after this date will be included in the fetched history data. Required.' 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 + description: 'Timestamp, reviews starting on or before this date will be included in the fetched history data. Required.' format: date-time scopes: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + description: Used to scope what reviews are included in the fetched history data. Fetches reviews whose scope matches with this provided scope. See accessreviewqueryscope. Required. status: $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryStatus' additionalProperties: @@ -112508,6 +114390,95 @@ 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 + additionalProperties: + type: object + microsoft.graph.accessReviewScope: + title: accessReviewScope + type: object + additionalProperties: + type: object + 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, for example, ./manager, is specified. Possible value: decisions.' + nullable: true + queryType: + type: string + description: The type of query. Examples include MicrosoftGraph and ARM. + nullable: true + additionalProperties: + type: object + microsoft.graph.accessReviewScheduleSettings: + title: accessReviewScheduleSettings + type: object + properties: + applyActions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewApplyAction' + description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' + autoApplyDecisionsEnabled: + type: boolean + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' + defaultDecision: + type: string + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' + nullable: true + defaultDecisionEnabled: + type: boolean + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. + instanceDurationInDays: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Duration of each recurrence of review (accessReviewInstance) in number of days. + format: int32 + justificationRequiredOnApproval: + type: boolean + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. + mailNotificationsEnabled: + type: boolean + description: Indicates whether emails are enabled or disabled. Default value is false. + recommendationsEnabled: + type: boolean + description: Indicates whether decision recommendations are enabled/disabled. + recurrence: + $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' + reminderNotificationsEnabled: + type: boolean + description: Indicates whether reminders are enabled or disabled. Default value is false. + additionalProperties: + type: object microsoft.graph.accessReviewHistoryDecisionFilter: title: accessReviewHistoryDecisionFilter enum: @@ -112518,11 +114489,6 @@ components: - notNotified - unknownFutureValue type: string - microsoft.graph.accessReviewScope: - title: accessReviewScope - type: object - additionalProperties: - type: object microsoft.graph.accessReviewHistoryStatus: title: accessReviewHistoryStatus enum: @@ -112905,6 +114871,21 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.accessReviewApplyAction: + title: accessReviewApplyAction + type: object + additionalProperties: + type: object + microsoft.graph.patternedRecurrence: + title: patternedRecurrence + type: object + properties: + pattern: + $ref: '#/components/schemas/microsoft.graph.recurrencePattern' + range: + $ref: '#/components/schemas/microsoft.graph.recurrenceRange' + additionalProperties: + type: object microsoft.graph.identitySet: title: identitySet type: object @@ -113010,27 +114991,17 @@ components: $ref: '#/components/schemas/microsoft.graph.expirationPatternType' additionalProperties: type: object - microsoft.graph.patternedRecurrence: - title: patternedRecurrence - type: object - properties: - pattern: - $ref: '#/components/schemas/microsoft.graph.recurrencePattern' - range: - $ref: '#/components/schemas/microsoft.graph.recurrenceRange' - 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -113057,28 +115028,6 @@ components: description: The structure of this object is service-specific additionalProperties: type: object - microsoft.graph.accessPackageLocalizedText: - title: accessPackageLocalizedText - type: object - properties: - languageCode: - type: string - description: The ISO code for the intended language. Required. - nullable: true - text: - type: string - description: The text in the specific language. Required. - nullable: true - additionalProperties: - type: object - microsoft.graph.expirationPatternType: - title: expirationPatternType - enum: - - notSpecified - - noExpiration - - afterDateTime - - afterDuration - type: string microsoft.graph.recurrencePattern: title: recurrencePattern type: object @@ -113144,6 +115093,28 @@ components: $ref: '#/components/schemas/microsoft.graph.recurrenceRangeType' additionalProperties: type: object + microsoft.graph.accessPackageLocalizedText: + title: accessPackageLocalizedText + type: object + properties: + languageCode: + type: string + description: The ISO code for the intended language. Required. + nullable: true + text: + type: string + description: The text in the specific language. Required. + nullable: true + additionalProperties: + type: object + microsoft.graph.expirationPatternType: + title: expirationPatternType + enum: + - notSpecified + - noExpiration + - afterDateTime + - afterDuration + type: string odata.error.detail: required: - code diff --git a/openApiDocs/beta/Identity.SignIns.yml b/openApiDocs/beta/Identity.SignIns.yml index 3d76939bd99..0adba75fce0 100644 --- a/openApiDocs/beta/Identity.SignIns.yml +++ b/openApiDocs/beta/Identity.SignIns.yml @@ -1535,6 +1535,219 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + /informationProtection/bitlocker/recoveryKeys: + get: + tags: + - informationProtection.bitlocker + summary: Get recoveryKeys from informationProtection + description: The recovery keys associated with the bitlocker entity. + operationId: informationProtection.bitlocker_ListRecoveryKeys + 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 + - createdDateTime + - createdDateTime desc + - deviceId + - deviceId desc + - key + - key desc + - volumeType + - volumeType 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 + - createdDateTime + - deviceId + - key + - volumeType + 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 bitlockerRecoveryKey + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.bitlockerRecoveryKey' + '@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: + - informationProtection.bitlocker + summary: Create new navigation property to recoveryKeys for informationProtection + description: The recovery keys associated with the bitlocker entity. + operationId: informationProtection.bitlocker_CreateRecoveryKeys + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.bitlockerRecoveryKey' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.bitlockerRecoveryKey' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}': + get: + tags: + - informationProtection.bitlocker + summary: Get recoveryKeys from informationProtection + description: The recovery keys associated with the bitlocker entity. + operationId: informationProtection.bitlocker_GetRecoveryKeys + parameters: + - name: bitlockerRecoveryKey-id + in: path + description: 'key: id of bitlockerRecoveryKey' + required: true + schema: + type: string + x-ms-docs-key-type: bitlockerRecoveryKey + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - createdDateTime + - deviceId + - key + - volumeType + 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.bitlockerRecoveryKey' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - informationProtection.bitlocker + summary: Update the navigation property recoveryKeys in informationProtection + description: The recovery keys associated with the bitlocker entity. + operationId: informationProtection.bitlocker_UpdateRecoveryKeys + parameters: + - name: bitlockerRecoveryKey-id + in: path + description: 'key: id of bitlockerRecoveryKey' + required: true + schema: + type: string + x-ms-docs-key-type: bitlockerRecoveryKey + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.bitlockerRecoveryKey' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - informationProtection.bitlocker + summary: Delete navigation property recoveryKeys for informationProtection + description: The recovery keys associated with the bitlocker entity. + operationId: informationProtection.bitlocker_DeleteRecoveryKeys + parameters: + - name: bitlockerRecoveryKey-id + in: path + description: 'key: id of bitlockerRecoveryKey' + required: true + schema: + type: string + x-ms-docs-key-type: bitlockerRecoveryKey + - 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 /informationProtection/dataLossPreventionPolicies: get: tags: @@ -3177,6 +3390,7 @@ paths: tags: - informationProtection.threatAssessmentRequest summary: Get results from informationProtection + description: 'A collection of threat assessment results. Read-only. By default, a GET /threatAssessmentRequests/{id} does not return this property unless you apply $expand on it.' operationId: informationProtection.threatAssessmentRequests_ListResults parameters: - name: threatAssessmentRequest-id @@ -3264,6 +3478,7 @@ paths: tags: - informationProtection.threatAssessmentRequest summary: Create new navigation property to results for informationProtection + description: 'A collection of threat assessment results. Read-only. By default, a GET /threatAssessmentRequests/{id} does not return this property unless you apply $expand on it.' operationId: informationProtection.threatAssessmentRequests_CreateResults parameters: - name: threatAssessmentRequest-id @@ -3295,6 +3510,7 @@ paths: tags: - informationProtection.threatAssessmentRequest summary: Get results from informationProtection + description: 'A collection of threat assessment results. Read-only. By default, a GET /threatAssessmentRequests/{id} does not return this property unless you apply $expand on it.' operationId: informationProtection.threatAssessmentRequests_GetResults parameters: - name: threatAssessmentRequest-id @@ -3352,6 +3568,7 @@ paths: tags: - informationProtection.threatAssessmentRequest summary: Update the navigation property results in informationProtection + description: 'A collection of threat assessment results. Read-only. By default, a GET /threatAssessmentRequests/{id} does not return this property unless you apply $expand on it.' operationId: informationProtection.threatAssessmentRequests_UpdateResults parameters: - name: threatAssessmentRequest-id @@ -3385,6 +3602,7 @@ paths: tags: - informationProtection.threatAssessmentRequest summary: Delete navigation property results for informationProtection + description: 'A collection of threat assessment results. Read-only. By default, a GET /threatAssessmentRequests/{id} does not return this property unless you apply $expand on it.' operationId: informationProtection.threatAssessmentRequests_DeleteResults parameters: - name: threatAssessmentRequest-id @@ -3654,6 +3872,7 @@ paths: tags: - invitations.user summary: Get invitedUser from invitations + description: The user created as part of the invitation creation. Read-Only operationId: invitations_GetInvitedUser parameters: - name: invitation-id @@ -3764,6 +3983,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -3836,6 +4056,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -3950,6 +4171,10 @@ paths: operationId: invitations.InvitedUser.ListTransitiveMemberOf parameters: invitation-id: $request.path.invitation-id + transitiveReports: + operationId: invitations.InvitedUser.ListTransitiveReports + parameters: + invitation-id: $request.path.invitation-id calendar: operationId: invitations.InvitedUser.GetCalendar parameters: @@ -4138,6 +4363,7 @@ paths: tags: - invitations.user summary: Get ref of invitedUser from invitations + description: The user created as part of the invitation creation. Read-Only operationId: invitations_GetRefInvitedUser parameters: - name: invitation-id @@ -4215,6 +4441,10 @@ paths: operationId: invitations.InvitedUser.ListTransitiveMemberOf parameters: invitation-id: $request.path.invitation-id + transitiveReports: + operationId: invitations.InvitedUser.ListTransitiveReports + parameters: + invitation-id: $request.path.invitation-id calendar: operationId: invitations.InvitedUser.GetCalendar parameters: @@ -4402,6 +4632,7 @@ paths: tags: - invitations.user summary: Update the ref of navigation property invitedUser in invitations + description: The user created as part of the invitation creation. Read-Only operationId: invitations_SetRefInvitedUser parameters: - name: invitation-id @@ -4430,6 +4661,7 @@ paths: tags: - invitations.user summary: Delete ref of navigation property invitedUser for invitations + description: The user created as part of the invitation creation. Read-Only operationId: invitations_DeleteRefInvitedUser parameters: - name: invitation-id @@ -4693,6 +4925,7 @@ paths: tags: - organization.certificateBasedAuthConfiguration summary: Get certificateBasedAuthConfiguration from organization + description: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. operationId: organization_ListCertificateBasedAuthConfiguration parameters: - name: organization-id @@ -4775,6 +5008,7 @@ paths: tags: - organization.certificateBasedAuthConfiguration summary: Get ref of certificateBasedAuthConfiguration from organization + description: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. operationId: organization_ListRefCertificateBasedAuthConfiguration parameters: - name: organization-id @@ -4831,6 +5065,7 @@ paths: tags: - organization.certificateBasedAuthConfiguration summary: Create new navigation property ref to certificateBasedAuthConfiguration for organization + description: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. operationId: organization_CreateRefCertificateBasedAuthConfiguration parameters: - name: organization-id @@ -4889,6 +5124,7 @@ paths: - tokenIssuancePolicies - tokenLifetimePolicies - featureRolloutPolicies + - accessReviewPolicy - adminConsentRequestPolicy - directoryRoleAccessReviewPolicy - conditionalAccessPolicies @@ -4918,6 +5154,7 @@ paths: - tokenIssuancePolicies - tokenLifetimePolicies - featureRolloutPolicies + - accessReviewPolicy - adminConsentRequestPolicy - directoryRoleAccessReviewPolicy - conditionalAccessPolicies @@ -4955,6 +5192,8 @@ paths: operationId: policies.ListTokenLifetimePolicies featureRolloutPolicies: operationId: policies.ListFeatureRolloutPolicies + accessReviewPolicy: + operationId: policies.GetAccessReviewPolicy adminConsentRequestPolicy: operationId: policies.GetAdminConsentRequestPolicy directoryRoleAccessReviewPolicy: @@ -4988,6 +5227,85 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + /policies/accessReviewPolicy: + get: + tags: + - policies.accessReviewPolicy + summary: Get accessReviewPolicy from policies + operationId: policies_GetAccessReviewPolicy + parameters: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - description + - displayName + - isGroupOwnerManagementEnabled + 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.accessReviewPolicy' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - policies.accessReviewPolicy + summary: Update the navigation property accessReviewPolicy in policies + operationId: policies_UpdateAccessReviewPolicy + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.accessReviewPolicy' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - policies.accessReviewPolicy + summary: Delete navigation property accessReviewPolicy for policies + operationId: policies_DeleteAccessReviewPolicy + 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/activityBasedTimeoutPolicies: get: tags: @@ -6524,6 +6842,7 @@ paths: tags: - policies.featureRolloutPolicy summary: Get appliesTo from policies + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: policies.featureRolloutPolicies_ListAppliesTo parameters: - name: featureRolloutPolicy-id @@ -6605,6 +6924,7 @@ paths: tags: - policies.featureRolloutPolicy summary: Create new navigation property to appliesTo for policies + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: policies.featureRolloutPolicies_CreateAppliesTo parameters: - name: featureRolloutPolicy-id @@ -6636,6 +6956,7 @@ paths: tags: - policies.featureRolloutPolicy summary: Get appliesTo from policies + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: policies.featureRolloutPolicies_GetAppliesTo parameters: - name: featureRolloutPolicy-id @@ -6691,6 +7012,7 @@ paths: tags: - policies.featureRolloutPolicy summary: Update the navigation property appliesTo in policies + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: policies.featureRolloutPolicies_UpdateAppliesTo parameters: - name: featureRolloutPolicy-id @@ -6724,6 +7046,7 @@ paths: tags: - policies.featureRolloutPolicy summary: Delete navigation property appliesTo for policies + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: policies.featureRolloutPolicies_DeleteAppliesTo parameters: - name: featureRolloutPolicy-id @@ -7278,6 +7601,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Get excludes from policies + description: Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_ListExcludes parameters: - name: permissionGrantPolicy-id @@ -7380,6 +7704,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Create new navigation property to excludes for policies + description: Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_CreateExcludes parameters: - name: permissionGrantPolicy-id @@ -7411,6 +7736,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Get excludes from policies + description: Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_GetExcludes parameters: - name: permissionGrantPolicy-id @@ -7473,6 +7799,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Update the navigation property excludes in policies + description: Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_UpdateExcludes parameters: - name: permissionGrantPolicy-id @@ -7506,6 +7833,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Delete navigation property excludes for policies + description: Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_DeleteExcludes parameters: - name: permissionGrantPolicy-id @@ -7538,6 +7866,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Get includes from policies + description: Condition sets which are included in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_ListIncludes parameters: - name: permissionGrantPolicy-id @@ -7640,6 +7969,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Create new navigation property to includes for policies + description: Condition sets which are included in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_CreateIncludes parameters: - name: permissionGrantPolicy-id @@ -7671,6 +8001,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Get includes from policies + description: Condition sets which are included in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_GetIncludes parameters: - name: permissionGrantPolicy-id @@ -7733,6 +8064,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Update the navigation property includes in policies + description: Condition sets which are included in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_UpdateIncludes parameters: - name: permissionGrantPolicy-id @@ -7766,6 +8098,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Delete navigation property includes for policies + description: Condition sets which are included in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_DeleteIncludes parameters: - name: permissionGrantPolicy-id @@ -8035,6 +8368,7 @@ paths: tags: - policies.unifiedRoleManagementPolicy summary: Get effectiveRules from policies + description: 'The list of effective rules like approval rule, expiration rule, etc. evaluated based on inherited referenced rules. E.g. If there is a tenant wide policy to enforce enabling approval rule, the effective rule will be to enable approval even if the polcy has a rule to disable approval.' operationId: policies.roleManagementPolicies_ListEffectiveRules parameters: - name: unifiedRoleManagementPolicy-id @@ -8116,6 +8450,7 @@ paths: tags: - policies.unifiedRoleManagementPolicy summary: Create new navigation property to effectiveRules for policies + description: 'The list of effective rules like approval rule, expiration rule, etc. evaluated based on inherited referenced rules. E.g. If there is a tenant wide policy to enforce enabling approval rule, the effective rule will be to enable approval even if the polcy has a rule to disable approval.' operationId: policies.roleManagementPolicies_CreateEffectiveRules parameters: - name: unifiedRoleManagementPolicy-id @@ -8147,6 +8482,7 @@ paths: tags: - policies.unifiedRoleManagementPolicy summary: Get effectiveRules from policies + description: 'The list of effective rules like approval rule, expiration rule, etc. evaluated based on inherited referenced rules. E.g. If there is a tenant wide policy to enforce enabling approval rule, the effective rule will be to enable approval even if the polcy has a rule to disable approval.' operationId: policies.roleManagementPolicies_GetEffectiveRules parameters: - name: unifiedRoleManagementPolicy-id @@ -8202,6 +8538,7 @@ paths: tags: - policies.unifiedRoleManagementPolicy summary: Update the navigation property effectiveRules in policies + description: 'The list of effective rules like approval rule, expiration rule, etc. evaluated based on inherited referenced rules. E.g. If there is a tenant wide policy to enforce enabling approval rule, the effective rule will be to enable approval even if the polcy has a rule to disable approval.' operationId: policies.roleManagementPolicies_UpdateEffectiveRules parameters: - name: unifiedRoleManagementPolicy-id @@ -8235,6 +8572,7 @@ paths: tags: - policies.unifiedRoleManagementPolicy summary: Delete navigation property effectiveRules for policies + description: 'The list of effective rules like approval rule, expiration rule, etc. evaluated based on inherited referenced rules. E.g. If there is a tenant wide policy to enforce enabling approval rule, the effective rule will be to enable approval even if the polcy has a rule to disable approval.' operationId: policies.roleManagementPolicies_DeleteEffectiveRules parameters: - name: unifiedRoleManagementPolicy-id @@ -8267,6 +8605,7 @@ paths: tags: - policies.unifiedRoleManagementPolicy summary: Get rules from policies + description: 'The collection of rules like approval rule, expiration rule, etc.' operationId: policies.roleManagementPolicies_ListRules parameters: - name: unifiedRoleManagementPolicy-id @@ -8348,6 +8687,7 @@ paths: tags: - policies.unifiedRoleManagementPolicy summary: Create new navigation property to rules for policies + description: 'The collection of rules like approval rule, expiration rule, etc.' operationId: policies.roleManagementPolicies_CreateRules parameters: - name: unifiedRoleManagementPolicy-id @@ -8379,6 +8719,7 @@ paths: tags: - policies.unifiedRoleManagementPolicy summary: Get rules from policies + description: 'The collection of rules like approval rule, expiration rule, etc.' operationId: policies.roleManagementPolicies_GetRules parameters: - name: unifiedRoleManagementPolicy-id @@ -8434,6 +8775,7 @@ paths: tags: - policies.unifiedRoleManagementPolicy summary: Update the navigation property rules in policies + description: 'The collection of rules like approval rule, expiration rule, etc.' operationId: policies.roleManagementPolicies_UpdateRules parameters: - name: unifiedRoleManagementPolicy-id @@ -8467,6 +8809,7 @@ paths: tags: - policies.unifiedRoleManagementPolicy summary: Delete navigation property rules for policies + description: 'The collection of rules like approval rule, expiration rule, etc.' operationId: policies.roleManagementPolicies_DeleteRules parameters: - name: unifiedRoleManagementPolicy-id @@ -8716,6 +9059,7 @@ paths: tags: - policies.unifiedRoleManagementPolicyAssignment summary: Get policy from policies + description: The policy for the assignment. operationId: policies.roleManagementPolicyAssignments_GetPolicy parameters: - name: unifiedRoleManagementPolicyAssignment-id @@ -8784,6 +9128,7 @@ paths: tags: - policies.unifiedRoleManagementPolicyAssignment summary: Get ref of policy from policies + description: The policy for the assignment. operationId: policies.roleManagementPolicyAssignments_GetRefPolicy parameters: - name: unifiedRoleManagementPolicyAssignment-id @@ -8816,6 +9161,7 @@ paths: tags: - policies.unifiedRoleManagementPolicyAssignment summary: Update the ref of navigation property policy in policies + description: The policy for the assignment. operationId: policies.roleManagementPolicyAssignments_SetRefPolicy parameters: - name: unifiedRoleManagementPolicyAssignment-id @@ -8844,6 +9190,7 @@ paths: tags: - policies.unifiedRoleManagementPolicyAssignment summary: Delete ref of navigation property policy for policies + description: The policy for the assignment. operationId: policies.roleManagementPolicyAssignments_DeleteRefPolicy parameters: - name: unifiedRoleManagementPolicyAssignment-id @@ -9816,6 +10163,7 @@ paths: tags: - riskyUsers.riskyUserHistoryItem summary: Get history from riskyUsers + description: The activity related to user risk level change operationId: riskyUsers_ListHistory parameters: - name: riskyUser-id @@ -9929,6 +10277,7 @@ paths: tags: - riskyUsers.riskyUserHistoryItem summary: Create new navigation property to history for riskyUsers + description: The activity related to user risk level change operationId: riskyUsers_CreateHistory parameters: - name: riskyUser-id @@ -9960,6 +10309,7 @@ paths: tags: - riskyUsers.riskyUserHistoryItem summary: Get history from riskyUsers + description: The activity related to user risk level change operationId: riskyUsers_GetHistory parameters: - name: riskyUser-id @@ -10033,6 +10383,7 @@ paths: tags: - riskyUsers.riskyUserHistoryItem summary: Update the navigation property history in riskyUsers + description: The activity related to user risk level change operationId: riskyUsers_UpdateHistory parameters: - name: riskyUser-id @@ -10066,6 +10417,7 @@ paths: tags: - riskyUsers.riskyUserHistoryItem summary: Delete navigation property history for riskyUsers + description: The activity related to user risk level change operationId: riskyUsers_DeleteHistory parameters: - name: riskyUser-id @@ -11985,6 +12337,7 @@ paths: tags: - users.authentication summary: Get device from users + description: The registered device on which Microsoft Authenticator resides. This property is null if the device is not registered for passwordless Phone Sign-In. operationId: users.authentication.microsoftAuthenticatorMethods_GetDevice parameters: - name: user-id @@ -12124,6 +12477,7 @@ paths: tags: - users.authentication summary: Update the navigation property device in users + description: The registered device on which Microsoft Authenticator resides. This property is null if the device is not registered for passwordless Phone Sign-In. operationId: users.authentication.microsoftAuthenticatorMethods_UpdateDevice parameters: - name: user-id @@ -12157,6 +12511,7 @@ paths: tags: - users.authentication summary: Delete navigation property device for users + description: The registered device on which Microsoft Authenticator resides. This property is null if the device is not registered for passwordless Phone Sign-In. operationId: users.authentication.microsoftAuthenticatorMethods_DeleteDevice parameters: - name: user-id @@ -13877,6 +14232,7 @@ paths: tags: - users.authentication summary: Get device from users + description: The registered device on which this Windows Hello for Business key resides. operationId: users.authentication.windowsHelloForBusinessMethods_GetDevice parameters: - name: user-id @@ -14016,6 +14372,7 @@ paths: tags: - users.authentication summary: Update the navigation property device in users + description: The registered device on which this Windows Hello for Business key resides. operationId: users.authentication.windowsHelloForBusinessMethods_UpdateDevice parameters: - name: user-id @@ -14049,6 +14406,7 @@ paths: tags: - users.authentication summary: Delete navigation property device for users + description: The registered device on which this Windows Hello for Business key resides. operationId: users.authentication.windowsHelloForBusinessMethods_DeleteDevice parameters: - name: user-id @@ -14273,12 +14631,15 @@ components: properties: description: type: string + description: 'A short explanation of the policies that are enforced by authenticationContextClassReference. This value should be used to provide secondary text to describe the authentication context class reference when building user facing admin experiences. For example, selection UX.' nullable: true displayName: type: string + description: 'The display name is the friendly name of the authenticationContextClassReference. This value should be used to identify the authentication context class reference when building user facing admin experiences. For example, selection UX.' nullable: true isAvailable: type: boolean + description: Indicates whether the authenticationContextClassReference has been published by the security admin and is ready for use by apps. When it is set to false it should not be shown in admin UX experiences because the value is not currently available for selection. nullable: true additionalProperties: type: object @@ -14416,6 +14777,28 @@ components: description: The recovery keys associated with the bitlocker entity. additionalProperties: type: object + microsoft.graph.bitlockerRecoveryKey: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: bitlockerRecoveryKey + 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: The date and time when the key was originally backed up to Azure Active Directory. + format: date-time + deviceId: + type: string + description: ID of the device the BitLocker key is originally backed up from. + nullable: true + key: + type: string + description: The BitLocker recovery key. + volumeType: + $ref: '#/components/schemas/microsoft.graph.volumeType' + additionalProperties: + type: object microsoft.graph.dataLossPreventionPolicy: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -14855,7 +15238,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -14868,7 +15251,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -14880,12 +15263,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -14894,7 +15277,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -14902,7 +15285,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -14918,7 +15301,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -14934,7 +15317,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -14958,7 +15341,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -14977,11 +15360,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -14989,7 +15372,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -15036,7 +15419,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -15045,7 +15428,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -15083,15 +15466,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -15099,7 +15482,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -15228,6 +15611,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -15418,7 +15805,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -15500,6 +15887,8 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy' + accessReviewPolicy: + $ref: '#/components/schemas/microsoft.graph.accessReviewPolicy' adminConsentRequestPolicy: $ref: '#/components/schemas/microsoft.graph.adminConsentRequestPolicy' directoryRoleAccessReviewPolicy: @@ -15520,6 +15909,24 @@ components: $ref: '#/components/schemas/microsoft.graph.unifiedRoleManagementPolicyAssignment' additionalProperties: type: object + microsoft.graph.accessReviewPolicy: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewPolicy + type: object + properties: + description: + type: string + description: Description for this policy. Read-only. + nullable: true + displayName: + type: string + description: Display name for this policy. Read-only. + isGroupOwnerManagementEnabled: + type: boolean + description: 'If true, group owners can create and manage access reviews on groups they own.' + additionalProperties: + type: object microsoft.graph.activityBasedTimeoutPolicy: allOf: - $ref: '#/components/schemas/microsoft.graph.stsPolicy' @@ -15588,17 +15995,21 @@ components: properties: description: type: string + description: A description of the policy. nullable: true displayName: type: string + description: The name of the policy. 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 of the last update to the policy. format: date-time nullable: true policyVersion: type: string + description: The version of the policy in use. nullable: true reconfirmationInDays: maximum: 2147483647 @@ -15612,6 +16023,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.authenticationMethodConfiguration' + description: Represents the settings for each authentication method. additionalProperties: type: object microsoft.graph.authorizationPolicy: @@ -15633,7 +16045,7 @@ components: $ref: '#/components/schemas/microsoft.graph.allowInvitesFrom' blockMsolPowerShell: type: boolean - description: To disable the use of MSOL PowerShell set this property to true. Setting to true will also disable user-based access to the legacy service endpoint used by MSOL PowerShell. This does not affect Azure AD Connect or Microsoft Graph. + description: To disable the use of MSOL PowerShell set this property to true. This will also disable user-based access to the legacy service endpoint used by MSOL PowerShell. This does not affect Azure AD Connect or Microsoft Graph. nullable: true defaultUserRolePermissions: $ref: '#/components/schemas/microsoft.graph.defaultUserRolePermissions' @@ -15669,6 +16081,7 @@ components: description: The tenant admin can configure local accounts using email if the email and password authentication method is enabled. isPhoneOneTimePasswordAuthenticationEnabled: type: boolean + description: The tenant admin can configure local accounts using phone number if the phone number and one-time password authentication method is enabled. isUserNameAuthenticationEnabled: type: boolean description: The tenant admin can configure local accounts using username if the username and password authentication method is enabled. @@ -15827,30 +16240,38 @@ components: properties: description: type: string + description: Description for the policy. displayName: type: string + description: Display name for the policy. isOrganizationDefault: type: boolean + description: This can only be set to true for a single tenant wide policy which will apply to all scopes and roles. Set the scopeId to '/' and scopeType to Directory. nullable: true lastModifiedBy: $ref: '#/components/schemas/microsoft.graph.identity' 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 time when the role setting was last modified. format: date-time nullable: true scopeId: type: string + description: 'The id of the scope where the policy is created. E.g. ''/'', groupId, etc.' scopeType: type: string + description: 'The type of the scope where the policy is created. One of Directory, DirectoryRole, Group.' effectiveRules: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleManagementPolicyRule' + description: 'The list of effective rules like approval rule, expiration rule, etc. evaluated based on inherited referenced rules. E.g. If there is a tenant wide policy to enforce enabling approval rule, the effective rule will be to enable approval even if the polcy has a rule to disable approval.' rules: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleManagementPolicyRule' + description: 'The collection of rules like approval rule, expiration rule, etc.' additionalProperties: type: object microsoft.graph.unifiedRoleManagementPolicyRule: @@ -15871,13 +16292,17 @@ components: properties: policyId: type: string + description: The id of the policy. roleDefinitionId: type: string + description: 'The id of the role definition where the policy applies. If not specified, the policy applies to all roles.' nullable: true scopeId: type: string + description: 'The id of the scope where the policy is assigned. E.g. ''/'', groupId, etc.' scopeType: type: string + description: 'The type of the scope where the policy is assigned. One of Directory, DirectoryRole, Group.' policy: $ref: '#/components/schemas/microsoft.graph.unifiedRoleManagementPolicy' additionalProperties: @@ -16230,7 +16655,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -16438,11 +16862,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -16457,6 +16882,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -16466,7 +16892,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -16735,28 +17161,14 @@ components: - resourceOwner - unknownFutureValue type: string - microsoft.graph.bitlockerRecoveryKey: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: bitlockerRecoveryKey - 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: The date and time when the key was originally backed up to Azure Active Directory. - format: date-time - deviceId: - type: string - description: ID of the device the BitLocker key is originally backed up from. - nullable: true - key: - type: string - description: The BitLocker recovery key. - volumeType: - $ref: '#/components/schemas/microsoft.graph.volumeType' - additionalProperties: - type: object + microsoft.graph.volumeType: + title: volumeType + enum: + - operatingSystemVolume + - fixedDataVolume + - removableDataVolume + - unknownFutureValue + type: string microsoft.graph.accessScope: title: accessScope enum: @@ -16813,17 +17225,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -16831,9 +17248,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -16849,10 +17268,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -17130,7 +17549,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -18199,6 +18618,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -18938,6 +19358,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -19219,16 +19643,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -19830,7 +20254,6 @@ components: 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: @@ -19986,7 +20409,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -20150,7 +20573,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -20235,14 +20658,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -20251,18 +20674,18 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object microsoft.graph.stagedFeatureName: @@ -20759,14 +21182,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.volumeType: - title: volumeType - enum: - - operatingSystemVolume - - fixedDataVolume - - removableDataVolume - - unknownFutureValue - type: string microsoft.graph.classificationError: allOf: - $ref: '#/components/schemas/microsoft.graph.classifcationErrorBase' @@ -21500,7 +21915,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -22658,53 +23073,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -22731,6 +23151,35 @@ components: additionalProperties: type: object description: Enrollment Configuration Assignment + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -23127,6 +23576,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -23320,6 +23773,19 @@ components: additionalProperties: type: object description: Logged On User + microsoft.graph.assignmentFilterEvaluationStatusDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: assignmentFilterEvaluationStatusDetails + type: object + properties: + payloadId: + type: string + description: PayloadId on which filter has been applied. + nullable: true + additionalProperties: + type: object + description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceCompliancePolicyState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -23361,19 +23827,6 @@ components: additionalProperties: type: object description: Device Compliance Policy State for a given device. - microsoft.graph.assignmentFilterEvaluationStatusDetails: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: assignmentFilterEvaluationStatusDetails - type: object - properties: - payloadId: - type: string - description: PayloadId on which filter has been applied. - nullable: true - additionalProperties: - type: object - description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceConfigurationState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -24992,10 +25445,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -25066,18 +25531,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -25090,6 +25554,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -25185,6 +25650,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -25665,14 +26132,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.excludeTarget' + description: Users and groups of users that are excluded from being prompted to set up the authentication method. includeTargets: type: array items: $ref: '#/components/schemas/microsoft.graph.authenticationMethodsRegistrationCampaignIncludeTarget' + description: Users and groups of users that are prompted to set up the authentication method. snoozeDurationInDays: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Specifies the number of days that the user sees a prompt again if they select ''Not now'' and snoozes the prompt. Minimum 0 days. Maximum: 14 days. If the value is ''0'' – The user is prompted during every MFA attempt.' format: int32 state: $ref: '#/components/schemas/microsoft.graph.advancedConfigState' @@ -27814,16 +28284,6 @@ components: additionalProperties: type: object description: Base type for assignment targets. - microsoft.graph.configurationManagerClientState: - title: configurationManagerClientState - enum: - - unknown - - installed - - healthy - - installFailed - - updateFailed - - communicationError - type: string microsoft.graph.actionState: title: actionState enum: @@ -27835,6 +28295,35 @@ components: - failed - notSupported type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object + microsoft.graph.configurationManagerClientState: + title: configurationManagerClientState + enum: + - unknown + - installed + - healthy + - installFailed + - updateFailed + - communicationError + type: string microsoft.graph.deviceGuardLocalSystemAuthorityCredentialGuardState: title: deviceGuardLocalSystemAuthorityCredentialGuardState enum: @@ -29013,18 +29502,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -29062,7 +29555,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -29086,7 +29579,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -29144,6 +29637,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -29176,6 +29674,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -29617,6 +30117,7 @@ components: properties: id: type: string + description: The object identifier of an Azure AD user or group. targetType: $ref: '#/components/schemas/microsoft.graph.authenticationMethodTargetType' additionalProperties: @@ -29627,8 +30128,10 @@ components: properties: id: type: string + description: The object identifier of an Azure AD user or group. targetedAuthenticationMethod: type: string + description: The authentication method that the user is prompted to register. The value must be microsoftAuthenticator. nullable: true targetType: $ref: '#/components/schemas/microsoft.graph.authenticationMethodTargetType' @@ -30291,11 +30794,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -30890,16 +31393,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: @@ -30943,6 +31449,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' @@ -31427,7 +31934,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string diff --git a/openApiDocs/beta/Mail.yml b/openApiDocs/beta/Mail.yml index c2a2d150350..3ce75d1f4ea 100644 --- a/openApiDocs/beta/Mail.yml +++ b/openApiDocs/beta/Mail.yml @@ -11,6 +11,7 @@ paths: tags: - users.inferenceClassification summary: Get inferenceClassification from users + description: Relevance classification of the user's messages based on explicit designations which override inferred relevance or importance. operationId: users_GetInferenceClassification parameters: - name: user-id @@ -65,6 +66,7 @@ paths: tags: - users.inferenceClassification summary: Update the navigation property inferenceClassification in users + description: Relevance classification of the user's messages based on explicit designations which override inferred relevance or importance. operationId: users_UpdateInferenceClassification parameters: - name: user-id @@ -91,6 +93,7 @@ paths: tags: - users.inferenceClassification summary: Delete navigation property inferenceClassification for users + description: Relevance classification of the user's messages based on explicit designations which override inferred relevance or importance. operationId: users_DeleteInferenceClassification parameters: - name: user-id @@ -116,6 +119,7 @@ paths: tags: - users.inferenceClassification summary: Get overrides from users + description: 'A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable.' operationId: users.inferenceClassification_ListOverrides parameters: - name: user-id @@ -200,6 +204,7 @@ paths: tags: - users.inferenceClassification summary: Create new navigation property to overrides for users + description: 'A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable.' operationId: users.inferenceClassification_CreateOverrides parameters: - name: user-id @@ -231,6 +236,7 @@ paths: tags: - users.inferenceClassification summary: Get overrides from users + description: 'A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable.' operationId: users.inferenceClassification_GetOverrides parameters: - name: user-id @@ -287,6 +293,7 @@ paths: tags: - users.inferenceClassification summary: Update the navigation property overrides in users + description: 'A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable.' operationId: users.inferenceClassification_UpdateOverrides parameters: - name: user-id @@ -320,6 +327,7 @@ paths: tags: - users.inferenceClassification summary: Delete navigation property overrides for users + description: 'A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable.' operationId: users.inferenceClassification_DeleteOverrides parameters: - name: user-id @@ -352,6 +360,7 @@ paths: tags: - users.mailFolder summary: Get mailFolders from users + description: The user's mail folders. Read-only. Nullable. operationId: users_ListMailFolders parameters: - name: user-id @@ -463,6 +472,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to mailFolders for users + description: The user's mail folders. Read-only. Nullable. operationId: users_CreateMailFolders parameters: - name: user-id @@ -494,6 +504,7 @@ paths: tags: - users.mailFolder summary: Get mailFolders from users + description: The user's mail folders. Read-only. Nullable. operationId: users_GetMailFolders parameters: - name: user-id @@ -598,6 +609,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property mailFolders in users + description: The user's mail folders. Read-only. Nullable. operationId: users_UpdateMailFolders parameters: - name: user-id @@ -631,6 +643,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property mailFolders for users + description: The user's mail folders. Read-only. Nullable. operationId: users_DeleteMailFolders parameters: - name: user-id @@ -663,6 +676,7 @@ paths: tags: - users.mailFolder summary: Get childFolders from users + description: The collection of child folders in the mailFolder. operationId: users.mailFolders_ListChildFolders parameters: - name: user-id @@ -781,6 +795,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to childFolders for users + description: The collection of child folders in the mailFolder. operationId: users.mailFolders_CreateChildFolders parameters: - name: user-id @@ -819,6 +834,7 @@ paths: tags: - users.mailFolder summary: Get childFolders from users + description: The collection of child folders in the mailFolder. operationId: users.mailFolders_GetChildFolders parameters: - name: user-id @@ -936,6 +952,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property childFolders in users + description: The collection of child folders in the mailFolder. operationId: users.mailFolders_UpdateChildFolders parameters: - name: user-id @@ -976,6 +993,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property childFolders for users + description: The collection of child folders in the mailFolder. operationId: users.mailFolders_DeleteChildFolders parameters: - name: user-id @@ -1015,6 +1033,7 @@ paths: tags: - users.mailFolder summary: Get messageRules from users + description: The collection of rules that apply to the user's Inbox folder. operationId: users.mailFolders_ListMessageRules parameters: - name: user-id @@ -1124,6 +1143,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to messageRules for users + description: The collection of rules that apply to the user's Inbox folder. operationId: users.mailFolders_CreateMessageRules parameters: - name: user-id @@ -1162,6 +1182,7 @@ paths: tags: - users.mailFolder summary: Get messageRules from users + description: The collection of rules that apply to the user's Inbox folder. operationId: users.mailFolders_GetMessageRules parameters: - name: user-id @@ -1231,6 +1252,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property messageRules in users + description: The collection of rules that apply to the user's Inbox folder. operationId: users.mailFolders_UpdateMessageRules parameters: - name: user-id @@ -1271,6 +1293,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property messageRules for users + description: The collection of rules that apply to the user's Inbox folder. operationId: users.mailFolders_DeleteMessageRules parameters: - name: user-id @@ -1310,6 +1333,7 @@ paths: tags: - users.mailFolder summary: Get messages from users + description: The collection of messages in the mailFolder. operationId: users.mailFolders_ListMessages parameters: - name: user-id @@ -1504,6 +1528,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to messages for users + description: The collection of messages in the mailFolder. operationId: users.mailFolders_CreateMessages parameters: - name: user-id @@ -1542,6 +1567,7 @@ paths: tags: - users.mailFolder summary: Get messages from users + description: The collection of messages in the mailFolder. operationId: users.mailFolders_GetMessages parameters: - name: user-id @@ -1677,6 +1703,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property messages in users + description: The collection of messages in the mailFolder. operationId: users.mailFolders_UpdateMessages parameters: - name: user-id @@ -1717,6 +1744,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property messages for users + description: The collection of messages in the mailFolder. operationId: users.mailFolders_DeleteMessages parameters: - name: user-id @@ -1836,6 +1864,7 @@ paths: tags: - users.mailFolder summary: Get attachments from users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.mailFolders.messages_ListAttachments parameters: - name: user-id @@ -1943,6 +1972,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to attachments for users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.mailFolders.messages_CreateAttachments parameters: - name: user-id @@ -1988,6 +2018,7 @@ paths: tags: - users.mailFolder summary: Get attachments from users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.mailFolders.messages_GetAttachments parameters: - name: user-id @@ -2061,6 +2092,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property attachments in users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.mailFolders.messages_UpdateAttachments parameters: - name: user-id @@ -2108,6 +2140,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property attachments for users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.mailFolders.messages_DeleteAttachments parameters: - name: user-id @@ -2154,6 +2187,7 @@ paths: tags: - users.mailFolder summary: Get extensions from users + description: The collection of open extensions defined for the message. Nullable. operationId: users.mailFolders.messages_ListExtensions parameters: - name: user-id @@ -2246,6 +2280,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the message. Nullable. operationId: users.mailFolders.messages_CreateExtensions parameters: - name: user-id @@ -2291,6 +2326,7 @@ paths: tags: - users.mailFolder summary: Get extensions from users + description: The collection of open extensions defined for the message. Nullable. operationId: users.mailFolders.messages_GetExtensions parameters: - name: user-id @@ -2359,6 +2395,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the message. Nullable. operationId: users.mailFolders.messages_UpdateExtensions parameters: - name: user-id @@ -2406,6 +2443,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the message. Nullable. operationId: users.mailFolders.messages_DeleteExtensions parameters: - name: user-id @@ -2452,6 +2490,7 @@ paths: tags: - users.mailFolder summary: Get mentions from users + description: 'A collection of mentions in the message, ordered by the createdDateTime from the newest to the oldest. By default, a GET /messages does not return this property unless you apply $expand on the property.' operationId: users.mailFolders.messages_ListMentions parameters: - name: user-id @@ -2568,6 +2607,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to mentions for users + description: 'A collection of mentions in the message, ordered by the createdDateTime from the newest to the oldest. By default, a GET /messages does not return this property unless you apply $expand on the property.' operationId: users.mailFolders.messages_CreateMentions parameters: - name: user-id @@ -2613,6 +2653,7 @@ paths: tags: - users.mailFolder summary: Get mentions from users + description: 'A collection of mentions in the message, ordered by the createdDateTime from the newest to the oldest. By default, a GET /messages does not return this property unless you apply $expand on the property.' operationId: users.mailFolders.messages_GetMentions parameters: - name: user-id @@ -2689,6 +2730,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property mentions in users + description: 'A collection of mentions in the message, ordered by the createdDateTime from the newest to the oldest. By default, a GET /messages does not return this property unless you apply $expand on the property.' operationId: users.mailFolders.messages_UpdateMentions parameters: - name: user-id @@ -2736,6 +2778,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property mentions for users + description: 'A collection of mentions in the message, ordered by the createdDateTime from the newest to the oldest. By default, a GET /messages does not return this property unless you apply $expand on the property.' operationId: users.mailFolders.messages_DeleteMentions parameters: - name: user-id @@ -2782,6 +2825,7 @@ paths: tags: - users.mailFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_ListMultiValueExtendedProperties parameters: - name: user-id @@ -2877,6 +2921,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -2922,6 +2967,7 @@ paths: tags: - users.mailFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_GetMultiValueExtendedProperties parameters: - name: user-id @@ -2991,6 +3037,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -3038,6 +3085,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -3084,6 +3132,7 @@ paths: tags: - users.mailFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_ListSingleValueExtendedProperties parameters: - name: user-id @@ -3179,6 +3228,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -3224,6 +3274,7 @@ paths: tags: - users.mailFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_GetSingleValueExtendedProperties parameters: - name: user-id @@ -3293,6 +3344,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -3340,6 +3392,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -3386,6 +3439,7 @@ paths: tags: - users.mailFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_ListMultiValueExtendedProperties parameters: - name: user-id @@ -3474,6 +3528,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -3512,6 +3567,7 @@ paths: tags: - users.mailFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_GetMultiValueExtendedProperties parameters: - name: user-id @@ -3574,6 +3630,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -3614,6 +3671,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -3653,6 +3711,7 @@ paths: tags: - users.mailFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_ListSingleValueExtendedProperties parameters: - name: user-id @@ -3741,6 +3800,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -3779,6 +3839,7 @@ paths: tags: - users.mailFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_GetSingleValueExtendedProperties parameters: - name: user-id @@ -3841,6 +3902,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -3881,6 +3943,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -4187,6 +4250,7 @@ paths: tags: - users.message summary: Get messages from users + description: The messages in a mailbox or folder. Read-only. Nullable. operationId: users_ListMessages parameters: - name: user-id @@ -4374,6 +4438,7 @@ paths: tags: - users.message summary: Create new navigation property to messages for users + description: The messages in a mailbox or folder. Read-only. Nullable. operationId: users_CreateMessages parameters: - name: user-id @@ -4405,6 +4470,7 @@ paths: tags: - users.message summary: Get messages from users + description: The messages in a mailbox or folder. Read-only. Nullable. operationId: users_GetMessages parameters: - name: user-id @@ -4528,6 +4594,7 @@ paths: tags: - users.message summary: Update the navigation property messages in users + description: The messages in a mailbox or folder. Read-only. Nullable. operationId: users_UpdateMessages parameters: - name: user-id @@ -4561,6 +4628,7 @@ paths: tags: - users.message summary: Delete navigation property messages for users + description: The messages in a mailbox or folder. Read-only. Nullable. operationId: users_DeleteMessages parameters: - name: user-id @@ -4659,6 +4727,7 @@ paths: tags: - users.message summary: Get attachments from users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.messages_ListAttachments parameters: - name: user-id @@ -4759,6 +4828,7 @@ paths: tags: - users.message summary: Create new navigation property to attachments for users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.messages_CreateAttachments parameters: - name: user-id @@ -4797,6 +4867,7 @@ paths: tags: - users.message summary: Get attachments from users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.messages_GetAttachments parameters: - name: user-id @@ -4863,6 +4934,7 @@ paths: tags: - users.message summary: Update the navigation property attachments in users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.messages_UpdateAttachments parameters: - name: user-id @@ -4903,6 +4975,7 @@ paths: tags: - users.message summary: Delete navigation property attachments for users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.messages_DeleteAttachments parameters: - name: user-id @@ -4942,6 +5015,7 @@ paths: tags: - users.message summary: Get extensions from users + description: The collection of open extensions defined for the message. Nullable. operationId: users.messages_ListExtensions parameters: - name: user-id @@ -5027,6 +5101,7 @@ paths: tags: - users.message summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the message. Nullable. operationId: users.messages_CreateExtensions parameters: - name: user-id @@ -5065,6 +5140,7 @@ paths: tags: - users.message summary: Get extensions from users + description: The collection of open extensions defined for the message. Nullable. operationId: users.messages_GetExtensions parameters: - name: user-id @@ -5126,6 +5202,7 @@ paths: tags: - users.message summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the message. Nullable. operationId: users.messages_UpdateExtensions parameters: - name: user-id @@ -5166,6 +5243,7 @@ paths: tags: - users.message summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the message. Nullable. operationId: users.messages_DeleteExtensions parameters: - name: user-id @@ -5205,6 +5283,7 @@ paths: tags: - users.message summary: Get mentions from users + description: 'A collection of mentions in the message, ordered by the createdDateTime from the newest to the oldest. By default, a GET /messages does not return this property unless you apply $expand on the property.' operationId: users.messages_ListMentions parameters: - name: user-id @@ -5314,6 +5393,7 @@ paths: tags: - users.message summary: Create new navigation property to mentions for users + description: 'A collection of mentions in the message, ordered by the createdDateTime from the newest to the oldest. By default, a GET /messages does not return this property unless you apply $expand on the property.' operationId: users.messages_CreateMentions parameters: - name: user-id @@ -5352,6 +5432,7 @@ paths: tags: - users.message summary: Get mentions from users + description: 'A collection of mentions in the message, ordered by the createdDateTime from the newest to the oldest. By default, a GET /messages does not return this property unless you apply $expand on the property.' operationId: users.messages_GetMentions parameters: - name: user-id @@ -5421,6 +5502,7 @@ paths: tags: - users.message summary: Update the navigation property mentions in users + description: 'A collection of mentions in the message, ordered by the createdDateTime from the newest to the oldest. By default, a GET /messages does not return this property unless you apply $expand on the property.' operationId: users.messages_UpdateMentions parameters: - name: user-id @@ -5461,6 +5543,7 @@ paths: tags: - users.message summary: Delete navigation property mentions for users + description: 'A collection of mentions in the message, ordered by the createdDateTime from the newest to the oldest. By default, a GET /messages does not return this property unless you apply $expand on the property.' operationId: users.messages_DeleteMentions parameters: - name: user-id @@ -5500,6 +5583,7 @@ paths: tags: - users.message summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.messages_ListMultiValueExtendedProperties parameters: - name: user-id @@ -5588,6 +5672,7 @@ paths: tags: - users.message summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.messages_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -5626,6 +5711,7 @@ paths: tags: - users.message summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.messages_GetMultiValueExtendedProperties parameters: - name: user-id @@ -5688,6 +5774,7 @@ paths: tags: - users.message summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.messages_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -5728,6 +5815,7 @@ paths: tags: - users.message summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.messages_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -5767,6 +5855,7 @@ paths: tags: - users.message summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.messages_ListSingleValueExtendedProperties parameters: - name: user-id @@ -5855,6 +5944,7 @@ paths: tags: - users.message summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.messages_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -5893,6 +5983,7 @@ paths: tags: - users.message summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.messages_GetSingleValueExtendedProperties parameters: - name: user-id @@ -5955,6 +6046,7 @@ paths: tags: - users.message summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.messages_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -5995,6 +6087,7 @@ paths: tags: - users.message summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.messages_DeleteSingleValueExtendedProperties parameters: - name: user-id diff --git a/openApiDocs/beta/Notes.yml b/openApiDocs/beta/Notes.yml index 4c862b32e46..16538367937 100644 --- a/openApiDocs/beta/Notes.yml +++ b/openApiDocs/beta/Notes.yml @@ -11,6 +11,7 @@ paths: tags: - groups.onenote summary: Get onenote from groups + description: Read-only. operationId: groups_GetOnenote parameters: - name: group-id @@ -95,6 +96,7 @@ paths: tags: - groups.onenote summary: Update the navigation property onenote in groups + description: Read-only. operationId: groups_UpdateOnenote parameters: - name: group-id @@ -121,6 +123,7 @@ paths: tags: - groups.onenote summary: Delete navigation property onenote for groups + description: Read-only. operationId: groups_DeleteOnenote parameters: - name: group-id @@ -146,6 +149,7 @@ paths: tags: - groups.onenote summary: Get notebooks from groups + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_ListNotebooks parameters: - name: group-id @@ -264,6 +268,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to notebooks for groups + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_CreateNotebooks parameters: - name: group-id @@ -295,6 +300,7 @@ paths: tags: - groups.onenote summary: Get notebooks from groups + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_GetNotebooks parameters: - name: group-id @@ -376,6 +382,7 @@ paths: tags: - groups.onenote summary: Update the navigation property notebooks in groups + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_UpdateNotebooks parameters: - name: group-id @@ -409,6 +416,7 @@ paths: tags: - groups.onenote summary: Delete navigation property notebooks for groups + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_DeleteNotebooks parameters: - name: group-id @@ -441,6 +449,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_ListSectionGroups parameters: - name: group-id @@ -558,6 +567,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_CreateSectionGroups parameters: - name: group-id @@ -596,6 +606,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_GetSectionGroups parameters: - name: group-id @@ -698,6 +709,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_UpdateSectionGroups parameters: - name: group-id @@ -738,6 +750,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_DeleteSectionGroups parameters: - name: group-id @@ -777,6 +790,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -867,6 +881,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -907,6 +922,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -946,6 +962,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -1048,6 +1065,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -1088,6 +1106,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -1127,6 +1146,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -1251,6 +1271,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -1296,6 +1317,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -1409,6 +1431,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -1456,6 +1479,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -1502,6 +1526,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_ListSections parameters: - name: group-id @@ -1627,6 +1652,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_CreateSections parameters: - name: group-id @@ -1672,6 +1698,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_GetSections parameters: - name: group-id @@ -1777,6 +1804,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_UpdateSections parameters: - name: group-id @@ -1824,6 +1852,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_DeleteSections parameters: - name: group-id @@ -1870,6 +1899,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections_ListPages parameters: - name: group-id @@ -2006,6 +2036,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections_CreatePages parameters: - name: group-id @@ -2058,6 +2089,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections_GetPages parameters: - name: group-id @@ -2165,6 +2197,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections_UpdatePages parameters: - name: group-id @@ -2219,6 +2252,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections_DeletePages parameters: - name: group-id @@ -2380,6 +2414,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_GetParentNotebook parameters: - name: group-id @@ -2488,6 +2523,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: group-id @@ -2542,6 +2578,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: group-id @@ -2595,6 +2632,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_GetParentSection parameters: - name: group-id @@ -2710,6 +2748,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_UpdateParentSection parameters: - name: group-id @@ -2764,6 +2803,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_DeleteParentSection parameters: - name: group-id @@ -2817,6 +2857,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_GetParentNotebook parameters: - name: group-id @@ -2916,6 +2957,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_UpdateParentNotebook parameters: - name: group-id @@ -2963,6 +3005,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_DeleteParentNotebook parameters: - name: group-id @@ -3009,6 +3052,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_GetParentSectionGroup parameters: - name: group-id @@ -3122,6 +3166,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -3169,6 +3214,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -3215,6 +3261,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_ListSections parameters: - name: group-id @@ -3333,6 +3380,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_CreateSections parameters: - name: group-id @@ -3371,6 +3419,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_GetSections parameters: - name: group-id @@ -3466,6 +3515,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_UpdateSections parameters: - name: group-id @@ -3506,6 +3556,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_DeleteSections parameters: - name: group-id @@ -3545,6 +3596,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections_ListPages parameters: - name: group-id @@ -3674,6 +3726,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections_CreatePages parameters: - name: group-id @@ -3719,6 +3772,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections_GetPages parameters: - name: group-id @@ -3817,6 +3871,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections_UpdatePages parameters: - name: group-id @@ -3864,6 +3919,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections_DeletePages parameters: - name: group-id @@ -4004,6 +4060,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_GetParentNotebook parameters: - name: group-id @@ -4103,6 +4160,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_UpdateParentNotebook parameters: - name: group-id @@ -4150,6 +4208,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_DeleteParentNotebook parameters: - name: group-id @@ -4196,6 +4255,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_GetParentSection parameters: - name: group-id @@ -4301,6 +4361,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_UpdateParentSection parameters: - name: group-id @@ -4348,6 +4409,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_DeleteParentSection parameters: - name: group-id @@ -4394,6 +4456,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_GetParentNotebook parameters: - name: group-id @@ -4484,6 +4547,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_UpdateParentNotebook parameters: - name: group-id @@ -4524,6 +4588,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_DeleteParentNotebook parameters: - name: group-id @@ -4563,6 +4628,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_GetParentSectionGroup parameters: - name: group-id @@ -4665,6 +4731,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -4705,6 +4772,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -4744,6 +4812,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_GetParentNotebook parameters: - name: group-id @@ -4834,6 +4903,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: group-id @@ -4874,6 +4944,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: group-id @@ -4913,6 +4984,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: group-id @@ -5015,6 +5087,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: group-id @@ -5055,6 +5128,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: group-id @@ -5094,6 +5168,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_ListSectionGroups parameters: - name: group-id @@ -5218,6 +5293,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_CreateSectionGroups parameters: - name: group-id @@ -5263,6 +5339,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_GetSectionGroups parameters: - name: group-id @@ -5376,6 +5453,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: group-id @@ -5423,6 +5501,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: group-id @@ -5469,6 +5548,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_ListSections parameters: - name: group-id @@ -5594,6 +5674,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_CreateSections parameters: - name: group-id @@ -5639,6 +5720,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_GetSections parameters: - name: group-id @@ -5744,6 +5826,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_UpdateSections parameters: - name: group-id @@ -5791,6 +5874,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_DeleteSections parameters: - name: group-id @@ -5837,6 +5921,7 @@ paths: tags: - groups.onenote summary: Get operations from groups + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: groups.onenote_ListOperations parameters: - name: group-id @@ -5936,6 +6021,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to operations for groups + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: groups.onenote_CreateOperations parameters: - name: group-id @@ -5967,6 +6053,7 @@ paths: tags: - groups.onenote summary: Get operations from groups + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: groups.onenote_GetOperations parameters: - name: group-id @@ -6028,6 +6115,7 @@ paths: tags: - groups.onenote summary: Update the navigation property operations in groups + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: groups.onenote_UpdateOperations parameters: - name: group-id @@ -6061,6 +6149,7 @@ paths: tags: - groups.onenote summary: Delete navigation property operations for groups + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: groups.onenote_DeleteOperations parameters: - name: group-id @@ -6093,6 +6182,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_ListPages parameters: - name: group-id @@ -6208,6 +6298,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_CreatePages parameters: - name: group-id @@ -6239,6 +6330,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_GetPages parameters: - name: group-id @@ -6319,6 +6411,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_UpdatePages parameters: - name: group-id @@ -6352,6 +6445,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_DeletePages parameters: - name: group-id @@ -6450,6 +6544,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.pages_GetParentNotebook parameters: - name: group-id @@ -6531,6 +6626,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.pages_UpdateParentNotebook parameters: - name: group-id @@ -6564,6 +6660,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.pages_DeleteParentNotebook parameters: - name: group-id @@ -6596,6 +6693,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -6713,6 +6811,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -6751,6 +6850,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -6853,6 +6953,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -6893,6 +6994,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -6932,6 +7034,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -7022,6 +7125,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -7062,6 +7166,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -7101,6 +7206,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -7203,6 +7309,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -7243,6 +7350,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -7282,6 +7390,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -7406,6 +7515,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -7451,6 +7561,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -7564,6 +7675,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -7611,6 +7723,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -7657,6 +7770,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_ListSections parameters: - name: group-id @@ -7782,6 +7896,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: group-id @@ -7827,6 +7942,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_GetSections parameters: - name: group-id @@ -7932,6 +8048,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: group-id @@ -7979,6 +8096,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: group-id @@ -8025,6 +8143,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_ListPages parameters: - name: group-id @@ -8161,6 +8280,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_CreatePages parameters: - name: group-id @@ -8213,6 +8333,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_GetPages parameters: - name: group-id @@ -8320,6 +8441,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_UpdatePages parameters: - name: group-id @@ -8374,6 +8496,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_DeletePages parameters: - name: group-id @@ -8535,6 +8658,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_GetParentNotebook parameters: - name: group-id @@ -8634,6 +8758,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentNotebook parameters: - name: group-id @@ -8681,6 +8806,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentNotebook parameters: - name: group-id @@ -8727,6 +8853,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_GetParentSectionGroup parameters: - name: group-id @@ -8840,6 +8967,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -8887,6 +9015,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -8933,6 +9062,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_ListSections parameters: - name: group-id @@ -9051,6 +9181,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_CreateSections parameters: - name: group-id @@ -9089,6 +9220,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_GetSections parameters: - name: group-id @@ -9184,6 +9316,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_UpdateSections parameters: - name: group-id @@ -9224,6 +9357,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_DeleteSections parameters: - name: group-id @@ -9263,6 +9397,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections_ListPages parameters: - name: group-id @@ -9392,6 +9527,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections_CreatePages parameters: - name: group-id @@ -9437,6 +9573,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections_GetPages parameters: - name: group-id @@ -9535,6 +9672,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections_UpdatePages parameters: - name: group-id @@ -9582,6 +9720,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections_DeletePages parameters: - name: group-id @@ -9722,6 +9861,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_GetParentNotebook parameters: - name: group-id @@ -9812,6 +9952,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_UpdateParentNotebook parameters: - name: group-id @@ -9852,6 +9993,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_DeleteParentNotebook parameters: - name: group-id @@ -9891,6 +10033,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_GetParentSectionGroup parameters: - name: group-id @@ -9993,6 +10136,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -10033,6 +10177,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -10072,6 +10217,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentNotebook parameters: - name: group-id @@ -10162,6 +10308,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: group-id @@ -10202,6 +10349,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: group-id @@ -10241,6 +10389,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: group-id @@ -10343,6 +10492,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: group-id @@ -10383,6 +10533,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: group-id @@ -10422,6 +10573,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSectionGroups parameters: - name: group-id @@ -10546,6 +10698,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSectionGroups parameters: - name: group-id @@ -10591,6 +10744,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSectionGroups parameters: - name: group-id @@ -10704,6 +10858,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: group-id @@ -10751,6 +10906,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: group-id @@ -10797,6 +10953,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSections parameters: - name: group-id @@ -10922,6 +11079,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSections parameters: - name: group-id @@ -10967,6 +11125,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSections parameters: - name: group-id @@ -11072,6 +11231,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSections parameters: - name: group-id @@ -11119,6 +11279,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSections parameters: - name: group-id @@ -11165,6 +11326,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.pages_GetParentSection parameters: - name: group-id @@ -11250,6 +11412,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.pages_UpdateParentSection parameters: - name: group-id @@ -11283,6 +11446,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.pages_DeleteParentSection parameters: - name: group-id @@ -11315,6 +11479,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection_ListPages parameters: - name: group-id @@ -11437,6 +11602,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection_CreatePages parameters: - name: group-id @@ -11475,6 +11641,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection_GetPages parameters: - name: group-id @@ -11564,6 +11731,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection_UpdatePages parameters: - name: group-id @@ -11604,6 +11772,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection_DeletePages parameters: - name: group-id @@ -11723,6 +11892,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_GetParentNotebook parameters: - name: group-id @@ -11804,6 +11974,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_UpdateParentNotebook parameters: - name: group-id @@ -11837,6 +12008,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_DeleteParentNotebook parameters: - name: group-id @@ -11869,6 +12041,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -11986,6 +12159,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -12024,6 +12198,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -12126,6 +12301,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -12166,6 +12342,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -12205,6 +12382,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -12295,6 +12473,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -12335,6 +12514,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -12374,6 +12554,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -12476,6 +12657,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -12516,6 +12698,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -12555,6 +12738,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -12679,6 +12863,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -12724,6 +12909,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -12837,6 +13023,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -12884,6 +13071,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -12930,6 +13118,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSections parameters: - name: group-id @@ -13055,6 +13244,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSections parameters: - name: group-id @@ -13100,6 +13290,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSections parameters: - name: group-id @@ -13205,6 +13396,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSections parameters: - name: group-id @@ -13252,6 +13444,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSections parameters: - name: group-id @@ -13298,6 +13491,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_ListSections parameters: - name: group-id @@ -13416,6 +13610,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_CreateSections parameters: - name: group-id @@ -13454,6 +13649,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_GetSections parameters: - name: group-id @@ -13549,6 +13745,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_UpdateSections parameters: - name: group-id @@ -13589,6 +13786,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_DeleteSections parameters: - name: group-id @@ -13628,6 +13826,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_GetParentSectionGroup parameters: - name: group-id @@ -13719,6 +13918,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_UpdateParentSectionGroup parameters: - name: group-id @@ -13752,6 +13952,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_DeleteParentSectionGroup parameters: - name: group-id @@ -13784,6 +13985,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_GetParentNotebook parameters: - name: group-id @@ -13865,6 +14067,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_UpdateParentNotebook parameters: - name: group-id @@ -13898,6 +14101,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_DeleteParentNotebook parameters: - name: group-id @@ -13930,6 +14134,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -14047,6 +14252,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -14085,6 +14291,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -14187,6 +14394,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -14227,6 +14435,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -14266,6 +14475,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSections parameters: - name: group-id @@ -14384,6 +14594,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSections parameters: - name: group-id @@ -14422,6 +14633,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSections parameters: - name: group-id @@ -14517,6 +14729,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: group-id @@ -14557,6 +14770,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: group-id @@ -14596,6 +14810,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_GetParentSectionGroup parameters: - name: group-id @@ -14687,6 +14902,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_UpdateParentSectionGroup parameters: - name: group-id @@ -14720,6 +14936,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_DeleteParentSectionGroup parameters: - name: group-id @@ -14752,6 +14969,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_ListSectionGroups parameters: - name: group-id @@ -14869,6 +15087,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_CreateSectionGroups parameters: - name: group-id @@ -14907,6 +15126,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_GetSectionGroups parameters: - name: group-id @@ -15009,6 +15229,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_UpdateSectionGroups parameters: - name: group-id @@ -15049,6 +15270,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_DeleteSectionGroups parameters: - name: group-id @@ -15088,6 +15310,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_ListSections parameters: - name: group-id @@ -15206,6 +15429,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_CreateSections parameters: - name: group-id @@ -15244,6 +15468,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_GetSections parameters: - name: group-id @@ -15339,6 +15564,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_UpdateSections parameters: - name: group-id @@ -15379,6 +15605,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_DeleteSections parameters: - name: group-id @@ -15418,6 +15645,7 @@ paths: tags: - groups.onenote summary: Get resources from groups + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: groups.onenote_ListResources parameters: - name: group-id @@ -15505,6 +15733,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to resources for groups + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: groups.onenote_CreateResources parameters: - name: group-id @@ -15536,6 +15765,7 @@ paths: tags: - groups.onenote summary: Get resources from groups + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: groups.onenote_GetResources parameters: - name: group-id @@ -15593,6 +15823,7 @@ paths: tags: - groups.onenote summary: Update the navigation property resources in groups + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: groups.onenote_UpdateResources parameters: - name: group-id @@ -15626,6 +15857,7 @@ paths: tags: - groups.onenote summary: Delete navigation property resources for groups + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: groups.onenote_DeleteResources parameters: - name: group-id @@ -15724,6 +15956,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_ListSectionGroups parameters: - name: group-id @@ -15834,6 +16067,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_CreateSectionGroups parameters: - name: group-id @@ -15865,6 +16099,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_GetSectionGroups parameters: - name: group-id @@ -15956,6 +16191,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_UpdateSectionGroups parameters: - name: group-id @@ -15989,6 +16225,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_DeleteSectionGroups parameters: - name: group-id @@ -16021,6 +16258,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -16102,6 +16340,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -16135,6 +16374,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -16167,6 +16407,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -16284,6 +16525,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -16322,6 +16564,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -16424,6 +16667,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -16464,6 +16708,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -16503,6 +16748,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_ListSections parameters: - name: group-id @@ -16621,6 +16867,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_CreateSections parameters: - name: group-id @@ -16659,6 +16906,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_GetSections parameters: - name: group-id @@ -16754,6 +17002,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_UpdateSections parameters: - name: group-id @@ -16794,6 +17043,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_DeleteSections parameters: - name: group-id @@ -16833,6 +17083,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook.sections_ListPages parameters: - name: group-id @@ -16962,6 +17213,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook.sections_CreatePages parameters: - name: group-id @@ -17007,6 +17259,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook.sections_GetPages parameters: - name: group-id @@ -17105,6 +17358,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook.sections_UpdatePages parameters: - name: group-id @@ -17152,6 +17406,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook.sections_DeletePages parameters: - name: group-id @@ -17292,6 +17547,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_GetParentNotebook parameters: - name: group-id @@ -17391,6 +17647,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentNotebook parameters: - name: group-id @@ -17438,6 +17695,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentNotebook parameters: - name: group-id @@ -17484,6 +17742,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_GetParentSection parameters: - name: group-id @@ -17589,6 +17848,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentSection parameters: - name: group-id @@ -17636,6 +17896,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentSection parameters: - name: group-id @@ -17682,6 +17943,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_GetParentNotebook parameters: - name: group-id @@ -17772,6 +18034,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_UpdateParentNotebook parameters: - name: group-id @@ -17812,6 +18075,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_DeleteParentNotebook parameters: - name: group-id @@ -17851,6 +18115,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_GetParentSectionGroup parameters: - name: group-id @@ -17953,6 +18218,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -17993,6 +18259,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -18032,6 +18299,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -18123,6 +18391,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -18156,6 +18425,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -18188,6 +18458,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -18305,6 +18576,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -18343,6 +18615,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -18445,6 +18718,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -18485,6 +18759,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -18524,6 +18799,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups_ListSections parameters: - name: group-id @@ -18642,6 +18918,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups_CreateSections parameters: - name: group-id @@ -18680,6 +18957,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups_GetSections parameters: - name: group-id @@ -18775,6 +19053,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups_UpdateSections parameters: - name: group-id @@ -18815,6 +19094,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups_DeleteSections parameters: - name: group-id @@ -18854,6 +19134,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections_ListPages parameters: - name: group-id @@ -18983,6 +19264,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections_CreatePages parameters: - name: group-id @@ -19028,6 +19310,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections_GetPages parameters: - name: group-id @@ -19126,6 +19409,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections_UpdatePages parameters: - name: group-id @@ -19173,6 +19457,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections_DeletePages parameters: - name: group-id @@ -19313,6 +19598,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_GetParentNotebook parameters: - name: group-id @@ -19412,6 +19698,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: group-id @@ -19459,6 +19746,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: group-id @@ -19505,6 +19793,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -19636,6 +19925,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -19688,6 +19978,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -19812,6 +20103,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -19866,6 +20158,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -19919,6 +20212,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_ListSections parameters: - name: group-id @@ -20051,6 +20345,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_CreateSections parameters: - name: group-id @@ -20103,6 +20398,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_GetSections parameters: - name: group-id @@ -20218,6 +20514,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSections parameters: - name: group-id @@ -20272,6 +20569,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSections parameters: - name: group-id @@ -20325,6 +20623,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_GetParentSection parameters: - name: group-id @@ -20430,6 +20729,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_UpdateParentSection parameters: - name: group-id @@ -20477,6 +20777,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_DeleteParentSection parameters: - name: group-id @@ -20523,6 +20824,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_GetParentNotebook parameters: - name: group-id @@ -20613,6 +20915,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_UpdateParentNotebook parameters: - name: group-id @@ -20653,6 +20956,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_DeleteParentNotebook parameters: - name: group-id @@ -20692,6 +20996,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -20816,6 +21121,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -20861,6 +21167,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -20974,6 +21281,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -21021,6 +21329,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -21067,6 +21376,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_ListSections parameters: - name: group-id @@ -21192,6 +21502,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_CreateSections parameters: - name: group-id @@ -21237,6 +21548,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_GetSections parameters: - name: group-id @@ -21342,6 +21654,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_UpdateSections parameters: - name: group-id @@ -21389,6 +21702,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_DeleteSections parameters: - name: group-id @@ -21435,6 +21749,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_GetParentSectionGroup parameters: - name: group-id @@ -21537,6 +21852,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -21577,6 +21893,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -21616,6 +21933,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_ListSections parameters: - name: group-id @@ -21727,6 +22045,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_CreateSections parameters: - name: group-id @@ -21758,6 +22077,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_GetSections parameters: - name: group-id @@ -21843,6 +22163,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_UpdateSections parameters: - name: group-id @@ -21876,6 +22197,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_DeleteSections parameters: - name: group-id @@ -21908,6 +22230,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections_ListPages parameters: - name: group-id @@ -22030,6 +22353,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections_CreatePages parameters: - name: group-id @@ -22068,6 +22392,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections_GetPages parameters: - name: group-id @@ -22157,6 +22482,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections_UpdatePages parameters: - name: group-id @@ -22197,6 +22523,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections_DeletePages parameters: - name: group-id @@ -22316,6 +22643,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sections.pages_GetParentNotebook parameters: - name: group-id @@ -22406,6 +22734,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sections.pages_UpdateParentNotebook parameters: - name: group-id @@ -22446,6 +22775,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sections.pages_DeleteParentNotebook parameters: - name: group-id @@ -22485,6 +22815,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -22609,6 +22940,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -22654,6 +22986,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -22767,6 +23100,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -22814,6 +23148,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -22860,6 +23195,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -22959,6 +23295,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -23006,6 +23343,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -23052,6 +23390,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -23165,6 +23504,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -23212,6 +23552,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -23258,6 +23599,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -23389,6 +23731,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -23441,6 +23784,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -23565,6 +23909,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -23619,6 +23964,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -23672,6 +24018,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_ListSections parameters: - name: group-id @@ -23804,6 +24151,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: group-id @@ -23856,6 +24204,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_GetSections parameters: - name: group-id @@ -23971,6 +24320,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: group-id @@ -24025,6 +24375,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: group-id @@ -24078,6 +24429,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_ListSections parameters: - name: group-id @@ -24203,6 +24555,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_CreateSections parameters: - name: group-id @@ -24248,6 +24601,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_GetSections parameters: - name: group-id @@ -24353,6 +24707,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_UpdateSections parameters: - name: group-id @@ -24400,6 +24755,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_DeleteSections parameters: - name: group-id @@ -24446,6 +24802,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sections.pages_GetParentSection parameters: - name: group-id @@ -24541,6 +24898,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sections.pages_UpdateParentSection parameters: - name: group-id @@ -24581,6 +24939,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sections.pages_DeleteParentSection parameters: - name: group-id @@ -24620,6 +24979,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sections_GetParentNotebook parameters: - name: group-id @@ -24701,6 +25061,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sections_UpdateParentNotebook parameters: - name: group-id @@ -24734,6 +25095,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sections_DeleteParentNotebook parameters: - name: group-id @@ -24766,6 +25128,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -24883,6 +25246,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -24921,6 +25285,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -25023,6 +25388,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -25063,6 +25429,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -25102,6 +25469,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -25192,6 +25560,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -25232,6 +25601,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -25271,6 +25641,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -25373,6 +25744,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -25413,6 +25785,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -25452,6 +25825,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -25576,6 +25950,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -25621,6 +25996,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -25734,6 +26110,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -25781,6 +26158,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -25827,6 +26205,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_ListSections parameters: - name: group-id @@ -25952,6 +26331,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_CreateSections parameters: - name: group-id @@ -25997,6 +26377,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_GetSections parameters: - name: group-id @@ -26102,6 +26483,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_UpdateSections parameters: - name: group-id @@ -26149,6 +26531,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_DeleteSections parameters: - name: group-id @@ -26195,6 +26578,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_ListSections parameters: - name: group-id @@ -26313,6 +26697,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_CreateSections parameters: - name: group-id @@ -26351,6 +26736,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_GetSections parameters: - name: group-id @@ -26446,6 +26832,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_UpdateSections parameters: - name: group-id @@ -26486,6 +26873,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_DeleteSections parameters: - name: group-id @@ -26525,6 +26913,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sections_GetParentSectionGroup parameters: - name: group-id @@ -26616,6 +27005,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -26649,6 +27039,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -26681,6 +27072,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_GetParentNotebook parameters: - name: group-id @@ -26762,6 +27154,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: group-id @@ -26795,6 +27188,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: group-id @@ -26827,6 +27221,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -26944,6 +27339,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -26982,6 +27378,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -27084,6 +27481,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -27124,6 +27522,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -27163,6 +27562,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_ListSections parameters: - name: group-id @@ -27281,6 +27681,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_CreateSections parameters: - name: group-id @@ -27319,6 +27720,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_GetSections parameters: - name: group-id @@ -27414,6 +27816,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: group-id @@ -27454,6 +27857,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: group-id @@ -27493,6 +27897,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: group-id @@ -27584,6 +27989,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: group-id @@ -27617,6 +28023,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: group-id @@ -27649,6 +28056,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_ListSectionGroups parameters: - name: group-id @@ -27766,6 +28174,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_CreateSectionGroups parameters: - name: group-id @@ -27804,6 +28213,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_GetSectionGroups parameters: - name: group-id @@ -27906,6 +28316,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: group-id @@ -27946,6 +28357,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: group-id @@ -27985,6 +28397,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_ListSections parameters: - name: group-id @@ -28103,6 +28516,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_CreateSections parameters: - name: group-id @@ -28141,6 +28555,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_GetSections parameters: - name: group-id @@ -28236,6 +28651,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_UpdateSections parameters: - name: group-id @@ -28276,6 +28692,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_DeleteSections parameters: - name: group-id @@ -28315,6 +28732,7 @@ paths: tags: - sites.onenote summary: Get onenote from sites + description: Calls the OneNote service for notebook related operations. operationId: sites_GetOnenote parameters: - name: site-id @@ -28399,6 +28817,7 @@ paths: tags: - sites.onenote summary: Update the navigation property onenote in sites + description: Calls the OneNote service for notebook related operations. operationId: sites_UpdateOnenote parameters: - name: site-id @@ -28425,6 +28844,7 @@ paths: tags: - sites.onenote summary: Delete navigation property onenote for sites + description: Calls the OneNote service for notebook related operations. operationId: sites_DeleteOnenote parameters: - name: site-id @@ -28450,6 +28870,7 @@ paths: tags: - sites.onenote summary: Get notebooks from sites + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_ListNotebooks parameters: - name: site-id @@ -28568,6 +28989,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to notebooks for sites + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_CreateNotebooks parameters: - name: site-id @@ -28599,6 +29021,7 @@ paths: tags: - sites.onenote summary: Get notebooks from sites + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_GetNotebooks parameters: - name: site-id @@ -28680,6 +29103,7 @@ paths: tags: - sites.onenote summary: Update the navigation property notebooks in sites + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_UpdateNotebooks parameters: - name: site-id @@ -28713,6 +29137,7 @@ paths: tags: - sites.onenote summary: Delete navigation property notebooks for sites + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_DeleteNotebooks parameters: - name: site-id @@ -28745,6 +29170,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_ListSectionGroups parameters: - name: site-id @@ -28862,6 +29288,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_CreateSectionGroups parameters: - name: site-id @@ -28900,6 +29327,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_GetSectionGroups parameters: - name: site-id @@ -29002,6 +29430,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_UpdateSectionGroups parameters: - name: site-id @@ -29042,6 +29471,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_DeleteSectionGroups parameters: - name: site-id @@ -29081,6 +29511,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -29171,6 +29602,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -29211,6 +29643,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -29250,6 +29683,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -29352,6 +29786,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -29392,6 +29827,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -29431,6 +29867,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -29555,6 +29992,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -29600,6 +30038,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -29713,6 +30152,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -29760,6 +30200,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -29806,6 +30247,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_ListSections parameters: - name: site-id @@ -29931,6 +30373,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_CreateSections parameters: - name: site-id @@ -29976,6 +30419,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_GetSections parameters: - name: site-id @@ -30081,6 +30525,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_UpdateSections parameters: - name: site-id @@ -30128,6 +30573,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_DeleteSections parameters: - name: site-id @@ -30174,6 +30620,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups.sections_ListPages parameters: - name: site-id @@ -30310,6 +30757,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups.sections_CreatePages parameters: - name: site-id @@ -30362,6 +30810,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups.sections_GetPages parameters: - name: site-id @@ -30469,6 +30918,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups.sections_UpdatePages parameters: - name: site-id @@ -30523,6 +30973,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups.sections_DeletePages parameters: - name: site-id @@ -30684,6 +31135,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_GetParentNotebook parameters: - name: site-id @@ -30792,6 +31244,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: site-id @@ -30846,6 +31299,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: site-id @@ -30899,6 +31353,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_GetParentSection parameters: - name: site-id @@ -31014,6 +31469,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_UpdateParentSection parameters: - name: site-id @@ -31068,6 +31524,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_DeleteParentSection parameters: - name: site-id @@ -31121,6 +31578,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_GetParentNotebook parameters: - name: site-id @@ -31220,6 +31678,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_UpdateParentNotebook parameters: - name: site-id @@ -31267,6 +31726,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_DeleteParentNotebook parameters: - name: site-id @@ -31313,6 +31773,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_GetParentSectionGroup parameters: - name: site-id @@ -31426,6 +31887,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -31473,6 +31935,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -31519,6 +31982,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_ListSections parameters: - name: site-id @@ -31637,6 +32101,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_CreateSections parameters: - name: site-id @@ -31675,6 +32140,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_GetSections parameters: - name: site-id @@ -31770,6 +32236,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_UpdateSections parameters: - name: site-id @@ -31810,6 +32277,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_DeleteSections parameters: - name: site-id @@ -31849,6 +32317,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections_ListPages parameters: - name: site-id @@ -31978,6 +32447,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections_CreatePages parameters: - name: site-id @@ -32023,6 +32493,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections_GetPages parameters: - name: site-id @@ -32121,6 +32592,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections_UpdatePages parameters: - name: site-id @@ -32168,6 +32640,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections_DeletePages parameters: - name: site-id @@ -32308,6 +32781,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_GetParentNotebook parameters: - name: site-id @@ -32407,6 +32881,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_UpdateParentNotebook parameters: - name: site-id @@ -32454,6 +32929,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_DeleteParentNotebook parameters: - name: site-id @@ -32500,6 +32976,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_GetParentSection parameters: - name: site-id @@ -32605,6 +33082,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_UpdateParentSection parameters: - name: site-id @@ -32652,6 +33130,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_DeleteParentSection parameters: - name: site-id @@ -32698,6 +33177,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_GetParentNotebook parameters: - name: site-id @@ -32788,6 +33268,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_UpdateParentNotebook parameters: - name: site-id @@ -32828,6 +33309,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_DeleteParentNotebook parameters: - name: site-id @@ -32867,6 +33349,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_GetParentSectionGroup parameters: - name: site-id @@ -32969,6 +33452,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -33009,6 +33493,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -33048,6 +33533,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_GetParentNotebook parameters: - name: site-id @@ -33138,6 +33624,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: site-id @@ -33178,6 +33665,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: site-id @@ -33217,6 +33705,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: site-id @@ -33319,6 +33808,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: site-id @@ -33359,6 +33849,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: site-id @@ -33398,6 +33889,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_ListSectionGroups parameters: - name: site-id @@ -33522,6 +34014,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_CreateSectionGroups parameters: - name: site-id @@ -33567,6 +34060,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_GetSectionGroups parameters: - name: site-id @@ -33680,6 +34174,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: site-id @@ -33727,6 +34222,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: site-id @@ -33773,6 +34269,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_ListSections parameters: - name: site-id @@ -33898,6 +34395,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_CreateSections parameters: - name: site-id @@ -33943,6 +34441,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_GetSections parameters: - name: site-id @@ -34048,6 +34547,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_UpdateSections parameters: - name: site-id @@ -34095,6 +34595,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_DeleteSections parameters: - name: site-id @@ -34141,6 +34642,7 @@ paths: tags: - sites.onenote summary: Get operations from sites + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: sites.onenote_ListOperations parameters: - name: site-id @@ -34240,6 +34742,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to operations for sites + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: sites.onenote_CreateOperations parameters: - name: site-id @@ -34271,6 +34774,7 @@ paths: tags: - sites.onenote summary: Get operations from sites + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: sites.onenote_GetOperations parameters: - name: site-id @@ -34332,6 +34836,7 @@ paths: tags: - sites.onenote summary: Update the navigation property operations in sites + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: sites.onenote_UpdateOperations parameters: - name: site-id @@ -34365,6 +34870,7 @@ paths: tags: - sites.onenote summary: Delete navigation property operations for sites + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: sites.onenote_DeleteOperations parameters: - name: site-id @@ -34397,6 +34903,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_ListPages parameters: - name: site-id @@ -34512,6 +35019,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_CreatePages parameters: - name: site-id @@ -34543,6 +35051,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_GetPages parameters: - name: site-id @@ -34623,6 +35132,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_UpdatePages parameters: - name: site-id @@ -34656,6 +35166,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_DeletePages parameters: - name: site-id @@ -34754,6 +35265,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.pages_GetParentNotebook parameters: - name: site-id @@ -34835,6 +35347,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.pages_UpdateParentNotebook parameters: - name: site-id @@ -34868,6 +35381,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.pages_DeleteParentNotebook parameters: - name: site-id @@ -34900,6 +35414,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -35017,6 +35532,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -35055,6 +35571,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -35157,6 +35674,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -35197,6 +35715,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -35236,6 +35755,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -35326,6 +35846,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -35366,6 +35887,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -35405,6 +35927,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -35507,6 +36030,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -35547,6 +36071,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -35586,6 +36111,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -35710,6 +36236,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -35755,6 +36282,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -35868,6 +36396,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -35915,6 +36444,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -35961,6 +36491,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_ListSections parameters: - name: site-id @@ -36086,6 +36617,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: site-id @@ -36131,6 +36663,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_GetSections parameters: - name: site-id @@ -36236,6 +36769,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: site-id @@ -36283,6 +36817,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: site-id @@ -36329,6 +36864,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_ListPages parameters: - name: site-id @@ -36465,6 +37001,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_CreatePages parameters: - name: site-id @@ -36517,6 +37054,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_GetPages parameters: - name: site-id @@ -36624,6 +37162,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_UpdatePages parameters: - name: site-id @@ -36678,6 +37217,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_DeletePages parameters: - name: site-id @@ -36839,6 +37379,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_GetParentNotebook parameters: - name: site-id @@ -36938,6 +37479,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentNotebook parameters: - name: site-id @@ -36985,6 +37527,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentNotebook parameters: - name: site-id @@ -37031,6 +37574,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_GetParentSectionGroup parameters: - name: site-id @@ -37144,6 +37688,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -37191,6 +37736,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -37237,6 +37783,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_ListSections parameters: - name: site-id @@ -37355,6 +37902,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_CreateSections parameters: - name: site-id @@ -37393,6 +37941,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_GetSections parameters: - name: site-id @@ -37488,6 +38037,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_UpdateSections parameters: - name: site-id @@ -37528,6 +38078,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_DeleteSections parameters: - name: site-id @@ -37567,6 +38118,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections_ListPages parameters: - name: site-id @@ -37696,6 +38248,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections_CreatePages parameters: - name: site-id @@ -37741,6 +38294,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections_GetPages parameters: - name: site-id @@ -37839,6 +38393,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections_UpdatePages parameters: - name: site-id @@ -37886,6 +38441,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections_DeletePages parameters: - name: site-id @@ -38026,6 +38582,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_GetParentNotebook parameters: - name: site-id @@ -38116,6 +38673,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_UpdateParentNotebook parameters: - name: site-id @@ -38156,6 +38714,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_DeleteParentNotebook parameters: - name: site-id @@ -38195,6 +38754,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_GetParentSectionGroup parameters: - name: site-id @@ -38297,6 +38857,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -38337,6 +38898,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -38376,6 +38938,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentNotebook parameters: - name: site-id @@ -38466,6 +39029,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: site-id @@ -38506,6 +39070,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: site-id @@ -38545,6 +39110,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: site-id @@ -38647,6 +39213,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: site-id @@ -38687,6 +39254,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: site-id @@ -38726,6 +39294,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSectionGroups parameters: - name: site-id @@ -38850,6 +39419,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSectionGroups parameters: - name: site-id @@ -38895,6 +39465,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSectionGroups parameters: - name: site-id @@ -39008,6 +39579,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: site-id @@ -39055,6 +39627,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: site-id @@ -39101,6 +39674,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSections parameters: - name: site-id @@ -39226,6 +39800,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSections parameters: - name: site-id @@ -39271,6 +39846,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSections parameters: - name: site-id @@ -39376,6 +39952,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSections parameters: - name: site-id @@ -39423,6 +40000,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSections parameters: - name: site-id @@ -39469,6 +40047,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.pages_GetParentSection parameters: - name: site-id @@ -39554,6 +40133,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.pages_UpdateParentSection parameters: - name: site-id @@ -39587,6 +40167,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.pages_DeleteParentSection parameters: - name: site-id @@ -39619,6 +40200,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection_ListPages parameters: - name: site-id @@ -39741,6 +40323,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection_CreatePages parameters: - name: site-id @@ -39779,6 +40362,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection_GetPages parameters: - name: site-id @@ -39868,6 +40452,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection_UpdatePages parameters: - name: site-id @@ -39908,6 +40493,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection_DeletePages parameters: - name: site-id @@ -40027,6 +40613,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_GetParentNotebook parameters: - name: site-id @@ -40108,6 +40695,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_UpdateParentNotebook parameters: - name: site-id @@ -40141,6 +40729,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_DeleteParentNotebook parameters: - name: site-id @@ -40173,6 +40762,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -40290,6 +40880,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -40328,6 +40919,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -40430,6 +41022,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -40470,6 +41063,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -40509,6 +41103,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -40599,6 +41194,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -40639,6 +41235,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -40678,6 +41275,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -40780,6 +41378,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -40820,6 +41419,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -40859,6 +41459,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -40983,6 +41584,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -41028,6 +41630,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -41141,6 +41744,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -41188,6 +41792,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -41234,6 +41839,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSections parameters: - name: site-id @@ -41359,6 +41965,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSections parameters: - name: site-id @@ -41404,6 +42011,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSections parameters: - name: site-id @@ -41509,6 +42117,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSections parameters: - name: site-id @@ -41556,6 +42165,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSections parameters: - name: site-id @@ -41602,6 +42212,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_ListSections parameters: - name: site-id @@ -41720,6 +42331,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_CreateSections parameters: - name: site-id @@ -41758,6 +42370,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_GetSections parameters: - name: site-id @@ -41853,6 +42466,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_UpdateSections parameters: - name: site-id @@ -41893,6 +42507,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_DeleteSections parameters: - name: site-id @@ -41932,6 +42547,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_GetParentSectionGroup parameters: - name: site-id @@ -42023,6 +42639,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_UpdateParentSectionGroup parameters: - name: site-id @@ -42056,6 +42673,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_DeleteParentSectionGroup parameters: - name: site-id @@ -42088,6 +42706,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_GetParentNotebook parameters: - name: site-id @@ -42169,6 +42788,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_UpdateParentNotebook parameters: - name: site-id @@ -42202,6 +42822,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_DeleteParentNotebook parameters: - name: site-id @@ -42234,6 +42855,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -42351,6 +42973,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -42389,6 +43012,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -42491,6 +43115,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -42531,6 +43156,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -42570,6 +43196,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSections parameters: - name: site-id @@ -42688,6 +43315,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSections parameters: - name: site-id @@ -42726,6 +43354,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSections parameters: - name: site-id @@ -42821,6 +43450,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: site-id @@ -42861,6 +43491,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: site-id @@ -42900,6 +43531,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_GetParentSectionGroup parameters: - name: site-id @@ -42991,6 +43623,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_UpdateParentSectionGroup parameters: - name: site-id @@ -43024,6 +43657,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_DeleteParentSectionGroup parameters: - name: site-id @@ -43056,6 +43690,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_ListSectionGroups parameters: - name: site-id @@ -43173,6 +43808,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_CreateSectionGroups parameters: - name: site-id @@ -43211,6 +43847,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_GetSectionGroups parameters: - name: site-id @@ -43313,6 +43950,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_UpdateSectionGroups parameters: - name: site-id @@ -43353,6 +43991,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_DeleteSectionGroups parameters: - name: site-id @@ -43392,6 +44031,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_ListSections parameters: - name: site-id @@ -43510,6 +44150,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_CreateSections parameters: - name: site-id @@ -43548,6 +44189,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_GetSections parameters: - name: site-id @@ -43643,6 +44285,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_UpdateSections parameters: - name: site-id @@ -43683,6 +44326,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_DeleteSections parameters: - name: site-id @@ -43722,6 +44366,7 @@ paths: tags: - sites.onenote summary: Get resources from sites + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: sites.onenote_ListResources parameters: - name: site-id @@ -43809,6 +44454,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to resources for sites + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: sites.onenote_CreateResources parameters: - name: site-id @@ -43840,6 +44486,7 @@ paths: tags: - sites.onenote summary: Get resources from sites + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: sites.onenote_GetResources parameters: - name: site-id @@ -43897,6 +44544,7 @@ paths: tags: - sites.onenote summary: Update the navigation property resources in sites + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: sites.onenote_UpdateResources parameters: - name: site-id @@ -43930,6 +44578,7 @@ paths: tags: - sites.onenote summary: Delete navigation property resources for sites + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: sites.onenote_DeleteResources parameters: - name: site-id @@ -44028,6 +44677,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_ListSectionGroups parameters: - name: site-id @@ -44138,6 +44788,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_CreateSectionGroups parameters: - name: site-id @@ -44169,6 +44820,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_GetSectionGroups parameters: - name: site-id @@ -44260,6 +44912,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_UpdateSectionGroups parameters: - name: site-id @@ -44293,6 +44946,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_DeleteSectionGroups parameters: - name: site-id @@ -44325,6 +44979,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -44406,6 +45061,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -44439,6 +45095,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -44471,6 +45128,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -44588,6 +45246,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -44626,6 +45285,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -44728,6 +45388,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -44768,6 +45429,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -44807,6 +45469,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_ListSections parameters: - name: site-id @@ -44925,6 +45588,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_CreateSections parameters: - name: site-id @@ -44963,6 +45627,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_GetSections parameters: - name: site-id @@ -45058,6 +45723,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_UpdateSections parameters: - name: site-id @@ -45098,6 +45764,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_DeleteSections parameters: - name: site-id @@ -45137,6 +45804,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook.sections_ListPages parameters: - name: site-id @@ -45266,6 +45934,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook.sections_CreatePages parameters: - name: site-id @@ -45311,6 +45980,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook.sections_GetPages parameters: - name: site-id @@ -45409,6 +46079,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook.sections_UpdatePages parameters: - name: site-id @@ -45456,6 +46127,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook.sections_DeletePages parameters: - name: site-id @@ -45596,6 +46268,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_GetParentNotebook parameters: - name: site-id @@ -45695,6 +46368,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentNotebook parameters: - name: site-id @@ -45742,6 +46416,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentNotebook parameters: - name: site-id @@ -45788,6 +46463,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_GetParentSection parameters: - name: site-id @@ -45893,6 +46569,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentSection parameters: - name: site-id @@ -45940,6 +46617,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentSection parameters: - name: site-id @@ -45986,6 +46664,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_GetParentNotebook parameters: - name: site-id @@ -46076,6 +46755,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_UpdateParentNotebook parameters: - name: site-id @@ -46116,6 +46796,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_DeleteParentNotebook parameters: - name: site-id @@ -46155,6 +46836,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_GetParentSectionGroup parameters: - name: site-id @@ -46257,6 +46939,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -46297,6 +46980,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -46336,6 +47020,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -46427,6 +47112,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -46460,6 +47146,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -46492,6 +47179,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -46609,6 +47297,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -46647,6 +47336,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -46749,6 +47439,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -46789,6 +47480,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -46828,6 +47520,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sectionGroups_ListSections parameters: - name: site-id @@ -46946,6 +47639,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sectionGroups_CreateSections parameters: - name: site-id @@ -46984,6 +47678,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sectionGroups_GetSections parameters: - name: site-id @@ -47079,6 +47774,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sectionGroups_UpdateSections parameters: - name: site-id @@ -47119,6 +47815,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sectionGroups_DeleteSections parameters: - name: site-id @@ -47158,6 +47855,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections_ListPages parameters: - name: site-id @@ -47287,6 +47985,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections_CreatePages parameters: - name: site-id @@ -47332,6 +48031,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections_GetPages parameters: - name: site-id @@ -47430,6 +48130,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections_UpdatePages parameters: - name: site-id @@ -47477,6 +48178,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections_DeletePages parameters: - name: site-id @@ -47617,6 +48319,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_GetParentNotebook parameters: - name: site-id @@ -47716,6 +48419,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: site-id @@ -47763,6 +48467,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: site-id @@ -47809,6 +48514,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -47940,6 +48646,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -47992,6 +48699,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -48116,6 +48824,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -48170,6 +48879,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -48223,6 +48933,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_ListSections parameters: - name: site-id @@ -48355,6 +49066,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_CreateSections parameters: - name: site-id @@ -48407,6 +49119,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_GetSections parameters: - name: site-id @@ -48522,6 +49235,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSections parameters: - name: site-id @@ -48576,6 +49290,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSections parameters: - name: site-id @@ -48629,6 +49344,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_GetParentSection parameters: - name: site-id @@ -48734,6 +49450,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_UpdateParentSection parameters: - name: site-id @@ -48781,6 +49498,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_DeleteParentSection parameters: - name: site-id @@ -48827,6 +49545,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_GetParentNotebook parameters: - name: site-id @@ -48917,6 +49636,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_UpdateParentNotebook parameters: - name: site-id @@ -48957,6 +49677,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_DeleteParentNotebook parameters: - name: site-id @@ -48996,6 +49717,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -49120,6 +49842,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -49165,6 +49888,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -49278,6 +50002,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -49325,6 +50050,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -49371,6 +50097,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_ListSections parameters: - name: site-id @@ -49496,6 +50223,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_CreateSections parameters: - name: site-id @@ -49541,6 +50269,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_GetSections parameters: - name: site-id @@ -49646,6 +50375,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_UpdateSections parameters: - name: site-id @@ -49693,6 +50423,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_DeleteSections parameters: - name: site-id @@ -49739,6 +50470,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_GetParentSectionGroup parameters: - name: site-id @@ -49841,6 +50573,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -49881,6 +50614,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -49920,6 +50654,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_ListSections parameters: - name: site-id @@ -50031,6 +50766,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_CreateSections parameters: - name: site-id @@ -50062,6 +50798,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_GetSections parameters: - name: site-id @@ -50147,6 +50884,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_UpdateSections parameters: - name: site-id @@ -50180,6 +50918,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_DeleteSections parameters: - name: site-id @@ -50212,6 +50951,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sections_ListPages parameters: - name: site-id @@ -50334,6 +51074,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sections_CreatePages parameters: - name: site-id @@ -50372,6 +51113,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sections_GetPages parameters: - name: site-id @@ -50461,6 +51203,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sections_UpdatePages parameters: - name: site-id @@ -50501,6 +51244,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sections_DeletePages parameters: - name: site-id @@ -50620,6 +51364,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sections.pages_GetParentNotebook parameters: - name: site-id @@ -50710,6 +51455,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sections.pages_UpdateParentNotebook parameters: - name: site-id @@ -50750,6 +51496,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sections.pages_DeleteParentNotebook parameters: - name: site-id @@ -50789,6 +51536,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -50913,6 +51661,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -50958,6 +51707,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -51071,6 +51821,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -51118,6 +51869,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -51164,6 +51916,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -51263,6 +52016,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -51310,6 +52064,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -51356,6 +52111,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -51469,6 +52225,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -51516,6 +52273,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -51562,6 +52320,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -51693,6 +52452,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -51745,6 +52505,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -51869,6 +52630,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -51923,6 +52685,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -51976,6 +52739,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_ListSections parameters: - name: site-id @@ -52108,6 +52872,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: site-id @@ -52160,6 +52925,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_GetSections parameters: - name: site-id @@ -52275,6 +53041,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: site-id @@ -52329,6 +53096,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: site-id @@ -52382,6 +53150,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_ListSections parameters: - name: site-id @@ -52507,6 +53276,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_CreateSections parameters: - name: site-id @@ -52552,6 +53322,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_GetSections parameters: - name: site-id @@ -52657,6 +53428,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_UpdateSections parameters: - name: site-id @@ -52704,6 +53476,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_DeleteSections parameters: - name: site-id @@ -52750,6 +53523,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sections.pages_GetParentSection parameters: - name: site-id @@ -52845,6 +53619,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sections.pages_UpdateParentSection parameters: - name: site-id @@ -52885,6 +53660,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sections.pages_DeleteParentSection parameters: - name: site-id @@ -52924,6 +53700,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sections_GetParentNotebook parameters: - name: site-id @@ -53005,6 +53782,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sections_UpdateParentNotebook parameters: - name: site-id @@ -53038,6 +53816,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sections_DeleteParentNotebook parameters: - name: site-id @@ -53070,6 +53849,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -53187,6 +53967,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -53225,6 +54006,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -53327,6 +54109,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -53367,6 +54150,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -53406,6 +54190,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -53496,6 +54281,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -53536,6 +54322,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -53575,6 +54362,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -53677,6 +54465,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -53717,6 +54506,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -53756,6 +54546,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -53880,6 +54671,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -53925,6 +54717,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -54038,6 +54831,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -54085,6 +54879,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -54131,6 +54926,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_ListSections parameters: - name: site-id @@ -54256,6 +55052,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_CreateSections parameters: - name: site-id @@ -54301,6 +55098,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_GetSections parameters: - name: site-id @@ -54406,6 +55204,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_UpdateSections parameters: - name: site-id @@ -54453,6 +55252,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_DeleteSections parameters: - name: site-id @@ -54499,6 +55299,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_ListSections parameters: - name: site-id @@ -54617,6 +55418,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_CreateSections parameters: - name: site-id @@ -54655,6 +55457,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_GetSections parameters: - name: site-id @@ -54750,6 +55553,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_UpdateSections parameters: - name: site-id @@ -54790,6 +55594,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_DeleteSections parameters: - name: site-id @@ -54829,6 +55634,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sections_GetParentSectionGroup parameters: - name: site-id @@ -54920,6 +55726,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -54953,6 +55760,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -54985,6 +55793,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_GetParentNotebook parameters: - name: site-id @@ -55066,6 +55875,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: site-id @@ -55099,6 +55909,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: site-id @@ -55131,6 +55942,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -55248,6 +56060,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -55286,6 +56099,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -55388,6 +56202,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -55428,6 +56243,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -55467,6 +56283,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_ListSections parameters: - name: site-id @@ -55585,6 +56402,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_CreateSections parameters: - name: site-id @@ -55623,6 +56441,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_GetSections parameters: - name: site-id @@ -55718,6 +56537,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: site-id @@ -55758,6 +56578,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: site-id @@ -55797,6 +56618,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: site-id @@ -55888,6 +56710,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: site-id @@ -55921,6 +56744,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: site-id @@ -55953,6 +56777,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_ListSectionGroups parameters: - name: site-id @@ -56070,6 +56895,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_CreateSectionGroups parameters: - name: site-id @@ -56108,6 +56934,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_GetSectionGroups parameters: - name: site-id @@ -56210,6 +57037,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: site-id @@ -56250,6 +57078,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: site-id @@ -56289,6 +57118,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_ListSections parameters: - name: site-id @@ -56407,6 +57237,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_CreateSections parameters: - name: site-id @@ -56445,6 +57276,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_GetSections parameters: - name: site-id @@ -56540,6 +57372,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_UpdateSections parameters: - name: site-id @@ -56580,6 +57413,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_DeleteSections parameters: - name: site-id @@ -56619,6 +57453,7 @@ paths: tags: - users.onenote summary: Get onenote from users + description: Read-only. operationId: users_GetOnenote parameters: - name: user-id @@ -56703,6 +57538,7 @@ paths: tags: - users.onenote summary: Update the navigation property onenote in users + description: Read-only. operationId: users_UpdateOnenote parameters: - name: user-id @@ -56729,6 +57565,7 @@ paths: tags: - users.onenote summary: Delete navigation property onenote for users + description: Read-only. operationId: users_DeleteOnenote parameters: - name: user-id @@ -56754,6 +57591,7 @@ paths: tags: - users.onenote summary: Get notebooks from users + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_ListNotebooks parameters: - name: user-id @@ -56872,6 +57710,7 @@ paths: tags: - users.onenote summary: Create new navigation property to notebooks for users + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_CreateNotebooks parameters: - name: user-id @@ -56903,6 +57742,7 @@ paths: tags: - users.onenote summary: Get notebooks from users + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_GetNotebooks parameters: - name: user-id @@ -56984,6 +57824,7 @@ paths: tags: - users.onenote summary: Update the navigation property notebooks in users + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_UpdateNotebooks parameters: - name: user-id @@ -57017,6 +57858,7 @@ paths: tags: - users.onenote summary: Delete navigation property notebooks for users + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_DeleteNotebooks parameters: - name: user-id @@ -57049,6 +57891,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_ListSectionGroups parameters: - name: user-id @@ -57166,6 +58009,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_CreateSectionGroups parameters: - name: user-id @@ -57204,6 +58048,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_GetSectionGroups parameters: - name: user-id @@ -57306,6 +58151,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_UpdateSectionGroups parameters: - name: user-id @@ -57346,6 +58192,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_DeleteSectionGroups parameters: - name: user-id @@ -57385,6 +58232,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -57475,6 +58323,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -57515,6 +58364,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -57554,6 +58404,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -57656,6 +58507,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -57696,6 +58548,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -57735,6 +58588,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -57859,6 +58713,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -57904,6 +58759,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -58017,6 +58873,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -58064,6 +58921,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -58110,6 +58968,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_ListSections parameters: - name: user-id @@ -58235,6 +59094,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_CreateSections parameters: - name: user-id @@ -58280,6 +59140,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_GetSections parameters: - name: user-id @@ -58385,6 +59246,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_UpdateSections parameters: - name: user-id @@ -58432,6 +59294,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_DeleteSections parameters: - name: user-id @@ -58478,6 +59341,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups.sections_ListPages parameters: - name: user-id @@ -58614,6 +59478,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups.sections_CreatePages parameters: - name: user-id @@ -58666,6 +59531,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups.sections_GetPages parameters: - name: user-id @@ -58773,6 +59639,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups.sections_UpdatePages parameters: - name: user-id @@ -58827,6 +59694,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups.sections_DeletePages parameters: - name: user-id @@ -58988,6 +59856,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_GetParentNotebook parameters: - name: user-id @@ -59096,6 +59965,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: user-id @@ -59150,6 +60020,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: user-id @@ -59203,6 +60074,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_GetParentSection parameters: - name: user-id @@ -59318,6 +60190,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_UpdateParentSection parameters: - name: user-id @@ -59372,6 +60245,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_DeleteParentSection parameters: - name: user-id @@ -59425,6 +60299,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_GetParentNotebook parameters: - name: user-id @@ -59524,6 +60399,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_UpdateParentNotebook parameters: - name: user-id @@ -59571,6 +60447,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_DeleteParentNotebook parameters: - name: user-id @@ -59617,6 +60494,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_GetParentSectionGroup parameters: - name: user-id @@ -59730,6 +60608,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -59777,6 +60656,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -59823,6 +60703,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_ListSections parameters: - name: user-id @@ -59941,6 +60822,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_CreateSections parameters: - name: user-id @@ -59979,6 +60861,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_GetSections parameters: - name: user-id @@ -60074,6 +60957,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_UpdateSections parameters: - name: user-id @@ -60114,6 +60998,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_DeleteSections parameters: - name: user-id @@ -60153,6 +61038,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections_ListPages parameters: - name: user-id @@ -60282,6 +61168,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections_CreatePages parameters: - name: user-id @@ -60327,6 +61214,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections_GetPages parameters: - name: user-id @@ -60425,6 +61313,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections_UpdatePages parameters: - name: user-id @@ -60472,6 +61361,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections_DeletePages parameters: - name: user-id @@ -60612,6 +61502,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_GetParentNotebook parameters: - name: user-id @@ -60711,6 +61602,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_UpdateParentNotebook parameters: - name: user-id @@ -60758,6 +61650,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_DeleteParentNotebook parameters: - name: user-id @@ -60804,6 +61697,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_GetParentSection parameters: - name: user-id @@ -60909,6 +61803,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_UpdateParentSection parameters: - name: user-id @@ -60956,6 +61851,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_DeleteParentSection parameters: - name: user-id @@ -61002,6 +61898,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sections_GetParentNotebook parameters: - name: user-id @@ -61092,6 +61989,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sections_UpdateParentNotebook parameters: - name: user-id @@ -61132,6 +62030,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sections_DeleteParentNotebook parameters: - name: user-id @@ -61171,6 +62070,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sections_GetParentSectionGroup parameters: - name: user-id @@ -61273,6 +62173,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -61313,6 +62214,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -61352,6 +62254,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_GetParentNotebook parameters: - name: user-id @@ -61442,6 +62345,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: user-id @@ -61482,6 +62386,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: user-id @@ -61521,6 +62426,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: user-id @@ -61623,6 +62529,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: user-id @@ -61663,6 +62570,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: user-id @@ -61702,6 +62610,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_ListSectionGroups parameters: - name: user-id @@ -61826,6 +62735,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_CreateSectionGroups parameters: - name: user-id @@ -61871,6 +62781,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_GetSectionGroups parameters: - name: user-id @@ -61984,6 +62895,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: user-id @@ -62031,6 +62943,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: user-id @@ -62077,6 +62990,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_ListSections parameters: - name: user-id @@ -62202,6 +63116,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_CreateSections parameters: - name: user-id @@ -62247,6 +63162,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_GetSections parameters: - name: user-id @@ -62352,6 +63268,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_UpdateSections parameters: - name: user-id @@ -62399,6 +63316,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_DeleteSections parameters: - name: user-id @@ -62445,6 +63363,7 @@ paths: tags: - users.onenote summary: Get operations from users + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: users.onenote_ListOperations parameters: - name: user-id @@ -62544,6 +63463,7 @@ paths: tags: - users.onenote summary: Create new navigation property to operations for users + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: users.onenote_CreateOperations parameters: - name: user-id @@ -62575,6 +63495,7 @@ paths: tags: - users.onenote summary: Get operations from users + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: users.onenote_GetOperations parameters: - name: user-id @@ -62636,6 +63557,7 @@ paths: tags: - users.onenote summary: Update the navigation property operations in users + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: users.onenote_UpdateOperations parameters: - name: user-id @@ -62669,6 +63591,7 @@ paths: tags: - users.onenote summary: Delete navigation property operations for users + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: users.onenote_DeleteOperations parameters: - name: user-id @@ -62701,6 +63624,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_ListPages parameters: - name: user-id @@ -62816,6 +63740,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_CreatePages parameters: - name: user-id @@ -62847,6 +63772,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_GetPages parameters: - name: user-id @@ -62927,6 +63853,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_UpdatePages parameters: - name: user-id @@ -62960,6 +63887,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_DeletePages parameters: - name: user-id @@ -63058,6 +63986,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.pages_GetParentNotebook parameters: - name: user-id @@ -63139,6 +64068,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.pages_UpdateParentNotebook parameters: - name: user-id @@ -63172,6 +64102,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.pages_DeleteParentNotebook parameters: - name: user-id @@ -63204,6 +64135,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -63321,6 +64253,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -63359,6 +64292,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -63461,6 +64395,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -63501,6 +64436,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -63540,6 +64476,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -63630,6 +64567,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -63670,6 +64608,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -63709,6 +64648,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -63811,6 +64751,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -63851,6 +64792,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -63890,6 +64832,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -64014,6 +64957,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -64059,6 +65003,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -64172,6 +65117,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -64219,6 +65165,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -64265,6 +65212,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_ListSections parameters: - name: user-id @@ -64390,6 +65338,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: user-id @@ -64435,6 +65384,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_GetSections parameters: - name: user-id @@ -64540,6 +65490,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: user-id @@ -64587,6 +65538,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: user-id @@ -64633,6 +65585,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_ListPages parameters: - name: user-id @@ -64769,6 +65722,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_CreatePages parameters: - name: user-id @@ -64821,6 +65775,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_GetPages parameters: - name: user-id @@ -64928,6 +65883,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_UpdatePages parameters: - name: user-id @@ -64982,6 +65938,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_DeletePages parameters: - name: user-id @@ -65143,6 +66100,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_GetParentNotebook parameters: - name: user-id @@ -65242,6 +66200,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentNotebook parameters: - name: user-id @@ -65289,6 +66248,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentNotebook parameters: - name: user-id @@ -65335,6 +66295,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_GetParentSectionGroup parameters: - name: user-id @@ -65448,6 +66409,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -65495,6 +66457,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -65541,6 +66504,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_ListSections parameters: - name: user-id @@ -65659,6 +66623,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_CreateSections parameters: - name: user-id @@ -65697,6 +66662,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_GetSections parameters: - name: user-id @@ -65792,6 +66758,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_UpdateSections parameters: - name: user-id @@ -65832,6 +66799,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_DeleteSections parameters: - name: user-id @@ -65871,6 +66839,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections_ListPages parameters: - name: user-id @@ -66000,6 +66969,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections_CreatePages parameters: - name: user-id @@ -66045,6 +67015,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections_GetPages parameters: - name: user-id @@ -66143,6 +67114,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections_UpdatePages parameters: - name: user-id @@ -66190,6 +67162,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections_DeletePages parameters: - name: user-id @@ -66330,6 +67303,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_GetParentNotebook parameters: - name: user-id @@ -66420,6 +67394,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_UpdateParentNotebook parameters: - name: user-id @@ -66460,6 +67435,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_DeleteParentNotebook parameters: - name: user-id @@ -66499,6 +67475,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_GetParentSectionGroup parameters: - name: user-id @@ -66601,6 +67578,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -66641,6 +67619,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -66680,6 +67659,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentNotebook parameters: - name: user-id @@ -66770,6 +67750,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: user-id @@ -66810,6 +67791,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: user-id @@ -66849,6 +67831,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: user-id @@ -66951,6 +67934,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: user-id @@ -66991,6 +67975,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: user-id @@ -67030,6 +68015,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSectionGroups parameters: - name: user-id @@ -67154,6 +68140,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSectionGroups parameters: - name: user-id @@ -67199,6 +68186,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSectionGroups parameters: - name: user-id @@ -67312,6 +68300,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: user-id @@ -67359,6 +68348,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: user-id @@ -67405,6 +68395,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSections parameters: - name: user-id @@ -67530,6 +68521,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSections parameters: - name: user-id @@ -67575,6 +68567,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSections parameters: - name: user-id @@ -67680,6 +68673,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSections parameters: - name: user-id @@ -67727,6 +68721,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSections parameters: - name: user-id @@ -67773,6 +68768,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.pages_GetParentSection parameters: - name: user-id @@ -67858,6 +68854,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.pages_UpdateParentSection parameters: - name: user-id @@ -67891,6 +68888,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.pages_DeleteParentSection parameters: - name: user-id @@ -67923,6 +68921,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection_ListPages parameters: - name: user-id @@ -68045,6 +69044,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection_CreatePages parameters: - name: user-id @@ -68083,6 +69083,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection_GetPages parameters: - name: user-id @@ -68172,6 +69173,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection_UpdatePages parameters: - name: user-id @@ -68212,6 +69214,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection_DeletePages parameters: - name: user-id @@ -68331,6 +69334,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentSection_GetParentNotebook parameters: - name: user-id @@ -68412,6 +69416,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentSection_UpdateParentNotebook parameters: - name: user-id @@ -68445,6 +69450,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentSection_DeleteParentNotebook parameters: - name: user-id @@ -68477,6 +69483,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -68594,6 +69601,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -68632,6 +69640,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -68734,6 +69743,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -68774,6 +69784,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -68813,6 +69824,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -68903,6 +69915,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -68943,6 +69956,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -68982,6 +69996,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -69084,6 +70099,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -69124,6 +70140,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -69163,6 +70180,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -69287,6 +70305,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -69332,6 +70351,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -69445,6 +70465,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -69492,6 +70513,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -69538,6 +70560,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSections parameters: - name: user-id @@ -69663,6 +70686,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSections parameters: - name: user-id @@ -69708,6 +70732,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSections parameters: - name: user-id @@ -69813,6 +70838,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSections parameters: - name: user-id @@ -69860,6 +70886,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSections parameters: - name: user-id @@ -69906,6 +70933,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_ListSections parameters: - name: user-id @@ -70024,6 +71052,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_CreateSections parameters: - name: user-id @@ -70062,6 +71091,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_GetSections parameters: - name: user-id @@ -70157,6 +71187,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_UpdateSections parameters: - name: user-id @@ -70197,6 +71228,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_DeleteSections parameters: - name: user-id @@ -70236,6 +71268,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentSection_GetParentSectionGroup parameters: - name: user-id @@ -70327,6 +71360,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentSection_UpdateParentSectionGroup parameters: - name: user-id @@ -70360,6 +71394,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentSection_DeleteParentSectionGroup parameters: - name: user-id @@ -70392,6 +71427,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_GetParentNotebook parameters: - name: user-id @@ -70473,6 +71509,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_UpdateParentNotebook parameters: - name: user-id @@ -70506,6 +71543,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_DeleteParentNotebook parameters: - name: user-id @@ -70538,6 +71576,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -70655,6 +71694,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -70693,6 +71733,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -70795,6 +71836,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -70835,6 +71877,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -70874,6 +71917,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSections parameters: - name: user-id @@ -70992,6 +72036,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSections parameters: - name: user-id @@ -71030,6 +72075,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSections parameters: - name: user-id @@ -71125,6 +72171,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: user-id @@ -71165,6 +72212,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: user-id @@ -71204,6 +72252,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_GetParentSectionGroup parameters: - name: user-id @@ -71295,6 +72344,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_UpdateParentSectionGroup parameters: - name: user-id @@ -71328,6 +72378,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_DeleteParentSectionGroup parameters: - name: user-id @@ -71360,6 +72411,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_ListSectionGroups parameters: - name: user-id @@ -71477,6 +72529,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_CreateSectionGroups parameters: - name: user-id @@ -71515,6 +72568,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_GetSectionGroups parameters: - name: user-id @@ -71617,6 +72671,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_UpdateSectionGroups parameters: - name: user-id @@ -71657,6 +72712,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_DeleteSectionGroups parameters: - name: user-id @@ -71696,6 +72752,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_ListSections parameters: - name: user-id @@ -71814,6 +72871,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_CreateSections parameters: - name: user-id @@ -71852,6 +72910,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_GetSections parameters: - name: user-id @@ -71947,6 +73006,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_UpdateSections parameters: - name: user-id @@ -71987,6 +73047,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_DeleteSections parameters: - name: user-id @@ -72026,6 +73087,7 @@ paths: tags: - users.onenote summary: Get resources from users + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: users.onenote_ListResources parameters: - name: user-id @@ -72113,6 +73175,7 @@ paths: tags: - users.onenote summary: Create new navigation property to resources for users + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: users.onenote_CreateResources parameters: - name: user-id @@ -72144,6 +73207,7 @@ paths: tags: - users.onenote summary: Get resources from users + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: users.onenote_GetResources parameters: - name: user-id @@ -72201,6 +73265,7 @@ paths: tags: - users.onenote summary: Update the navigation property resources in users + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: users.onenote_UpdateResources parameters: - name: user-id @@ -72234,6 +73299,7 @@ paths: tags: - users.onenote summary: Delete navigation property resources for users + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: users.onenote_DeleteResources parameters: - name: user-id @@ -72332,6 +73398,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_ListSectionGroups parameters: - name: user-id @@ -72442,6 +73509,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_CreateSectionGroups parameters: - name: user-id @@ -72473,6 +73541,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_GetSectionGroups parameters: - name: user-id @@ -72564,6 +73633,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_UpdateSectionGroups parameters: - name: user-id @@ -72597,6 +73667,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_DeleteSectionGroups parameters: - name: user-id @@ -72629,6 +73700,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -72710,6 +73782,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -72743,6 +73816,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -72775,6 +73849,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -72892,6 +73967,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -72930,6 +74006,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -73032,6 +74109,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -73072,6 +74150,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -73111,6 +74190,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_ListSections parameters: - name: user-id @@ -73229,6 +74309,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_CreateSections parameters: - name: user-id @@ -73267,6 +74348,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_GetSections parameters: - name: user-id @@ -73362,6 +74444,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_UpdateSections parameters: - name: user-id @@ -73402,6 +74485,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_DeleteSections parameters: - name: user-id @@ -73441,6 +74525,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook.sections_ListPages parameters: - name: user-id @@ -73570,6 +74655,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook.sections_CreatePages parameters: - name: user-id @@ -73615,6 +74701,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook.sections_GetPages parameters: - name: user-id @@ -73713,6 +74800,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook.sections_UpdatePages parameters: - name: user-id @@ -73760,6 +74848,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook.sections_DeletePages parameters: - name: user-id @@ -73900,6 +74989,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_GetParentNotebook parameters: - name: user-id @@ -73999,6 +75089,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentNotebook parameters: - name: user-id @@ -74046,6 +75137,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentNotebook parameters: - name: user-id @@ -74092,6 +75184,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_GetParentSection parameters: - name: user-id @@ -74197,6 +75290,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentSection parameters: - name: user-id @@ -74244,6 +75338,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentSection parameters: - name: user-id @@ -74290,6 +75385,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_GetParentNotebook parameters: - name: user-id @@ -74380,6 +75476,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_UpdateParentNotebook parameters: - name: user-id @@ -74420,6 +75517,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_DeleteParentNotebook parameters: - name: user-id @@ -74459,6 +75557,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_GetParentSectionGroup parameters: - name: user-id @@ -74561,6 +75660,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -74601,6 +75701,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -74640,6 +75741,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -74731,6 +75833,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -74764,6 +75867,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -74796,6 +75900,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -74913,6 +76018,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -74951,6 +76057,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -75053,6 +76160,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -75093,6 +76201,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -75132,6 +76241,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sectionGroups_ListSections parameters: - name: user-id @@ -75250,6 +76360,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sectionGroups_CreateSections parameters: - name: user-id @@ -75288,6 +76399,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sectionGroups_GetSections parameters: - name: user-id @@ -75383,6 +76495,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sectionGroups_UpdateSections parameters: - name: user-id @@ -75423,6 +76536,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sectionGroups_DeleteSections parameters: - name: user-id @@ -75462,6 +76576,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections_ListPages parameters: - name: user-id @@ -75591,6 +76706,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections_CreatePages parameters: - name: user-id @@ -75636,6 +76752,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections_GetPages parameters: - name: user-id @@ -75734,6 +76851,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections_UpdatePages parameters: - name: user-id @@ -75781,6 +76899,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections_DeletePages parameters: - name: user-id @@ -75921,6 +77040,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_GetParentNotebook parameters: - name: user-id @@ -76020,6 +77140,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: user-id @@ -76067,6 +77188,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: user-id @@ -76113,6 +77235,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -76244,6 +77367,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -76296,6 +77420,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -76420,6 +77545,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -76474,6 +77600,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -76527,6 +77654,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_ListSections parameters: - name: user-id @@ -76659,6 +77787,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_CreateSections parameters: - name: user-id @@ -76711,6 +77840,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_GetSections parameters: - name: user-id @@ -76826,6 +77956,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSections parameters: - name: user-id @@ -76880,6 +78011,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSections parameters: - name: user-id @@ -76933,6 +78065,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_GetParentSection parameters: - name: user-id @@ -77038,6 +78171,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_UpdateParentSection parameters: - name: user-id @@ -77085,6 +78219,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_DeleteParentSection parameters: - name: user-id @@ -77131,6 +78266,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_GetParentNotebook parameters: - name: user-id @@ -77221,6 +78357,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_UpdateParentNotebook parameters: - name: user-id @@ -77261,6 +78398,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_DeleteParentNotebook parameters: - name: user-id @@ -77300,6 +78438,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -77424,6 +78563,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -77469,6 +78609,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -77582,6 +78723,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -77629,6 +78771,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -77675,6 +78818,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_ListSections parameters: - name: user-id @@ -77800,6 +78944,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_CreateSections parameters: - name: user-id @@ -77845,6 +78990,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_GetSections parameters: - name: user-id @@ -77950,6 +79096,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_UpdateSections parameters: - name: user-id @@ -77997,6 +79144,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_DeleteSections parameters: - name: user-id @@ -78043,6 +79191,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_GetParentSectionGroup parameters: - name: user-id @@ -78145,6 +79294,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -78185,6 +79335,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -78224,6 +79375,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_ListSections parameters: - name: user-id @@ -78335,6 +79487,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_CreateSections parameters: - name: user-id @@ -78366,6 +79519,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_GetSections parameters: - name: user-id @@ -78451,6 +79605,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_UpdateSections parameters: - name: user-id @@ -78484,6 +79639,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_DeleteSections parameters: - name: user-id @@ -78516,6 +79672,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sections_ListPages parameters: - name: user-id @@ -78638,6 +79795,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sections_CreatePages parameters: - name: user-id @@ -78676,6 +79834,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sections_GetPages parameters: - name: user-id @@ -78765,6 +79924,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sections_UpdatePages parameters: - name: user-id @@ -78805,6 +79965,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sections_DeletePages parameters: - name: user-id @@ -78924,6 +80085,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sections.pages_GetParentNotebook parameters: - name: user-id @@ -79014,6 +80176,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sections.pages_UpdateParentNotebook parameters: - name: user-id @@ -79054,6 +80217,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sections.pages_DeleteParentNotebook parameters: - name: user-id @@ -79093,6 +80257,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -79217,6 +80382,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -79262,6 +80428,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -79375,6 +80542,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -79422,6 +80590,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -79468,6 +80637,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -79567,6 +80737,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -79614,6 +80785,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -79660,6 +80832,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -79773,6 +80946,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -79820,6 +80994,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -79866,6 +81041,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -79997,6 +81173,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -80049,6 +81226,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -80173,6 +81351,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -80227,6 +81406,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -80280,6 +81460,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_ListSections parameters: - name: user-id @@ -80412,6 +81593,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: user-id @@ -80464,6 +81646,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_GetSections parameters: - name: user-id @@ -80579,6 +81762,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: user-id @@ -80633,6 +81817,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: user-id @@ -80686,6 +81871,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_ListSections parameters: - name: user-id @@ -80811,6 +81997,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_CreateSections parameters: - name: user-id @@ -80856,6 +82043,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_GetSections parameters: - name: user-id @@ -80961,6 +82149,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_UpdateSections parameters: - name: user-id @@ -81008,6 +82197,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_DeleteSections parameters: - name: user-id @@ -81054,6 +82244,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.sections.pages_GetParentSection parameters: - name: user-id @@ -81149,6 +82340,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.sections.pages_UpdateParentSection parameters: - name: user-id @@ -81189,6 +82381,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.sections.pages_DeleteParentSection parameters: - name: user-id @@ -81228,6 +82421,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sections_GetParentNotebook parameters: - name: user-id @@ -81309,6 +82503,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sections_UpdateParentNotebook parameters: - name: user-id @@ -81342,6 +82537,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sections_DeleteParentNotebook parameters: - name: user-id @@ -81374,6 +82570,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -81491,6 +82688,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -81529,6 +82727,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -81631,6 +82830,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -81671,6 +82871,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -81710,6 +82911,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -81800,6 +83002,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -81840,6 +83043,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -81879,6 +83083,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -81981,6 +83186,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -82021,6 +83227,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -82060,6 +83267,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -82184,6 +83392,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -82229,6 +83438,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -82342,6 +83552,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -82389,6 +83600,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -82435,6 +83647,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_ListSections parameters: - name: user-id @@ -82560,6 +83773,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_CreateSections parameters: - name: user-id @@ -82605,6 +83819,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_GetSections parameters: - name: user-id @@ -82710,6 +83925,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_UpdateSections parameters: - name: user-id @@ -82757,6 +83973,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_DeleteSections parameters: - name: user-id @@ -82803,6 +84020,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_ListSections parameters: - name: user-id @@ -82921,6 +84139,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_CreateSections parameters: - name: user-id @@ -82959,6 +84178,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_GetSections parameters: - name: user-id @@ -83054,6 +84274,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_UpdateSections parameters: - name: user-id @@ -83094,6 +84315,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_DeleteSections parameters: - name: user-id @@ -83133,6 +84355,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.sections_GetParentSectionGroup parameters: - name: user-id @@ -83224,6 +84447,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -83257,6 +84481,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -83289,6 +84514,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_GetParentNotebook parameters: - name: user-id @@ -83370,6 +84596,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: user-id @@ -83403,6 +84630,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: user-id @@ -83435,6 +84663,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -83552,6 +84781,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -83590,6 +84820,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -83692,6 +84923,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -83732,6 +84964,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -83771,6 +85004,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_ListSections parameters: - name: user-id @@ -83889,6 +85123,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_CreateSections parameters: - name: user-id @@ -83927,6 +85162,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_GetSections parameters: - name: user-id @@ -84022,6 +85258,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: user-id @@ -84062,6 +85299,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: user-id @@ -84101,6 +85339,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: user-id @@ -84192,6 +85431,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: user-id @@ -84225,6 +85465,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: user-id @@ -84257,6 +85498,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_ListSectionGroups parameters: - name: user-id @@ -84374,6 +85616,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_CreateSectionGroups parameters: - name: user-id @@ -84412,6 +85655,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_GetSectionGroups parameters: - name: user-id @@ -84514,6 +85758,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: user-id @@ -84554,6 +85799,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: user-id @@ -84593,6 +85839,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_ListSections parameters: - name: user-id @@ -84711,6 +85958,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_CreateSections parameters: - name: user-id @@ -84749,6 +85997,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_GetSections parameters: - name: user-id @@ -84844,6 +86093,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_UpdateSections parameters: - name: user-id @@ -84884,6 +86134,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_DeleteSections parameters: - name: user-id diff --git a/openApiDocs/beta/People.yml b/openApiDocs/beta/People.yml index cbb1f513923..3f610358209 100644 --- a/openApiDocs/beta/People.yml +++ b/openApiDocs/beta/People.yml @@ -117,6 +117,7 @@ paths: tags: - users.userAnalytics summary: Get activityStatistics from users + description: The collection of work activities that a user spent time on during and outside of working hours. Read-only. Nullable. operationId: users.analytics_ListActivityStatistics parameters: - name: user-id @@ -210,6 +211,7 @@ paths: tags: - users.userAnalytics summary: Create new navigation property to activityStatistics for users + description: The collection of work activities that a user spent time on during and outside of working hours. Read-only. Nullable. operationId: users.analytics_CreateActivityStatistics parameters: - name: user-id @@ -241,6 +243,7 @@ paths: tags: - users.userAnalytics summary: Get activityStatistics from users + description: The collection of work activities that a user spent time on during and outside of working hours. Read-only. Nullable. operationId: users.analytics_GetActivityStatistics parameters: - name: user-id @@ -300,6 +303,7 @@ paths: tags: - users.userAnalytics summary: Update the navigation property activityStatistics in users + description: The collection of work activities that a user spent time on during and outside of working hours. Read-only. Nullable. operationId: users.analytics_UpdateActivityStatistics parameters: - name: user-id @@ -333,6 +337,7 @@ paths: tags: - users.userAnalytics summary: Delete navigation property activityStatistics for users + description: The collection of work activities that a user spent time on during and outside of working hours. Read-only. Nullable. operationId: users.analytics_DeleteActivityStatistics parameters: - name: user-id @@ -365,6 +370,7 @@ paths: tags: - users.person summary: Get people from users + description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' operationId: users_ListPeople parameters: - name: user-id @@ -503,6 +509,7 @@ paths: tags: - users.person summary: Create new navigation property to people for users + description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' operationId: users_CreatePeople parameters: - name: user-id @@ -534,6 +541,7 @@ paths: tags: - users.person summary: Get people from users + description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' operationId: users_GetPeople parameters: - name: user-id @@ -608,6 +616,7 @@ paths: tags: - users.person summary: Update the navigation property people in users + description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' operationId: users_UpdatePeople parameters: - name: user-id @@ -641,6 +650,7 @@ paths: tags: - users.person summary: Delete navigation property people for users + description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' operationId: users_DeletePeople parameters: - name: user-id @@ -673,6 +683,7 @@ paths: tags: - users.profile summary: Get profile from users + description: Represents properties that are descriptive of a user in a tenant. operationId: users_GetProfile parameters: - name: user-id @@ -835,6 +846,7 @@ paths: tags: - users.profile summary: Update the navigation property profile in users + description: Represents properties that are descriptive of a user in a tenant. operationId: users_UpdateProfile parameters: - name: user-id @@ -861,6 +873,7 @@ paths: tags: - users.profile summary: Delete navigation property profile for users + description: Represents properties that are descriptive of a user in a tenant. operationId: users_DeleteProfile parameters: - name: user-id @@ -1162,6 +1175,7 @@ paths: tags: - users.profile summary: Get addresses from users + description: Represents details of addresses associated with the user. operationId: users.profile_ListAddresses parameters: - name: user-id @@ -1273,6 +1287,7 @@ paths: tags: - users.profile summary: Create new navigation property to addresses for users + description: Represents details of addresses associated with the user. operationId: users.profile_CreateAddresses parameters: - name: user-id @@ -1304,6 +1319,7 @@ paths: tags: - users.profile summary: Get addresses from users + description: Represents details of addresses associated with the user. operationId: users.profile_GetAddresses parameters: - name: user-id @@ -1369,6 +1385,7 @@ paths: tags: - users.profile summary: Update the navigation property addresses in users + description: Represents details of addresses associated with the user. operationId: users.profile_UpdateAddresses parameters: - name: user-id @@ -1402,6 +1419,7 @@ paths: tags: - users.profile summary: Delete navigation property addresses for users + description: Represents details of addresses associated with the user. operationId: users.profile_DeleteAddresses parameters: - name: user-id @@ -1434,6 +1452,7 @@ paths: tags: - users.profile summary: Get anniversaries from users + description: Represents the details of meaningful dates associated with a person. operationId: users.profile_ListAnniversaries parameters: - name: user-id @@ -1545,6 +1564,7 @@ paths: tags: - users.profile summary: Create new navigation property to anniversaries for users + description: Represents the details of meaningful dates associated with a person. operationId: users.profile_CreateAnniversaries parameters: - name: user-id @@ -1576,6 +1596,7 @@ paths: tags: - users.profile summary: Get anniversaries from users + description: Represents the details of meaningful dates associated with a person. operationId: users.profile_GetAnniversaries parameters: - name: user-id @@ -1641,6 +1662,7 @@ paths: tags: - users.profile summary: Update the navigation property anniversaries in users + description: Represents the details of meaningful dates associated with a person. operationId: users.profile_UpdateAnniversaries parameters: - name: user-id @@ -1674,6 +1696,7 @@ paths: tags: - users.profile summary: Delete navigation property anniversaries for users + description: Represents the details of meaningful dates associated with a person. operationId: users.profile_DeleteAnniversaries parameters: - name: user-id @@ -1706,6 +1729,7 @@ paths: tags: - users.profile summary: Get awards from users + description: Represents the details of awards or honors associated with a person. operationId: users.profile_ListAwards parameters: - name: user-id @@ -1826,6 +1850,7 @@ paths: tags: - users.profile summary: Create new navigation property to awards for users + description: Represents the details of awards or honors associated with a person. operationId: users.profile_CreateAwards parameters: - name: user-id @@ -1857,6 +1882,7 @@ paths: tags: - users.profile summary: Get awards from users + description: Represents the details of awards or honors associated with a person. operationId: users.profile_GetAwards parameters: - name: user-id @@ -1925,6 +1951,7 @@ paths: tags: - users.profile summary: Update the navigation property awards in users + description: Represents the details of awards or honors associated with a person. operationId: users.profile_UpdateAwards parameters: - name: user-id @@ -1958,6 +1985,7 @@ paths: tags: - users.profile summary: Delete navigation property awards for users + description: Represents the details of awards or honors associated with a person. operationId: users.profile_DeleteAwards parameters: - name: user-id @@ -1990,6 +2018,7 @@ paths: tags: - users.profile summary: Get certifications from users + description: Represents the details of certifications associated with a person. operationId: users.profile_ListCertifications parameters: - name: user-id @@ -2122,6 +2151,7 @@ paths: tags: - users.profile summary: Create new navigation property to certifications for users + description: Represents the details of certifications associated with a person. operationId: users.profile_CreateCertifications parameters: - name: user-id @@ -2153,6 +2183,7 @@ paths: tags: - users.profile summary: Get certifications from users + description: Represents the details of certifications associated with a person. operationId: users.profile_GetCertifications parameters: - name: user-id @@ -2225,6 +2256,7 @@ paths: tags: - users.profile summary: Update the navigation property certifications in users + description: Represents the details of certifications associated with a person. operationId: users.profile_UpdateCertifications parameters: - name: user-id @@ -2258,6 +2290,7 @@ paths: tags: - users.profile summary: Delete navigation property certifications for users + description: Represents the details of certifications associated with a person. operationId: users.profile_DeleteCertifications parameters: - name: user-id @@ -2290,6 +2323,7 @@ paths: tags: - users.profile summary: Get educationalActivities from users + description: 'Represents data that a user has supplied related to undergraduate, graduate, postgraduate or other educational activities.' operationId: users.profile_ListEducationalActivities parameters: - name: user-id @@ -2407,6 +2441,7 @@ paths: tags: - users.profile summary: Create new navigation property to educationalActivities for users + description: 'Represents data that a user has supplied related to undergraduate, graduate, postgraduate or other educational activities.' operationId: users.profile_CreateEducationalActivities parameters: - name: user-id @@ -2438,6 +2473,7 @@ paths: tags: - users.profile summary: Get educationalActivities from users + description: 'Represents data that a user has supplied related to undergraduate, graduate, postgraduate or other educational activities.' operationId: users.profile_GetEducationalActivities parameters: - name: user-id @@ -2505,6 +2541,7 @@ paths: tags: - users.profile summary: Update the navigation property educationalActivities in users + description: 'Represents data that a user has supplied related to undergraduate, graduate, postgraduate or other educational activities.' operationId: users.profile_UpdateEducationalActivities parameters: - name: user-id @@ -2538,6 +2575,7 @@ paths: tags: - users.profile summary: Delete navigation property educationalActivities for users + description: 'Represents data that a user has supplied related to undergraduate, graduate, postgraduate or other educational activities.' operationId: users.profile_DeleteEducationalActivities parameters: - name: user-id @@ -2570,6 +2608,7 @@ paths: tags: - users.profile summary: Get emails from users + description: Represents detailed information about email addresses associated with the user. operationId: users.profile_ListEmails parameters: - name: user-id @@ -2681,6 +2720,7 @@ paths: tags: - users.profile summary: Create new navigation property to emails for users + description: Represents detailed information about email addresses associated with the user. operationId: users.profile_CreateEmails parameters: - name: user-id @@ -2712,6 +2752,7 @@ paths: tags: - users.profile summary: Get emails from users + description: Represents detailed information about email addresses associated with the user. operationId: users.profile_GetEmails parameters: - name: user-id @@ -2777,6 +2818,7 @@ paths: tags: - users.profile summary: Update the navigation property emails in users + description: Represents detailed information about email addresses associated with the user. operationId: users.profile_UpdateEmails parameters: - name: user-id @@ -2810,6 +2852,7 @@ paths: tags: - users.profile summary: Delete navigation property emails for users + description: Represents detailed information about email addresses associated with the user. operationId: users.profile_DeleteEmails parameters: - name: user-id @@ -2842,6 +2885,7 @@ paths: tags: - users.profile summary: Get interests from users + description: Provides detailed information about interests the user has associated with themselves in various services. operationId: users.profile_ListInterests parameters: - name: user-id @@ -2962,6 +3006,7 @@ paths: tags: - users.profile summary: Create new navigation property to interests for users + description: Provides detailed information about interests the user has associated with themselves in various services. operationId: users.profile_CreateInterests parameters: - name: user-id @@ -2993,6 +3038,7 @@ paths: tags: - users.profile summary: Get interests from users + description: Provides detailed information about interests the user has associated with themselves in various services. operationId: users.profile_GetInterests parameters: - name: user-id @@ -3061,6 +3107,7 @@ paths: tags: - users.profile summary: Update the navigation property interests in users + description: Provides detailed information about interests the user has associated with themselves in various services. operationId: users.profile_UpdateInterests parameters: - name: user-id @@ -3094,6 +3141,7 @@ paths: tags: - users.profile summary: Delete navigation property interests for users + description: Provides detailed information about interests the user has associated with themselves in various services. operationId: users.profile_DeleteInterests parameters: - name: user-id @@ -3126,6 +3174,7 @@ paths: tags: - users.profile summary: Get languages from users + description: Represents detailed information about languages that a user has added to their profile. operationId: users.profile_ListLanguages parameters: - name: user-id @@ -3249,6 +3298,7 @@ paths: tags: - users.profile summary: Create new navigation property to languages for users + description: Represents detailed information about languages that a user has added to their profile. operationId: users.profile_CreateLanguages parameters: - name: user-id @@ -3280,6 +3330,7 @@ paths: tags: - users.profile summary: Get languages from users + description: Represents detailed information about languages that a user has added to their profile. operationId: users.profile_GetLanguages parameters: - name: user-id @@ -3349,6 +3400,7 @@ paths: tags: - users.profile summary: Update the navigation property languages in users + description: Represents detailed information about languages that a user has added to their profile. operationId: users.profile_UpdateLanguages parameters: - name: user-id @@ -3382,6 +3434,7 @@ paths: tags: - users.profile summary: Delete navigation property languages for users + description: Represents detailed information about languages that a user has added to their profile. operationId: users.profile_DeleteLanguages parameters: - name: user-id @@ -3414,6 +3467,7 @@ paths: tags: - users.profile summary: Get names from users + description: Represents the names a user has added to their profile. operationId: users.profile_ListNames parameters: - name: user-id @@ -3549,6 +3603,7 @@ paths: tags: - users.profile summary: Create new navigation property to names for users + description: Represents the names a user has added to their profile. operationId: users.profile_CreateNames parameters: - name: user-id @@ -3580,6 +3635,7 @@ paths: tags: - users.profile summary: Get names from users + description: Represents the names a user has added to their profile. operationId: users.profile_GetNames parameters: - name: user-id @@ -3653,6 +3709,7 @@ paths: tags: - users.profile summary: Update the navigation property names in users + description: Represents the names a user has added to their profile. operationId: users.profile_UpdateNames parameters: - name: user-id @@ -3686,6 +3743,7 @@ paths: tags: - users.profile summary: Delete navigation property names for users + description: Represents the names a user has added to their profile. operationId: users.profile_DeleteNames parameters: - name: user-id @@ -3718,6 +3776,7 @@ paths: tags: - users.profile summary: Get notes from users + description: Represents notes that a user has added to their profile. operationId: users.profile_ListNotes parameters: - name: user-id @@ -3829,6 +3888,7 @@ paths: tags: - users.profile summary: Create new navigation property to notes for users + description: Represents notes that a user has added to their profile. operationId: users.profile_CreateNotes parameters: - name: user-id @@ -3860,6 +3920,7 @@ paths: tags: - users.profile summary: Get notes from users + description: Represents notes that a user has added to their profile. operationId: users.profile_GetNotes parameters: - name: user-id @@ -3925,6 +3986,7 @@ paths: tags: - users.profile summary: Update the navigation property notes in users + description: Represents notes that a user has added to their profile. operationId: users.profile_UpdateNotes parameters: - name: user-id @@ -3958,6 +4020,7 @@ paths: tags: - users.profile summary: Delete navigation property notes for users + description: Represents notes that a user has added to their profile. operationId: users.profile_DeleteNotes parameters: - name: user-id @@ -3990,6 +4053,7 @@ paths: tags: - users.profile summary: Get patents from users + description: Represents patents that a user has added to their profile. operationId: users.profile_ListPatents parameters: - name: user-id @@ -4113,6 +4177,7 @@ paths: tags: - users.profile summary: Create new navigation property to patents for users + description: Represents patents that a user has added to their profile. operationId: users.profile_CreatePatents parameters: - name: user-id @@ -4144,6 +4209,7 @@ paths: tags: - users.profile summary: Get patents from users + description: Represents patents that a user has added to their profile. operationId: users.profile_GetPatents parameters: - name: user-id @@ -4213,6 +4279,7 @@ paths: tags: - users.profile summary: Update the navigation property patents in users + description: Represents patents that a user has added to their profile. operationId: users.profile_UpdatePatents parameters: - name: user-id @@ -4246,6 +4313,7 @@ paths: tags: - users.profile summary: Delete navigation property patents for users + description: Represents patents that a user has added to their profile. operationId: users.profile_DeletePatents parameters: - name: user-id @@ -4278,6 +4346,7 @@ paths: tags: - users.profile summary: Get phones from users + description: Represents detailed information about phone numbers associated with a user in various services. operationId: users.profile_ListPhones parameters: - name: user-id @@ -4389,6 +4458,7 @@ paths: tags: - users.profile summary: Create new navigation property to phones for users + description: Represents detailed information about phone numbers associated with a user in various services. operationId: users.profile_CreatePhones parameters: - name: user-id @@ -4420,6 +4490,7 @@ paths: tags: - users.profile summary: Get phones from users + description: Represents detailed information about phone numbers associated with a user in various services. operationId: users.profile_GetPhones parameters: - name: user-id @@ -4485,6 +4556,7 @@ paths: tags: - users.profile summary: Update the navigation property phones in users + description: Represents detailed information about phone numbers associated with a user in various services. operationId: users.profile_UpdatePhones parameters: - name: user-id @@ -4518,6 +4590,7 @@ paths: tags: - users.profile summary: Delete navigation property phones for users + description: Represents detailed information about phone numbers associated with a user in various services. operationId: users.profile_DeletePhones parameters: - name: user-id @@ -4550,6 +4623,7 @@ paths: tags: - users.profile summary: Get positions from users + description: Represents detailed information about work positions associated with a user's profile. operationId: users.profile_ListPositions parameters: - name: user-id @@ -4667,6 +4741,7 @@ paths: tags: - users.profile summary: Create new navigation property to positions for users + description: Represents detailed information about work positions associated with a user's profile. operationId: users.profile_CreatePositions parameters: - name: user-id @@ -4698,6 +4773,7 @@ paths: tags: - users.profile summary: Get positions from users + description: Represents detailed information about work positions associated with a user's profile. operationId: users.profile_GetPositions parameters: - name: user-id @@ -4765,6 +4841,7 @@ paths: tags: - users.profile summary: Update the navigation property positions in users + description: Represents detailed information about work positions associated with a user's profile. operationId: users.profile_UpdatePositions parameters: - name: user-id @@ -4798,6 +4875,7 @@ paths: tags: - users.profile summary: Delete navigation property positions for users + description: Represents detailed information about work positions associated with a user's profile. operationId: users.profile_DeletePositions parameters: - name: user-id @@ -4830,6 +4908,7 @@ paths: tags: - users.profile summary: Get projects from users + description: Represents detailed information about projects associated with a user. operationId: users.profile_ListProjects parameters: - name: user-id @@ -4956,6 +5035,7 @@ paths: tags: - users.profile summary: Create new navigation property to projects for users + description: Represents detailed information about projects associated with a user. operationId: users.profile_CreateProjects parameters: - name: user-id @@ -4987,6 +5067,7 @@ paths: tags: - users.profile summary: Get projects from users + description: Represents detailed information about projects associated with a user. operationId: users.profile_GetProjects parameters: - name: user-id @@ -5057,6 +5138,7 @@ paths: tags: - users.profile summary: Update the navigation property projects in users + description: Represents detailed information about projects associated with a user. operationId: users.profile_UpdateProjects parameters: - name: user-id @@ -5090,6 +5172,7 @@ paths: tags: - users.profile summary: Delete navigation property projects for users + description: Represents detailed information about projects associated with a user. operationId: users.profile_DeleteProjects parameters: - name: user-id @@ -5122,6 +5205,7 @@ paths: tags: - users.profile summary: Get publications from users + description: Represents details of any publications a user has added to their profile. operationId: users.profile_ListPublications parameters: - name: user-id @@ -5242,6 +5326,7 @@ paths: tags: - users.profile summary: Create new navigation property to publications for users + description: Represents details of any publications a user has added to their profile. operationId: users.profile_CreatePublications parameters: - name: user-id @@ -5273,6 +5358,7 @@ paths: tags: - users.profile summary: Get publications from users + description: Represents details of any publications a user has added to their profile. operationId: users.profile_GetPublications parameters: - name: user-id @@ -5341,6 +5427,7 @@ paths: tags: - users.profile summary: Update the navigation property publications in users + description: Represents details of any publications a user has added to their profile. operationId: users.profile_UpdatePublications parameters: - name: user-id @@ -5374,6 +5461,7 @@ paths: tags: - users.profile summary: Delete navigation property publications for users + description: Represents details of any publications a user has added to their profile. operationId: users.profile_DeletePublications parameters: - name: user-id @@ -5406,6 +5494,7 @@ paths: tags: - users.profile summary: Get skills from users + description: Represents detailed information about skills associated with a user in various services. operationId: users.profile_ListSkills parameters: - name: user-id @@ -5526,6 +5615,7 @@ paths: tags: - users.profile summary: Create new navigation property to skills for users + description: Represents detailed information about skills associated with a user in various services. operationId: users.profile_CreateSkills parameters: - name: user-id @@ -5557,6 +5647,7 @@ paths: tags: - users.profile summary: Get skills from users + description: Represents detailed information about skills associated with a user in various services. operationId: users.profile_GetSkills parameters: - name: user-id @@ -5625,6 +5716,7 @@ paths: tags: - users.profile summary: Update the navigation property skills in users + description: Represents detailed information about skills associated with a user in various services. operationId: users.profile_UpdateSkills parameters: - name: user-id @@ -5658,6 +5750,7 @@ paths: tags: - users.profile summary: Delete navigation property skills for users + description: Represents detailed information about skills associated with a user in various services. operationId: users.profile_DeleteSkills parameters: - name: user-id @@ -5690,6 +5783,7 @@ paths: tags: - users.profile summary: Get webAccounts from users + description: Represents web accounts the user has indicated they use or has added to their user profile. operationId: users.profile_ListWebAccounts parameters: - name: user-id @@ -5810,6 +5904,7 @@ paths: tags: - users.profile summary: Create new navigation property to webAccounts for users + description: Represents web accounts the user has indicated they use or has added to their user profile. operationId: users.profile_CreateWebAccounts parameters: - name: user-id @@ -5841,6 +5936,7 @@ paths: tags: - users.profile summary: Get webAccounts from users + description: Represents web accounts the user has indicated they use or has added to their user profile. operationId: users.profile_GetWebAccounts parameters: - name: user-id @@ -5909,6 +6005,7 @@ paths: tags: - users.profile summary: Update the navigation property webAccounts in users + description: Represents web accounts the user has indicated they use or has added to their user profile. operationId: users.profile_UpdateWebAccounts parameters: - name: user-id @@ -5942,6 +6039,7 @@ paths: tags: - users.profile summary: Delete navigation property webAccounts for users + description: Represents web accounts the user has indicated they use or has added to their user profile. operationId: users.profile_DeleteWebAccounts parameters: - name: user-id @@ -5974,6 +6072,7 @@ paths: tags: - users.profile summary: Get websites from users + description: Represents detailed information about websites associated with a user in various services. operationId: users.profile_ListWebsites parameters: - name: user-id @@ -6091,6 +6190,7 @@ paths: tags: - users.profile summary: Create new navigation property to websites for users + description: Represents detailed information about websites associated with a user in various services. operationId: users.profile_CreateWebsites parameters: - name: user-id @@ -6122,6 +6222,7 @@ paths: tags: - users.profile summary: Get websites from users + description: Represents detailed information about websites associated with a user in various services. operationId: users.profile_GetWebsites parameters: - name: user-id @@ -6189,6 +6290,7 @@ paths: tags: - users.profile summary: Update the navigation property websites in users + description: Represents detailed information about websites associated with a user in various services. operationId: users.profile_UpdateWebsites parameters: - name: user-id @@ -6222,6 +6324,7 @@ paths: tags: - users.profile summary: Delete navigation property websites for users + description: Represents detailed information about websites associated with a user in various services. operationId: users.profile_DeleteWebsites parameters: - name: user-id diff --git a/openApiDocs/beta/PersonalContacts.yml b/openApiDocs/beta/PersonalContacts.yml index 6a0fea18fa3..533548f2498 100644 --- a/openApiDocs/beta/PersonalContacts.yml +++ b/openApiDocs/beta/PersonalContacts.yml @@ -11,6 +11,7 @@ paths: tags: - users.contactFolder summary: Get contactFolders from users + description: The user's contacts folders. Read-only. Nullable. operationId: users_ListContactFolders parameters: - name: user-id @@ -106,6 +107,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to contactFolders for users + description: The user's contacts folders. Read-only. Nullable. operationId: users_CreateContactFolders parameters: - name: user-id @@ -137,6 +139,7 @@ paths: tags: - users.contactFolder summary: Get contactFolders from users + description: The user's contacts folders. Read-only. Nullable. operationId: users_GetContactFolders parameters: - name: user-id @@ -223,6 +226,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property contactFolders in users + description: The user's contacts folders. Read-only. Nullable. operationId: users_UpdateContactFolders parameters: - name: user-id @@ -256,6 +260,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property contactFolders for users + description: The user's contacts folders. Read-only. Nullable. operationId: users_DeleteContactFolders parameters: - name: user-id @@ -288,6 +293,7 @@ paths: tags: - users.contactFolder summary: Get childFolders from users + description: The collection of child folders in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_ListChildFolders parameters: - name: user-id @@ -390,6 +396,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to childFolders for users + description: The collection of child folders in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_CreateChildFolders parameters: - name: user-id @@ -428,6 +435,7 @@ paths: tags: - users.contactFolder summary: Get childFolders from users + description: The collection of child folders in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_GetChildFolders parameters: - name: user-id @@ -525,6 +533,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property childFolders in users + description: The collection of child folders in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_UpdateChildFolders parameters: - name: user-id @@ -565,6 +574,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property childFolders for users + description: The collection of child folders in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_DeleteChildFolders parameters: - name: user-id @@ -604,6 +614,7 @@ paths: tags: - users.contactFolder summary: Get contacts from users + description: The contacts in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_ListContacts parameters: - name: user-id @@ -808,6 +819,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to contacts for users + description: The contacts in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_CreateContacts parameters: - name: user-id @@ -846,6 +858,7 @@ paths: tags: - users.contactFolder summary: Get contacts from users + description: The contacts in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_GetContacts parameters: - name: user-id @@ -977,6 +990,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property contacts in users + description: The contacts in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_UpdateContacts parameters: - name: user-id @@ -1017,6 +1031,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property contacts for users + description: The contacts in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_DeleteContacts parameters: - name: user-id @@ -1056,6 +1071,7 @@ paths: tags: - users.contactFolder summary: Get extensions from users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contactFolders.contacts_ListExtensions parameters: - name: user-id @@ -1148,6 +1164,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contactFolders.contacts_CreateExtensions parameters: - name: user-id @@ -1193,6 +1210,7 @@ paths: tags: - users.contactFolder summary: Get extensions from users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contactFolders.contacts_GetExtensions parameters: - name: user-id @@ -1261,6 +1279,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contactFolders.contacts_UpdateExtensions parameters: - name: user-id @@ -1308,6 +1327,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contactFolders.contacts_DeleteExtensions parameters: - name: user-id @@ -1354,6 +1374,7 @@ paths: tags: - users.contactFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_ListMultiValueExtendedProperties parameters: - name: user-id @@ -1449,6 +1470,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -1494,6 +1516,7 @@ paths: tags: - users.contactFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_GetMultiValueExtendedProperties parameters: - name: user-id @@ -1563,6 +1586,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -1610,6 +1634,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -1656,6 +1681,7 @@ paths: tags: - users.contactFolder summary: Get photo from users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contactFolders.contacts_GetPhoto parameters: - name: user-id @@ -1719,6 +1745,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property photo in users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contactFolders.contacts_UpdatePhoto parameters: - name: user-id @@ -1759,6 +1786,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property photo for users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contactFolders.contacts_DeletePhoto parameters: - name: user-id @@ -1798,6 +1826,7 @@ paths: tags: - users.contactFolder summary: Get media content for the navigation property photo from users + description: The user's profile photo. Read-only. operationId: users.contactFolders.contacts_GetPhotoContent parameters: - name: user-id @@ -1836,6 +1865,7 @@ paths: tags: - users.contactFolder summary: Update media content for the navigation property photo in users + description: The user's profile photo. Read-only. operationId: users.contactFolders.contacts_SetPhotoContent parameters: - name: user-id @@ -1878,6 +1908,7 @@ paths: tags: - users.contactFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_ListSingleValueExtendedProperties parameters: - name: user-id @@ -1973,6 +2004,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -2018,6 +2050,7 @@ paths: tags: - users.contactFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_GetSingleValueExtendedProperties parameters: - name: user-id @@ -2087,6 +2120,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -2134,6 +2168,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -2180,6 +2215,7 @@ paths: tags: - users.contactFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_ListMultiValueExtendedProperties parameters: - name: user-id @@ -2268,6 +2304,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -2306,6 +2343,7 @@ paths: tags: - users.contactFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_GetMultiValueExtendedProperties parameters: - name: user-id @@ -2368,6 +2406,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -2408,6 +2447,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -2447,6 +2487,7 @@ paths: tags: - users.contactFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_ListSingleValueExtendedProperties parameters: - name: user-id @@ -2535,6 +2576,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -2573,6 +2615,7 @@ paths: tags: - users.contactFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_GetSingleValueExtendedProperties parameters: - name: user-id @@ -2635,6 +2678,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -2675,6 +2719,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -2714,6 +2759,7 @@ paths: tags: - users.contact summary: Get contacts from users + description: The user's contacts. Read-only. Nullable. operationId: users_ListContacts parameters: - name: user-id @@ -2911,6 +2957,7 @@ paths: tags: - users.contact summary: Create new navigation property to contacts for users + description: The user's contacts. Read-only. Nullable. operationId: users_CreateContacts parameters: - name: user-id @@ -2942,6 +2989,7 @@ paths: tags: - users.contact summary: Get contacts from users + description: The user's contacts. Read-only. Nullable. operationId: users_GetContacts parameters: - name: user-id @@ -3062,6 +3110,7 @@ paths: tags: - users.contact summary: Update the navigation property contacts in users + description: The user's contacts. Read-only. Nullable. operationId: users_UpdateContacts parameters: - name: user-id @@ -3095,6 +3144,7 @@ paths: tags: - users.contact summary: Delete navigation property contacts for users + description: The user's contacts. Read-only. Nullable. operationId: users_DeleteContacts parameters: - name: user-id @@ -3127,6 +3177,7 @@ paths: tags: - users.contact summary: Get extensions from users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contacts_ListExtensions parameters: - name: user-id @@ -3212,6 +3263,7 @@ paths: tags: - users.contact summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contacts_CreateExtensions parameters: - name: user-id @@ -3250,6 +3302,7 @@ paths: tags: - users.contact summary: Get extensions from users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contacts_GetExtensions parameters: - name: user-id @@ -3311,6 +3364,7 @@ paths: tags: - users.contact summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contacts_UpdateExtensions parameters: - name: user-id @@ -3351,6 +3405,7 @@ paths: tags: - users.contact summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contacts_DeleteExtensions parameters: - name: user-id @@ -3390,6 +3445,7 @@ paths: tags: - users.contact summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_ListMultiValueExtendedProperties parameters: - name: user-id @@ -3478,6 +3534,7 @@ paths: tags: - users.contact summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -3516,6 +3573,7 @@ paths: tags: - users.contact summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_GetMultiValueExtendedProperties parameters: - name: user-id @@ -3578,6 +3636,7 @@ paths: tags: - users.contact summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -3618,6 +3677,7 @@ paths: tags: - users.contact summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -3657,6 +3717,7 @@ paths: tags: - users.contact summary: Get photo from users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contacts_GetPhoto parameters: - name: user-id @@ -3713,6 +3774,7 @@ paths: tags: - users.contact summary: Update the navigation property photo in users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contacts_UpdatePhoto parameters: - name: user-id @@ -3746,6 +3808,7 @@ paths: tags: - users.contact summary: Delete navigation property photo for users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contacts_DeletePhoto parameters: - name: user-id @@ -3778,6 +3841,7 @@ paths: tags: - users.contact summary: Get media content for the navigation property photo from users + description: The user's profile photo. Read-only. operationId: users.contacts_GetPhotoContent parameters: - name: user-id @@ -3809,6 +3873,7 @@ paths: tags: - users.contact summary: Update media content for the navigation property photo in users + description: The user's profile photo. Read-only. operationId: users.contacts_SetPhotoContent parameters: - name: user-id @@ -3844,6 +3909,7 @@ paths: tags: - users.contact summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_ListSingleValueExtendedProperties parameters: - name: user-id @@ -3932,6 +3998,7 @@ paths: tags: - users.contact summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -3970,6 +4037,7 @@ paths: tags: - users.contact summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_GetSingleValueExtendedProperties parameters: - name: user-id @@ -4032,6 +4100,7 @@ paths: tags: - users.contact summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -4072,6 +4141,7 @@ paths: tags: - users.contact summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_DeleteSingleValueExtendedProperties parameters: - name: user-id diff --git a/openApiDocs/beta/Planner.yml b/openApiDocs/beta/Planner.yml index d49d65dc873..9e47593d138 100644 --- a/openApiDocs/beta/Planner.yml +++ b/openApiDocs/beta/Planner.yml @@ -11,6 +11,7 @@ paths: tags: - groups.plannerGroup summary: Get planner from groups + description: Selective Planner services available to the group. Read-only. Nullable. operationId: groups_GetPlanner parameters: - name: group-id @@ -65,6 +66,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property planner in groups + description: Selective Planner services available to the group. Read-only. Nullable. operationId: groups_UpdatePlanner parameters: - name: group-id @@ -91,6 +93,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property planner for groups + description: Selective Planner services available to the group. Read-only. Nullable. operationId: groups_DeletePlanner parameters: - name: group-id @@ -116,6 +119,7 @@ paths: tags: - groups.plannerGroup summary: Get plans from groups + description: Read-only. Nullable. Returns the plannerPlans owned by the group. operationId: groups.planner_ListPlans parameters: - name: group-id @@ -218,6 +222,7 @@ paths: tags: - groups.plannerGroup summary: Create new navigation property to plans for groups + description: Read-only. Nullable. Returns the plannerPlans owned by the group. operationId: groups.planner_CreatePlans parameters: - name: group-id @@ -249,6 +254,7 @@ paths: tags: - groups.plannerGroup summary: Get plans from groups + description: Read-only. Nullable. Returns the plannerPlans owned by the group. operationId: groups.planner_GetPlans parameters: - name: group-id @@ -331,6 +337,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property plans in groups + description: Read-only. Nullable. Returns the plannerPlans owned by the group. operationId: groups.planner_UpdatePlans parameters: - name: group-id @@ -364,6 +371,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property plans for groups + description: Read-only. Nullable. Returns the plannerPlans owned by the group. operationId: groups.planner_DeletePlans parameters: - name: group-id @@ -396,6 +404,7 @@ paths: tags: - groups.plannerGroup summary: Get buckets from groups + description: Collection of buckets in the plan. Read-only. Nullable. operationId: groups.planner.plans_ListBuckets parameters: - name: group-id @@ -492,6 +501,7 @@ paths: tags: - groups.plannerGroup summary: Create new navigation property to buckets for groups + description: Collection of buckets in the plan. Read-only. Nullable. operationId: groups.planner.plans_CreateBuckets parameters: - name: group-id @@ -530,6 +540,7 @@ paths: tags: - groups.plannerGroup summary: Get buckets from groups + description: Collection of buckets in the plan. Read-only. Nullable. operationId: groups.planner.plans_GetBuckets parameters: - name: group-id @@ -603,6 +614,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property buckets in groups + description: Collection of buckets in the plan. Read-only. Nullable. operationId: groups.planner.plans_UpdateBuckets parameters: - name: group-id @@ -643,6 +655,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property buckets for groups + description: Collection of buckets in the plan. Read-only. Nullable. operationId: groups.planner.plans_DeleteBuckets parameters: - name: group-id @@ -682,6 +695,7 @@ paths: tags: - groups.plannerGroup summary: Get tasks from groups + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets_ListTasks parameters: - name: group-id @@ -848,6 +862,7 @@ paths: tags: - groups.plannerGroup summary: Create new navigation property to tasks for groups + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets_CreateTasks parameters: - name: group-id @@ -893,6 +908,7 @@ paths: tags: - groups.plannerGroup summary: Get tasks from groups + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets_GetTasks parameters: - name: group-id @@ -1020,6 +1036,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property tasks in groups + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets_UpdateTasks parameters: - name: group-id @@ -1067,6 +1084,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property tasks for groups + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets_DeleteTasks parameters: - name: group-id @@ -1113,6 +1131,7 @@ paths: tags: - groups.plannerGroup summary: Get assignedToTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.buckets.tasks_GetAssignedToTaskBoardFormat parameters: - name: group-id @@ -1183,6 +1202,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property assignedToTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.buckets.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: group-id @@ -1230,6 +1250,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property assignedToTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.buckets.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: group-id @@ -1276,6 +1297,7 @@ paths: tags: - groups.plannerGroup summary: Get bucketTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.buckets.tasks_GetBucketTaskBoardFormat parameters: - name: group-id @@ -1345,6 +1367,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property bucketTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.buckets.tasks_UpdateBucketTaskBoardFormat parameters: - name: group-id @@ -1392,6 +1415,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property bucketTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.buckets.tasks_DeleteBucketTaskBoardFormat parameters: - name: group-id @@ -1438,6 +1462,7 @@ paths: tags: - groups.plannerGroup summary: Get details from groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.buckets.tasks_GetDetails parameters: - name: group-id @@ -1510,6 +1535,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property details in groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.buckets.tasks_UpdateDetails parameters: - name: group-id @@ -1557,6 +1583,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property details for groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.buckets.tasks_DeleteDetails parameters: - name: group-id @@ -1603,6 +1630,7 @@ paths: tags: - groups.plannerGroup summary: Get progressTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.buckets.tasks_GetProgressTaskBoardFormat parameters: - name: group-id @@ -1672,6 +1700,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property progressTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.buckets.tasks_UpdateProgressTaskBoardFormat parameters: - name: group-id @@ -1719,6 +1748,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property progressTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.buckets.tasks_DeleteProgressTaskBoardFormat parameters: - name: group-id @@ -1765,6 +1795,7 @@ paths: tags: - groups.plannerGroup summary: Get details from groups + description: Additional details about the plan. Read-only. Nullable. operationId: groups.planner.plans_GetDetails parameters: - name: group-id @@ -1822,6 +1853,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property details in groups + description: Additional details about the plan. Read-only. Nullable. operationId: groups.planner.plans_UpdateDetails parameters: - name: group-id @@ -1855,6 +1887,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property details for groups + description: Additional details about the plan. Read-only. Nullable. operationId: groups.planner.plans_DeleteDetails parameters: - name: group-id @@ -1887,6 +1920,7 @@ paths: tags: - groups.plannerGroup summary: Get tasks from groups + description: Collection of tasks in the plan. Read-only. Nullable. operationId: groups.planner.plans_ListTasks parameters: - name: group-id @@ -2046,6 +2080,7 @@ paths: tags: - groups.plannerGroup summary: Create new navigation property to tasks for groups + description: Collection of tasks in the plan. Read-only. Nullable. operationId: groups.planner.plans_CreateTasks parameters: - name: group-id @@ -2084,6 +2119,7 @@ paths: tags: - groups.plannerGroup summary: Get tasks from groups + description: Collection of tasks in the plan. Read-only. Nullable. operationId: groups.planner.plans_GetTasks parameters: - name: group-id @@ -2200,6 +2236,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property tasks in groups + description: Collection of tasks in the plan. Read-only. Nullable. operationId: groups.planner.plans_UpdateTasks parameters: - name: group-id @@ -2240,6 +2277,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property tasks for groups + description: Collection of tasks in the plan. Read-only. Nullable. operationId: groups.planner.plans_DeleteTasks parameters: - name: group-id @@ -2279,6 +2317,7 @@ paths: tags: - groups.plannerGroup summary: Get assignedToTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.tasks_GetAssignedToTaskBoardFormat parameters: - name: group-id @@ -2342,6 +2381,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property assignedToTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: group-id @@ -2382,6 +2422,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property assignedToTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: group-id @@ -2421,6 +2462,7 @@ paths: tags: - groups.plannerGroup summary: Get bucketTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.tasks_GetBucketTaskBoardFormat parameters: - name: group-id @@ -2483,6 +2525,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property bucketTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.tasks_UpdateBucketTaskBoardFormat parameters: - name: group-id @@ -2523,6 +2566,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property bucketTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.tasks_DeleteBucketTaskBoardFormat parameters: - name: group-id @@ -2562,6 +2606,7 @@ paths: tags: - groups.plannerGroup summary: Get details from groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.tasks_GetDetails parameters: - name: group-id @@ -2627,6 +2672,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property details in groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.tasks_UpdateDetails parameters: - name: group-id @@ -2667,6 +2713,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property details for groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.tasks_DeleteDetails parameters: - name: group-id @@ -2706,6 +2753,7 @@ paths: tags: - groups.plannerGroup summary: Get progressTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.tasks_GetProgressTaskBoardFormat parameters: - name: group-id @@ -2768,6 +2816,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property progressTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.tasks_UpdateProgressTaskBoardFormat parameters: - name: group-id @@ -2808,6 +2857,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property progressTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.tasks_DeleteProgressTaskBoardFormat parameters: - name: group-id @@ -2923,6 +2973,7 @@ paths: tags: - planner.plannerBucket summary: Get buckets from planner + description: Read-only. Nullable. Returns a collection of the specified buckets operationId: planner_ListBuckets parameters: - $ref: '#/components/parameters/top' @@ -3005,6 +3056,7 @@ paths: tags: - planner.plannerBucket summary: Create new navigation property to buckets for planner + description: Read-only. Nullable. Returns a collection of the specified buckets operationId: planner_CreateBuckets requestBody: description: New navigation property @@ -3028,6 +3080,7 @@ paths: tags: - planner.plannerBucket summary: Get buckets from planner + description: Read-only. Nullable. Returns a collection of the specified buckets operationId: planner_GetBuckets parameters: - name: plannerBucket-id @@ -3085,6 +3138,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property buckets in planner + description: Read-only. Nullable. Returns a collection of the specified buckets operationId: planner_UpdateBuckets parameters: - name: plannerBucket-id @@ -3111,6 +3165,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property buckets for planner + description: Read-only. Nullable. Returns a collection of the specified buckets operationId: planner_DeleteBuckets parameters: - name: plannerBucket-id @@ -3136,6 +3191,7 @@ paths: tags: - planner.plannerBucket summary: Get tasks from planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.buckets_ListTasks parameters: - name: plannerBucket-id @@ -3288,6 +3344,7 @@ paths: tags: - planner.plannerBucket summary: Create new navigation property to tasks for planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.buckets_CreateTasks parameters: - name: plannerBucket-id @@ -3319,6 +3376,7 @@ paths: tags: - planner.plannerBucket summary: Get tasks from planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.buckets_GetTasks parameters: - name: plannerBucket-id @@ -3424,6 +3482,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property tasks in planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.buckets_UpdateTasks parameters: - name: plannerBucket-id @@ -3457,6 +3516,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property tasks for planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.buckets_DeleteTasks parameters: - name: plannerBucket-id @@ -3489,6 +3549,7 @@ paths: tags: - planner.plannerBucket summary: Get assignedToTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.buckets.tasks_GetAssignedToTaskBoardFormat parameters: - name: plannerBucket-id @@ -3545,6 +3606,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property assignedToTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.buckets.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: plannerBucket-id @@ -3578,6 +3640,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property assignedToTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.buckets.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: plannerBucket-id @@ -3610,6 +3673,7 @@ paths: tags: - planner.plannerBucket summary: Get bucketTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.buckets.tasks_GetBucketTaskBoardFormat parameters: - name: plannerBucket-id @@ -3665,6 +3729,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property bucketTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.buckets.tasks_UpdateBucketTaskBoardFormat parameters: - name: plannerBucket-id @@ -3698,6 +3763,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property bucketTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.buckets.tasks_DeleteBucketTaskBoardFormat parameters: - name: plannerBucket-id @@ -3730,6 +3796,7 @@ paths: tags: - planner.plannerBucket summary: Get details from planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.buckets.tasks_GetDetails parameters: - name: plannerBucket-id @@ -3788,6 +3855,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property details in planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.buckets.tasks_UpdateDetails parameters: - name: plannerBucket-id @@ -3821,6 +3889,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property details for planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.buckets.tasks_DeleteDetails parameters: - name: plannerBucket-id @@ -3853,6 +3922,7 @@ paths: tags: - planner.plannerBucket summary: Get progressTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.buckets.tasks_GetProgressTaskBoardFormat parameters: - name: plannerBucket-id @@ -3908,6 +3978,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property progressTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.buckets.tasks_UpdateProgressTaskBoardFormat parameters: - name: plannerBucket-id @@ -3941,6 +4012,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property progressTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.buckets.tasks_DeleteProgressTaskBoardFormat parameters: - name: plannerBucket-id @@ -3973,6 +4045,7 @@ paths: tags: - planner.plannerPlan summary: Get plans from planner + description: Read-only. Nullable. Returns a collection of the specified plans operationId: planner_ListPlans parameters: - $ref: '#/components/parameters/top' @@ -4068,6 +4141,7 @@ paths: tags: - planner.plannerPlan summary: Create new navigation property to plans for planner + description: Read-only. Nullable. Returns a collection of the specified plans operationId: planner_CreatePlans requestBody: description: New navigation property @@ -4091,6 +4165,7 @@ paths: tags: - planner.plannerPlan summary: Get plans from planner + description: Read-only. Nullable. Returns a collection of the specified plans operationId: planner_GetPlans parameters: - name: plannerPlan-id @@ -4163,6 +4238,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property plans in planner + description: Read-only. Nullable. Returns a collection of the specified plans operationId: planner_UpdatePlans parameters: - name: plannerPlan-id @@ -4189,6 +4265,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property plans for planner + description: Read-only. Nullable. Returns a collection of the specified plans operationId: planner_DeletePlans parameters: - name: plannerPlan-id @@ -4214,6 +4291,7 @@ paths: tags: - planner.plannerPlan summary: Get buckets from planner + description: Collection of buckets in the plan. Read-only. Nullable. operationId: planner.plans_ListBuckets parameters: - name: plannerPlan-id @@ -4303,6 +4381,7 @@ paths: tags: - planner.plannerPlan summary: Create new navigation property to buckets for planner + description: Collection of buckets in the plan. Read-only. Nullable. operationId: planner.plans_CreateBuckets parameters: - name: plannerPlan-id @@ -4334,6 +4413,7 @@ paths: tags: - planner.plannerPlan summary: Get buckets from planner + description: Collection of buckets in the plan. Read-only. Nullable. operationId: planner.plans_GetBuckets parameters: - name: plannerPlan-id @@ -4399,6 +4479,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property buckets in planner + description: Collection of buckets in the plan. Read-only. Nullable. operationId: planner.plans_UpdateBuckets parameters: - name: plannerPlan-id @@ -4432,6 +4513,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property buckets for planner + description: Collection of buckets in the plan. Read-only. Nullable. operationId: planner.plans_DeleteBuckets parameters: - name: plannerPlan-id @@ -4464,6 +4546,7 @@ paths: tags: - planner.plannerPlan summary: Get tasks from planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.plans.buckets_ListTasks parameters: - name: plannerPlan-id @@ -4623,6 +4706,7 @@ paths: tags: - planner.plannerPlan summary: Create new navigation property to tasks for planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.plans.buckets_CreateTasks parameters: - name: plannerPlan-id @@ -4661,6 +4745,7 @@ paths: tags: - planner.plannerPlan summary: Get tasks from planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.plans.buckets_GetTasks parameters: - name: plannerPlan-id @@ -4777,6 +4862,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property tasks in planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.plans.buckets_UpdateTasks parameters: - name: plannerPlan-id @@ -4817,6 +4903,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property tasks for planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.plans.buckets_DeleteTasks parameters: - name: plannerPlan-id @@ -4856,6 +4943,7 @@ paths: tags: - planner.plannerPlan summary: Get assignedToTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.buckets.tasks_GetAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -4919,6 +5007,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property assignedToTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.buckets.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -4959,6 +5048,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property assignedToTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.buckets.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -4998,6 +5088,7 @@ paths: tags: - planner.plannerPlan summary: Get bucketTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.buckets.tasks_GetBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -5060,6 +5151,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property bucketTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.buckets.tasks_UpdateBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -5100,6 +5192,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property bucketTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.buckets.tasks_DeleteBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -5139,6 +5232,7 @@ paths: tags: - planner.plannerPlan summary: Get details from planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.buckets.tasks_GetDetails parameters: - name: plannerPlan-id @@ -5204,6 +5298,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property details in planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.buckets.tasks_UpdateDetails parameters: - name: plannerPlan-id @@ -5244,6 +5339,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property details for planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.buckets.tasks_DeleteDetails parameters: - name: plannerPlan-id @@ -5283,6 +5379,7 @@ paths: tags: - planner.plannerPlan summary: Get progressTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.buckets.tasks_GetProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -5345,6 +5442,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property progressTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.buckets.tasks_UpdateProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -5385,6 +5483,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property progressTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.buckets.tasks_DeleteProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -5424,6 +5523,7 @@ paths: tags: - planner.plannerPlan summary: Get details from planner + description: Additional details about the plan. Read-only. Nullable. operationId: planner.plans_GetDetails parameters: - name: plannerPlan-id @@ -5474,6 +5574,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property details in planner + description: Additional details about the plan. Read-only. Nullable. operationId: planner.plans_UpdateDetails parameters: - name: plannerPlan-id @@ -5500,6 +5601,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property details for planner + description: Additional details about the plan. Read-only. Nullable. operationId: planner.plans_DeleteDetails parameters: - name: plannerPlan-id @@ -5525,6 +5627,7 @@ paths: tags: - planner.plannerPlan summary: Get tasks from planner + description: Collection of tasks in the plan. Read-only. Nullable. operationId: planner.plans_ListTasks parameters: - name: plannerPlan-id @@ -5677,6 +5780,7 @@ paths: tags: - planner.plannerPlan summary: Create new navigation property to tasks for planner + description: Collection of tasks in the plan. Read-only. Nullable. operationId: planner.plans_CreateTasks parameters: - name: plannerPlan-id @@ -5708,6 +5812,7 @@ paths: tags: - planner.plannerPlan summary: Get tasks from planner + description: Collection of tasks in the plan. Read-only. Nullable. operationId: planner.plans_GetTasks parameters: - name: plannerPlan-id @@ -5813,6 +5918,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property tasks in planner + description: Collection of tasks in the plan. Read-only. Nullable. operationId: planner.plans_UpdateTasks parameters: - name: plannerPlan-id @@ -5846,6 +5952,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property tasks for planner + description: Collection of tasks in the plan. Read-only. Nullable. operationId: planner.plans_DeleteTasks parameters: - name: plannerPlan-id @@ -5878,6 +5985,7 @@ paths: tags: - planner.plannerPlan summary: Get assignedToTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.tasks_GetAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -5934,6 +6042,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property assignedToTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -5967,6 +6076,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property assignedToTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -5999,6 +6109,7 @@ paths: tags: - planner.plannerPlan summary: Get bucketTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.tasks_GetBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -6054,6 +6165,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property bucketTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.tasks_UpdateBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -6087,6 +6199,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property bucketTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.tasks_DeleteBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -6119,6 +6232,7 @@ paths: tags: - planner.plannerPlan summary: Get details from planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.tasks_GetDetails parameters: - name: plannerPlan-id @@ -6177,6 +6291,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property details in planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.tasks_UpdateDetails parameters: - name: plannerPlan-id @@ -6210,6 +6325,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property details for planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.tasks_DeleteDetails parameters: - name: plannerPlan-id @@ -6242,6 +6358,7 @@ paths: tags: - planner.plannerPlan summary: Get progressTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.tasks_GetProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -6297,6 +6414,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property progressTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.tasks_UpdateProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -6330,6 +6448,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property progressTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.tasks_DeleteProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -6362,6 +6481,7 @@ paths: tags: - planner.plannerRoster summary: Get rosters from planner + description: Read-only. Nullable. Returns a collection of the specified rosters operationId: planner_ListRosters parameters: - $ref: '#/components/parameters/top' @@ -6437,6 +6557,7 @@ paths: tags: - planner.plannerRoster summary: Create new navigation property to rosters for planner + description: Read-only. Nullable. Returns a collection of the specified rosters operationId: planner_CreateRosters requestBody: description: New navigation property @@ -6460,6 +6581,7 @@ paths: tags: - planner.plannerRoster summary: Get rosters from planner + description: Read-only. Nullable. Returns a collection of the specified rosters operationId: planner_GetRosters parameters: - name: plannerRoster-id @@ -6520,6 +6642,7 @@ paths: tags: - planner.plannerRoster summary: Update the navigation property rosters in planner + description: Read-only. Nullable. Returns a collection of the specified rosters operationId: planner_UpdateRosters parameters: - name: plannerRoster-id @@ -6546,6 +6669,7 @@ paths: tags: - planner.plannerRoster summary: Delete navigation property rosters for planner + description: Read-only. Nullable. Returns a collection of the specified rosters operationId: planner_DeleteRosters parameters: - name: plannerRoster-id @@ -6571,6 +6695,7 @@ paths: tags: - planner.plannerRoster summary: Get members from planner + description: Retrieves the members of the plannerRoster. operationId: planner.rosters_ListMembers parameters: - name: plannerRoster-id @@ -6658,6 +6783,7 @@ paths: tags: - planner.plannerRoster summary: Create new navigation property to members for planner + description: Retrieves the members of the plannerRoster. operationId: planner.rosters_CreateMembers parameters: - name: plannerRoster-id @@ -6689,6 +6815,7 @@ paths: tags: - planner.plannerRoster summary: Get members from planner + description: Retrieves the members of the plannerRoster. operationId: planner.rosters_GetMembers parameters: - name: plannerRoster-id @@ -6746,6 +6873,7 @@ paths: tags: - planner.plannerRoster summary: Update the navigation property members in planner + description: Retrieves the members of the plannerRoster. operationId: planner.rosters_UpdateMembers parameters: - name: plannerRoster-id @@ -6779,6 +6907,7 @@ paths: tags: - planner.plannerRoster summary: Delete navigation property members for planner + description: Retrieves the members of the plannerRoster. operationId: planner.rosters_DeleteMembers parameters: - name: plannerRoster-id @@ -6811,6 +6940,7 @@ paths: tags: - planner.plannerRoster summary: Get plans from planner + description: Retrieves the plans contained by the plannerRoster. operationId: planner.rosters_ListPlans parameters: - name: plannerRoster-id @@ -6914,6 +7044,7 @@ paths: tags: - planner.plannerRoster summary: Get ref of plans from planner + description: Retrieves the plans contained by the plannerRoster. operationId: planner.rosters_ListRefPlans parameters: - name: plannerRoster-id @@ -6980,6 +7111,7 @@ paths: tags: - planner.plannerRoster summary: Create new navigation property ref to plans for planner + description: Retrieves the plans contained by the plannerRoster. operationId: planner.rosters_CreateRefPlans parameters: - name: plannerRoster-id @@ -7015,6 +7147,7 @@ paths: tags: - planner.plannerTask summary: Get tasks from planner + description: Read-only. Nullable. Returns a collection of the specified tasks operationId: planner_ListTasks parameters: - $ref: '#/components/parameters/top' @@ -7160,6 +7293,7 @@ paths: tags: - planner.plannerTask summary: Create new navigation property to tasks for planner + description: Read-only. Nullable. Returns a collection of the specified tasks operationId: planner_CreateTasks requestBody: description: New navigation property @@ -7183,6 +7317,7 @@ paths: tags: - planner.plannerTask summary: Get tasks from planner + description: Read-only. Nullable. Returns a collection of the specified tasks operationId: planner_GetTasks parameters: - name: plannerTask-id @@ -7277,6 +7412,7 @@ paths: tags: - planner.plannerTask summary: Update the navigation property tasks in planner + description: Read-only. Nullable. Returns a collection of the specified tasks operationId: planner_UpdateTasks parameters: - name: plannerTask-id @@ -7303,6 +7439,7 @@ paths: tags: - planner.plannerTask summary: Delete navigation property tasks for planner + description: Read-only. Nullable. Returns a collection of the specified tasks operationId: planner_DeleteTasks parameters: - name: plannerTask-id @@ -7328,6 +7465,7 @@ paths: tags: - planner.plannerTask summary: Get assignedToTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.tasks_GetAssignedToTaskBoardFormat parameters: - name: plannerTask-id @@ -7377,6 +7515,7 @@ paths: tags: - planner.plannerTask summary: Update the navigation property assignedToTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: plannerTask-id @@ -7403,6 +7542,7 @@ paths: tags: - planner.plannerTask summary: Delete navigation property assignedToTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: plannerTask-id @@ -7428,6 +7568,7 @@ paths: tags: - planner.plannerTask summary: Get bucketTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.tasks_GetBucketTaskBoardFormat parameters: - name: plannerTask-id @@ -7476,6 +7617,7 @@ paths: tags: - planner.plannerTask summary: Update the navigation property bucketTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.tasks_UpdateBucketTaskBoardFormat parameters: - name: plannerTask-id @@ -7502,6 +7644,7 @@ paths: tags: - planner.plannerTask summary: Delete navigation property bucketTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.tasks_DeleteBucketTaskBoardFormat parameters: - name: plannerTask-id @@ -7527,6 +7670,7 @@ paths: tags: - planner.plannerTask summary: Get details from planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.tasks_GetDetails parameters: - name: plannerTask-id @@ -7578,6 +7722,7 @@ paths: tags: - planner.plannerTask summary: Update the navigation property details in planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.tasks_UpdateDetails parameters: - name: plannerTask-id @@ -7604,6 +7749,7 @@ paths: tags: - planner.plannerTask summary: Delete navigation property details for planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.tasks_DeleteDetails parameters: - name: plannerTask-id @@ -7629,6 +7775,7 @@ paths: tags: - planner.plannerTask summary: Get progressTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.tasks_GetProgressTaskBoardFormat parameters: - name: plannerTask-id @@ -7677,6 +7824,7 @@ paths: tags: - planner.plannerTask summary: Update the navigation property progressTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.tasks_UpdateProgressTaskBoardFormat parameters: - name: plannerTask-id @@ -7703,6 +7851,7 @@ paths: tags: - planner.plannerTask summary: Delete navigation property progressTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.tasks_DeleteProgressTaskBoardFormat parameters: - name: plannerTask-id @@ -7728,6 +7877,7 @@ paths: tags: - users.plannerUser summary: Get planner from users + description: Selective Planner services available to the user. Read-only. Nullable. operationId: users_GetPlanner parameters: - name: user-id @@ -7814,6 +7964,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property planner in users + description: Selective Planner services available to the user. Read-only. Nullable. operationId: users_UpdatePlanner parameters: - name: user-id @@ -7840,6 +7991,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property planner for users + description: Selective Planner services available to the user. Read-only. Nullable. operationId: users_DeletePlanner parameters: - name: user-id @@ -8093,6 +8245,7 @@ paths: tags: - users.plannerUser summary: Get favoritePlans from users + description: Read-only. Nullable. Returns the plannerPlans that the user marked as favorites. operationId: users.planner_ListFavoritePlans parameters: - name: user-id @@ -8196,6 +8349,7 @@ paths: tags: - users.plannerUser summary: Get ref of favoritePlans from users + description: Read-only. Nullable. Returns the plannerPlans that the user marked as favorites. operationId: users.planner_ListRefFavoritePlans parameters: - name: user-id @@ -8262,6 +8416,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property ref to favoritePlans for users + description: Read-only. Nullable. Returns the plannerPlans that the user marked as favorites. operationId: users.planner_CreateRefFavoritePlans parameters: - name: user-id @@ -8297,6 +8452,7 @@ paths: tags: - users.plannerUser summary: Get plans from users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_ListPlans parameters: - name: user-id @@ -8399,6 +8555,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property to plans for users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_CreatePlans parameters: - name: user-id @@ -8430,6 +8587,7 @@ paths: tags: - users.plannerUser summary: Get plans from users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_GetPlans parameters: - name: user-id @@ -8512,6 +8670,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property plans in users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_UpdatePlans parameters: - name: user-id @@ -8545,6 +8704,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property plans for users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_DeletePlans parameters: - name: user-id @@ -8577,6 +8737,7 @@ paths: tags: - users.plannerUser summary: Get buckets from users + description: Collection of buckets in the plan. Read-only. Nullable. operationId: users.planner.plans_ListBuckets parameters: - name: user-id @@ -8673,6 +8834,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property to buckets for users + description: Collection of buckets in the plan. Read-only. Nullable. operationId: users.planner.plans_CreateBuckets parameters: - name: user-id @@ -8711,6 +8873,7 @@ paths: tags: - users.plannerUser summary: Get buckets from users + description: Collection of buckets in the plan. Read-only. Nullable. operationId: users.planner.plans_GetBuckets parameters: - name: user-id @@ -8784,6 +8947,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property buckets in users + description: Collection of buckets in the plan. Read-only. Nullable. operationId: users.planner.plans_UpdateBuckets parameters: - name: user-id @@ -8824,6 +8988,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property buckets for users + description: Collection of buckets in the plan. Read-only. Nullable. operationId: users.planner.plans_DeleteBuckets parameters: - name: user-id @@ -8863,6 +9028,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: users.planner.plans.buckets_ListTasks parameters: - name: user-id @@ -9029,6 +9195,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property to tasks for users + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: users.planner.plans.buckets_CreateTasks parameters: - name: user-id @@ -9074,6 +9241,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: users.planner.plans.buckets_GetTasks parameters: - name: user-id @@ -9201,6 +9369,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property tasks in users + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: users.planner.plans.buckets_UpdateTasks parameters: - name: user-id @@ -9248,6 +9417,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property tasks for users + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: users.planner.plans.buckets_DeleteTasks parameters: - name: user-id @@ -9294,6 +9464,7 @@ paths: tags: - users.plannerUser summary: Get assignedToTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.buckets.tasks_GetAssignedToTaskBoardFormat parameters: - name: user-id @@ -9364,6 +9535,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property assignedToTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.buckets.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: user-id @@ -9411,6 +9583,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property assignedToTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.buckets.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: user-id @@ -9457,6 +9630,7 @@ paths: tags: - users.plannerUser summary: Get bucketTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.buckets.tasks_GetBucketTaskBoardFormat parameters: - name: user-id @@ -9526,6 +9700,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property bucketTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.buckets.tasks_UpdateBucketTaskBoardFormat parameters: - name: user-id @@ -9573,6 +9748,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property bucketTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.buckets.tasks_DeleteBucketTaskBoardFormat parameters: - name: user-id @@ -9619,6 +9795,7 @@ paths: tags: - users.plannerUser summary: Get details from users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.buckets.tasks_GetDetails parameters: - name: user-id @@ -9691,6 +9868,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property details in users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.buckets.tasks_UpdateDetails parameters: - name: user-id @@ -9738,6 +9916,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property details for users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.buckets.tasks_DeleteDetails parameters: - name: user-id @@ -9784,6 +9963,7 @@ paths: tags: - users.plannerUser summary: Get progressTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.buckets.tasks_GetProgressTaskBoardFormat parameters: - name: user-id @@ -9853,6 +10033,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property progressTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.buckets.tasks_UpdateProgressTaskBoardFormat parameters: - name: user-id @@ -9900,6 +10081,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property progressTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.buckets.tasks_DeleteProgressTaskBoardFormat parameters: - name: user-id @@ -9946,6 +10128,7 @@ paths: tags: - users.plannerUser summary: Get details from users + description: Additional details about the plan. Read-only. Nullable. operationId: users.planner.plans_GetDetails parameters: - name: user-id @@ -10003,6 +10186,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property details in users + description: Additional details about the plan. Read-only. Nullable. operationId: users.planner.plans_UpdateDetails parameters: - name: user-id @@ -10036,6 +10220,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property details for users + description: Additional details about the plan. Read-only. Nullable. operationId: users.planner.plans_DeleteDetails parameters: - name: user-id @@ -10068,6 +10253,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Collection of tasks in the plan. Read-only. Nullable. operationId: users.planner.plans_ListTasks parameters: - name: user-id @@ -10227,6 +10413,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property to tasks for users + description: Collection of tasks in the plan. Read-only. Nullable. operationId: users.planner.plans_CreateTasks parameters: - name: user-id @@ -10265,6 +10452,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Collection of tasks in the plan. Read-only. Nullable. operationId: users.planner.plans_GetTasks parameters: - name: user-id @@ -10381,6 +10569,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property tasks in users + description: Collection of tasks in the plan. Read-only. Nullable. operationId: users.planner.plans_UpdateTasks parameters: - name: user-id @@ -10421,6 +10610,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property tasks for users + description: Collection of tasks in the plan. Read-only. Nullable. operationId: users.planner.plans_DeleteTasks parameters: - name: user-id @@ -10460,6 +10650,7 @@ paths: tags: - users.plannerUser summary: Get assignedToTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.tasks_GetAssignedToTaskBoardFormat parameters: - name: user-id @@ -10523,6 +10714,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property assignedToTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: user-id @@ -10563,6 +10755,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property assignedToTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: user-id @@ -10602,6 +10795,7 @@ paths: tags: - users.plannerUser summary: Get bucketTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.tasks_GetBucketTaskBoardFormat parameters: - name: user-id @@ -10664,6 +10858,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property bucketTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.tasks_UpdateBucketTaskBoardFormat parameters: - name: user-id @@ -10704,6 +10899,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property bucketTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.tasks_DeleteBucketTaskBoardFormat parameters: - name: user-id @@ -10743,6 +10939,7 @@ paths: tags: - users.plannerUser summary: Get details from users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.tasks_GetDetails parameters: - name: user-id @@ -10808,6 +11005,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property details in users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.tasks_UpdateDetails parameters: - name: user-id @@ -10848,6 +11046,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property details for users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.tasks_DeleteDetails parameters: - name: user-id @@ -10887,6 +11086,7 @@ paths: tags: - users.plannerUser summary: Get progressTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.tasks_GetProgressTaskBoardFormat parameters: - name: user-id @@ -10949,6 +11149,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property progressTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.tasks_UpdateProgressTaskBoardFormat parameters: - name: user-id @@ -10989,6 +11190,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property progressTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.tasks_DeleteProgressTaskBoardFormat parameters: - name: user-id @@ -11028,6 +11230,7 @@ paths: tags: - users.plannerUser summary: Get recentPlans from users + description: Read-only. Nullable. Returns the plannerPlans that have been recently viewed by the user in apps that support recent plans. operationId: users.planner_ListRecentPlans parameters: - name: user-id @@ -11131,6 +11334,7 @@ paths: tags: - users.plannerUser summary: Get ref of recentPlans from users + description: Read-only. Nullable. Returns the plannerPlans that have been recently viewed by the user in apps that support recent plans. operationId: users.planner_ListRefRecentPlans parameters: - name: user-id @@ -11197,6 +11401,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property ref to recentPlans for users + description: Read-only. Nullable. Returns the plannerPlans that have been recently viewed by the user in apps that support recent plans. operationId: users.planner_CreateRefRecentPlans parameters: - name: user-id @@ -11232,6 +11437,7 @@ paths: tags: - users.plannerUser summary: Get rosterPlans from users + description: Read-only. Nullable. Returns the plannerPlans contained by the plannerRosters the user is a member. operationId: users.planner_ListRosterPlans parameters: - name: user-id @@ -11335,6 +11541,7 @@ paths: tags: - users.plannerUser summary: Get ref of rosterPlans from users + description: Read-only. Nullable. Returns the plannerPlans contained by the plannerRosters the user is a member. operationId: users.planner_ListRefRosterPlans parameters: - name: user-id @@ -11401,6 +11608,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property ref to rosterPlans for users + description: Read-only. Nullable. Returns the plannerPlans contained by the plannerRosters the user is a member. operationId: users.planner_CreateRefRosterPlans parameters: - name: user-id @@ -11436,6 +11644,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_ListTasks parameters: - name: user-id @@ -11588,6 +11797,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property to tasks for users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_CreateTasks parameters: - name: user-id @@ -11619,6 +11829,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_GetTasks parameters: - name: user-id @@ -11724,6 +11935,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property tasks in users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_UpdateTasks parameters: - name: user-id @@ -11757,6 +11969,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property tasks for users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_DeleteTasks parameters: - name: user-id @@ -11789,6 +12002,7 @@ paths: tags: - users.plannerUser summary: Get assignedToTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.tasks_GetAssignedToTaskBoardFormat parameters: - name: user-id @@ -11845,6 +12059,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property assignedToTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: user-id @@ -11878,6 +12093,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property assignedToTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: user-id @@ -11910,6 +12126,7 @@ paths: tags: - users.plannerUser summary: Get bucketTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.tasks_GetBucketTaskBoardFormat parameters: - name: user-id @@ -11965,6 +12182,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property bucketTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.tasks_UpdateBucketTaskBoardFormat parameters: - name: user-id @@ -11998,6 +12216,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property bucketTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.tasks_DeleteBucketTaskBoardFormat parameters: - name: user-id @@ -12030,6 +12249,7 @@ paths: tags: - users.plannerUser summary: Get details from users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.tasks_GetDetails parameters: - name: user-id @@ -12088,6 +12308,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property details in users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.tasks_UpdateDetails parameters: - name: user-id @@ -12121,6 +12342,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property details for users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.tasks_DeleteDetails parameters: - name: user-id @@ -12153,6 +12375,7 @@ paths: tags: - users.plannerUser summary: Get progressTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.tasks_GetProgressTaskBoardFormat parameters: - name: user-id @@ -12208,6 +12431,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property progressTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.tasks_UpdateProgressTaskBoardFormat parameters: - name: user-id @@ -12241,6 +12465,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property progressTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.tasks_DeleteProgressTaskBoardFormat parameters: - name: user-id diff --git a/openApiDocs/beta/Reports.yml b/openApiDocs/beta/Reports.yml index 65370976527..899d304ee18 100644 --- a/openApiDocs/beta/Reports.yml +++ b/openApiDocs/beta/Reports.yml @@ -91,6 +91,7 @@ paths: tags: - auditLogs.directoryAudit summary: Get directoryAudits from auditLogs + description: Read-only. Nullable. operationId: auditLogs_ListDirectoryAudits parameters: - $ref: '#/components/parameters/top' @@ -195,6 +196,7 @@ paths: tags: - auditLogs.directoryAudit summary: Create new navigation property to directoryAudits for auditLogs + description: Read-only. Nullable. operationId: auditLogs_CreateDirectoryAudits requestBody: description: New navigation property @@ -218,6 +220,7 @@ paths: tags: - auditLogs.directoryAudit summary: Get directoryAudits from auditLogs + description: Read-only. Nullable. operationId: auditLogs_GetDirectoryAudits parameters: - name: directoryAudit-id @@ -276,6 +279,7 @@ paths: tags: - auditLogs.directoryAudit summary: Update the navigation property directoryAudits in auditLogs + description: Read-only. Nullable. operationId: auditLogs_UpdateDirectoryAudits parameters: - name: directoryAudit-id @@ -302,6 +306,7 @@ paths: tags: - auditLogs.directoryAudit summary: Delete navigation property directoryAudits for auditLogs + description: Read-only. Nullable. operationId: auditLogs_DeleteDirectoryAudits parameters: - name: directoryAudit-id @@ -362,6 +367,10 @@ paths: - jobId desc - modifiedProperties - modifiedProperties desc + - provisioningAction + - provisioningAction desc + - provisioningStatusInfo + - provisioningStatusInfo desc - provisioningSteps - provisioningSteps desc - servicePrincipal @@ -398,6 +407,8 @@ paths: - initiatedBy - jobId - modifiedProperties + - provisioningAction + - provisioningStatusInfo - provisioningSteps - servicePrincipal - sourceIdentity @@ -497,6 +508,8 @@ paths: - initiatedBy - jobId - modifiedProperties + - provisioningAction + - provisioningStatusInfo - provisioningSteps - servicePrincipal - sourceIdentity @@ -618,6 +631,10 @@ paths: - jobId desc - modifiedProperties - modifiedProperties desc + - provisioningAction + - provisioningAction desc + - provisioningStatusInfo + - provisioningStatusInfo desc - provisioningSteps - provisioningSteps desc - servicePrincipal @@ -654,6 +671,8 @@ paths: - initiatedBy - jobId - modifiedProperties + - provisioningAction + - provisioningStatusInfo - provisioningSteps - servicePrincipal - sourceIdentity @@ -753,6 +772,8 @@ paths: - initiatedBy - jobId - modifiedProperties + - provisioningAction + - provisioningStatusInfo - provisioningSteps - servicePrincipal - sourceIdentity @@ -1219,6 +1240,7 @@ paths: tags: - auditLogs.signIn summary: Get signIns from auditLogs + description: Read-only. Nullable. operationId: auditLogs_ListSignIns parameters: - $ref: '#/components/parameters/top' @@ -1428,6 +1450,7 @@ paths: tags: - auditLogs.signIn summary: Create new navigation property to signIns for auditLogs + description: Read-only. Nullable. operationId: auditLogs_CreateSignIns requestBody: description: New navigation property @@ -1451,6 +1474,7 @@ paths: tags: - auditLogs.signIn summary: Get signIns from auditLogs + description: Read-only. Nullable. operationId: auditLogs_GetSignIns parameters: - name: signIn-id @@ -1544,6 +1568,7 @@ paths: tags: - auditLogs.signIn summary: Update the navigation property signIns in auditLogs + description: Read-only. Nullable. operationId: auditLogs_UpdateSignIns parameters: - name: signIn-id @@ -1570,6 +1595,7 @@ paths: tags: - auditLogs.signIn summary: Delete navigation property signIns for auditLogs + description: Read-only. Nullable. operationId: auditLogs_DeleteSignIns parameters: - name: signIn-id @@ -1595,6 +1621,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Get reports from deviceManagement + description: Reports singleton operationId: deviceManagement_GetReports parameters: - name: $select @@ -1648,6 +1675,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Update the navigation property reports in deviceManagement + description: Reports singleton operationId: deviceManagement_UpdateReports requestBody: description: New navigation property values @@ -1666,6 +1694,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Delete navigation property reports for deviceManagement + description: Reports singleton operationId: deviceManagement_DeleteReports parameters: - name: If-Match @@ -1684,6 +1713,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Get cachedReportConfigurations from deviceManagement + description: Entity representing the configuration of a cached report operationId: deviceManagement.reports_ListCachedReportConfigurations parameters: - $ref: '#/components/parameters/top' @@ -1779,6 +1809,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Create new navigation property to cachedReportConfigurations for deviceManagement + description: Entity representing the configuration of a cached report operationId: deviceManagement.reports_CreateCachedReportConfigurations requestBody: description: New navigation property @@ -1802,6 +1833,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Get cachedReportConfigurations from deviceManagement + description: Entity representing the configuration of a cached report operationId: deviceManagement.reports_GetCachedReportConfigurations parameters: - name: deviceManagementCachedReportConfiguration-id @@ -1857,6 +1889,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Update the navigation property cachedReportConfigurations in deviceManagement + description: Entity representing the configuration of a cached report operationId: deviceManagement.reports_UpdateCachedReportConfigurations parameters: - name: deviceManagementCachedReportConfiguration-id @@ -1883,6 +1916,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Delete navigation property cachedReportConfigurations for deviceManagement + description: Entity representing the configuration of a cached report operationId: deviceManagement.reports_DeleteCachedReportConfigurations parameters: - name: deviceManagementCachedReportConfiguration-id @@ -1908,6 +1942,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Get exportJobs from deviceManagement + description: Entity representing a job to export a report operationId: deviceManagement.reports_ListExportJobs parameters: - $ref: '#/components/parameters/top' @@ -2009,6 +2044,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Create new navigation property to exportJobs for deviceManagement + description: Entity representing a job to export a report operationId: deviceManagement.reports_CreateExportJobs requestBody: description: New navigation property @@ -2032,6 +2068,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Get exportJobs from deviceManagement + description: Entity representing a job to export a report operationId: deviceManagement.reports_GetExportJobs parameters: - name: deviceManagementExportJob-id @@ -2089,6 +2126,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Update the navigation property exportJobs in deviceManagement + description: Entity representing a job to export a report operationId: deviceManagement.reports_UpdateExportJobs parameters: - name: deviceManagementExportJob-id @@ -2115,6 +2153,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Delete navigation property exportJobs for deviceManagement + description: Entity representing a job to export a report operationId: deviceManagement.reports_DeleteExportJobs parameters: - name: deviceManagementExportJob-id @@ -2140,6 +2179,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Get reportSchedules from deviceManagement + description: Entity representing a schedule for which reports are delivered operationId: deviceManagement.reports_ListReportSchedules parameters: - $ref: '#/components/parameters/top' @@ -2247,6 +2287,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Create new navigation property to reportSchedules for deviceManagement + description: Entity representing a schedule for which reports are delivered operationId: deviceManagement.reports_CreateReportSchedules requestBody: description: New navigation property @@ -2270,6 +2311,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Get reportSchedules from deviceManagement + description: Entity representing a schedule for which reports are delivered operationId: deviceManagement.reports_GetReportSchedules parameters: - name: deviceManagementReportSchedule-id @@ -2329,6 +2371,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Update the navigation property reportSchedules in deviceManagement + description: Entity representing a schedule for which reports are delivered operationId: deviceManagement.reports_UpdateReportSchedules parameters: - name: deviceManagementReportSchedule-id @@ -2355,6 +2398,7 @@ paths: tags: - deviceManagement.deviceManagementReports summary: Delete navigation property reportSchedules for deviceManagement + description: Entity representing a schedule for which reports are delivered operationId: deviceManagement.reports_DeleteReportSchedules parameters: - name: deviceManagementReportSchedule-id @@ -3934,6 +3978,7 @@ paths: tags: - reports.Functions summary: Invoke function deviceConfigurationDeviceActivity + description: Metadata for the device configuration device activity report operationId: reports_deviceConfigurationDeviceActivity responses: '200': @@ -3950,6 +3995,7 @@ paths: tags: - reports.Functions summary: Invoke function deviceConfigurationUserActivity + description: Metadata for the device configuration user activity report operationId: reports_deviceConfigurationUserActivity responses: '200': @@ -6613,6 +6659,7 @@ paths: tags: - reports.Functions summary: Invoke function managedDeviceEnrollmentAbandonmentDetails + description: Metadata for Enrollment abandonment details report operationId: reports_managedDeviceEnrollmentAbandonmentDetails parameters: - name: skip @@ -6664,6 +6711,7 @@ paths: tags: - reports.Functions summary: Invoke function managedDeviceEnrollmentAbandonmentSummary + description: Metadata for Enrollment abandonment summary report operationId: reports_managedDeviceEnrollmentAbandonmentSummary parameters: - name: skip @@ -6782,6 +6830,7 @@ paths: tags: - reports.Functions summary: Invoke function managedDeviceEnrollmentFailureTrends + description: Metadata for the enrollment failure trends report operationId: reports_managedDeviceEnrollmentFailureTrends responses: '200': @@ -7989,7 +8038,6 @@ components: properties: action: type: string - description: 'Indicates the activity name or the operation name (for example, Create user, Add member to group). For a list of activities logged, refer to Azure AD activity list.' nullable: true 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])$' @@ -8022,6 +8070,10 @@ components: 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: @@ -8032,13 +8084,13 @@ components: sourceIdentity: $ref: '#/components/schemas/microsoft.graph.provisionedIdentity' sourceSystem: - $ref: '#/components/schemas/microsoft.graph.provisioningSystemDetails' + $ref: '#/components/schemas/microsoft.graph.provisioningSystem' statusInfo: $ref: '#/components/schemas/microsoft.graph.statusBase' targetIdentity: $ref: '#/components/schemas/microsoft.graph.provisionedIdentity' targetSystem: - $ref: '#/components/schemas/microsoft.graph.provisioningSystemDetails' + $ref: '#/components/schemas/microsoft.graph.provisioningSystem' tenantId: type: string description: Unique Azure AD tenant ID. @@ -8066,15 +8118,15 @@ components: properties: alternateSignInName: type: string - description: The alternate sign-in identity whenever you use phone number to sign-in. + description: The alternate sign-in identity whenever you use phone number to sign-in. Supports $filter (eq and startsWith operators only). nullable: true appDisplayName: type: string - description: The application name displayed in the Azure Portal. + description: The application name displayed in the Azure Portal. Supports $filter (eq and startsWith operators only). nullable: true appId: type: string - description: The application identifier in Azure Active Directory. + description: The application identifier in Azure Active Directory. Supports $filter (eq operator only). nullable: true appliedConditionalAccessPolicies: type: array @@ -8099,7 +8151,7 @@ components: description: 'Additional authentication processing details, such as the agent name in case of PTA/PHS or Server/farm name in case of federated authentication.' authenticationRequirement: type: string - description: 'This holds the highest level of authentication needed through all the sign-in steps, for sign-in to succeed.' + description: 'This holds the highest level of authentication needed through all the sign-in steps, for sign-in to succeed. Supports $filter (eq and startsWith operators only).' nullable: true authenticationRequirementPolicies: type: array @@ -8107,18 +8159,18 @@ 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. Supports $filter (eq operator only).' nullable: true conditionalAccessStatus: $ref: '#/components/schemas/microsoft.graph.conditionalAccessStatus' correlationId: type: string - description: The identifier that's sent from the client when sign-in is initiated. This is used for troubleshooting the corresponding sign-in activity when calling for support. + description: The identifier that's sent from the client when sign-in is initiated. This is used for troubleshooting the corresponding sign-in activity when calling for support. Supports $filter (eq operator only). 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 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.' + 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. Supports $orderby and $filter (eq, le, and ge operators only).' format: date-time deviceDetail: $ref: '#/components/schemas/microsoft.graph.deviceDetail' @@ -8130,7 +8182,7 @@ components: nullable: true ipAddress: type: string - description: The IP address of the client from where the sign-in occurred. + description: The IP address of the client from where the sign-in occurred. Supports $filter (eq and startsWith operators only). nullable: true ipAddressFromResourceProvider: type: string @@ -8150,7 +8202,7 @@ components: 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. + description: The request identifier of the first request in the authentication sequence. Supports $filter (eq operator only). nullable: true processingTimeInMilliseconds: maximum: 2147483647 @@ -8161,11 +8213,11 @@ components: nullable: true resourceDisplayName: type: string - description: The name of the resource that the user signed in to. + description: The name of the resource that the user signed in to. Supports $filter (eq operator only). nullable: true resourceId: type: string - description: The identifier of the resource that the user signed in to. + description: The identifier of the resource that the user signed in to. Supports $filter (eq operator only). nullable: true resourceTenantId: type: string @@ -8176,13 +8228,13 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.riskEventType' - description: 'The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue.' + description: 'The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue. Supports $filter (eq operator only).' riskEventTypes_v2: type: array items: type: string nullable: true - description: 'The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue.' + description: 'The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue. Supports $filter (eq and startsWith operators only).' riskLevelAggregated: $ref: '#/components/schemas/microsoft.graph.riskLevel' riskLevelDuringSignIn: @@ -8191,10 +8243,10 @@ components: $ref: '#/components/schemas/microsoft.graph.riskState' servicePrincipalId: type: string - description: The application identifier used for sign-in. This field is populated when you are signing in using an application. + description: The application identifier used for sign-in. This field is populated when you are signing in using an application. Supports $filter (eq and startsWith operators only). servicePrincipalName: type: string - description: The application name used for sign-in. This field is populated when you are signing in using an application. + description: The application name used for sign-in. This field is populated when you are signing in using an application. Supports $filter (eq and startsWith operators only). nullable: true signInEventTypes: type: array @@ -8210,24 +8262,24 @@ components: $ref: '#/components/schemas/microsoft.graph.signInStatus' tokenIssuerName: type: string - description: 'The name of the identity provider. For example, sts.microsoft.com.' + description: 'The name of the identity provider. For example, sts.microsoft.com. Supports $filter (eq operator only).' nullable: true tokenIssuerType: $ref: '#/components/schemas/microsoft.graph.tokenIssuerType' userAgent: type: string - description: The user agent information related to sign-in. + description: The user agent information related to sign-in. Supports $filter (eq and startsWith operators only). nullable: true userDisplayName: type: string - description: The display name of the user. + description: The display name of the user. Supports $filter (eq and startsWith operators only). nullable: true userId: type: string - description: The identifier of the user. + description: The identifier of the user. Supports $filter (eq operator only). userPrincipalName: type: string - description: The UPN of the user. + description: The UPN of the user. Supports $filter (eq and startsWith operators only). nullable: true userType: $ref: '#/components/schemas/microsoft.graph.signInUserType' @@ -11216,42 +11268,52 @@ components: properties: androidPhone: type: integer + description: The number of users who were active on the Teams mobile client for Android. format: int64 nullable: true chromeOS: type: integer + description: The number of users who were active in the Teams desktop client on a ChromeOS computer. format: int64 nullable: true ios: type: integer + description: The number of users who were active on the Teams mobile client for iOS. format: int64 nullable: true linux: type: integer + description: The number of users who were active in the Teams desktop client on a Linux computer. format: int64 nullable: true mac: type: integer + description: The number of users who were active in the Teams desktop client on a macOS computer. format: int64 nullable: true reportPeriod: type: string + description: The number of days the report covers. nullable: true reportRefreshDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The latest date of the content. format: date nullable: true web: type: integer + description: The number of users who were active in the Teams web client on devices. format: int64 nullable: true windows: type: integer + description: The number of users who were active in the Teams desktop client on a Windows-based computer. format: int64 nullable: true windowsPhone: type: integer + description: The number of users who were active on the Teams mobile client for Windows phone. format: int64 nullable: true additionalProperties: @@ -11264,47 +11326,58 @@ components: properties: androidPhone: type: integer + description: The number of users who were active on the Teams mobile client for Android. format: int64 nullable: true chromeOS: type: integer + description: The number of users who were active in the Teams desktop client on a ChromeOS computer. format: int64 nullable: true ios: type: integer + description: The number of users who were active on the Teams mobile client for iOS. format: int64 nullable: true linux: type: integer + description: The number of users who were active in the Teams desktop client on a Linux computer. format: int64 nullable: true mac: type: integer + description: The number of users who were active in the Teams desktop client on a macOS computer. format: int64 nullable: true reportDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The date on which the users performed the activities. format: date nullable: true reportPeriod: type: string + description: The number of days the report covers. nullable: true reportRefreshDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The latest date of the content. format: date nullable: true web: type: integer + description: The number of users who were active in the Teams web client on devices. format: int64 nullable: true windows: type: integer + description: The number of users who were active in the Teams desktop client on a Windows-based computer. format: int64 nullable: true windowsPhone: type: integer + description: The number of users who were active on the Teams mobile client for Windows phone. format: int64 nullable: true additionalProperties: @@ -11318,53 +11391,68 @@ components: deletedDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The date when the delete operation happened. Default value is 'null' when the user has not been deleted. format: date nullable: true isDeleted: type: boolean + description: Whether this user has been deleted or soft deleted. nullable: true isLicensed: type: boolean + description: Whether the user has been assigned a Teams license. nullable: true lastActivityDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The last date that the user participated in a Microsoft Teams activity. format: date nullable: true reportPeriod: type: string + description: The number of days the report covers. nullable: true reportRefreshDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The latest date of the content. format: date nullable: true usedAndroidPhone: type: boolean + description: Whether the user was active on the Teams mobile client for Android. nullable: true usedChromeOS: type: boolean + description: Whether the user was active in the Teams desktop client on a ChromeOS computer. nullable: true usediOS: type: boolean + description: Whether the user was active on the Teams mobile client for iOS. nullable: true usedLinux: type: boolean + description: Whether the user was active in the Teams desktop client on a Linux computer. nullable: true usedMac: type: boolean + description: Whether the user was active in the Teams desktop client on a macOS computer. nullable: true usedWeb: type: boolean + description: Whether the user was active in the Teams web client on devices. nullable: true usedWindows: type: boolean + description: Whether the user was active in the Teams desktop client on a Windows-based computer. nullable: true usedWindowsPhone: type: boolean + description: Whether the user was active on the Teams mobile client for Windows phone. nullable: true userPrincipalName: type: string + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant’s collection of verified domains. This property is required when a user is created.' nullable: true additionalProperties: type: object @@ -11376,31 +11464,38 @@ components: properties: calls: type: integer + description: The number of unique 1:1 calls that users participated in. format: int64 nullable: true meetings: type: integer + description: The number of unique online meetings that users participated in. format: int64 nullable: true privateChatMessages: type: integer + description: The number of unique messages that users posted in a private chat. format: int64 nullable: true reportDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The date on which the users performed the activities. format: date nullable: true reportPeriod: type: string + description: The number of days the report covers. nullable: true reportRefreshDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The latest date of the content. format: date nullable: true teamChatMessages: type: integer + description: The number of unique messages that users posted in a team chat. format: int64 nullable: true additionalProperties: @@ -11413,26 +11508,32 @@ components: properties: calls: type: integer + description: The number of unique 1:1 calls that users participated in. format: int64 nullable: true meetings: type: integer + description: The number of unique online meetings that users participated in. format: int64 nullable: true privateChatMessages: type: integer + description: The number of unique messages that users posted in a private chat. format: int64 nullable: true reportPeriod: type: string + description: The number of days the report covers. nullable: true reportRefreshDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The latest date of the content. format: date nullable: true teamChatMessages: type: integer + description: The number of unique messages that users posted in a team chat. format: int64 nullable: true additionalProperties: @@ -11445,35 +11546,43 @@ components: properties: calls: type: integer + description: The number of users who participated in 1:1 calls. format: int64 nullable: true meetings: type: integer + description: The number of users who participated in online meetings. format: int64 nullable: true otherActions: type: integer + description: 'The number of users who were active but performed other activities than exposed action types offered in the report (sending or replying to channel messages and chat messages, scheduling or participating in 1:1 calls and meetings). Examples actions are when a user changes the Teams status or the Teams status message or opens a Channel Message post but does not reply.' format: int64 nullable: true privateChatMessages: type: integer + description: The number of users who posted message in a private chat. format: int64 nullable: true reportDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The date on which the users performed the activities. format: date nullable: true reportPeriod: type: string + description: The number of days the report covers. nullable: true reportRefreshDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The latest date of the content. format: date nullable: true teamChatMessages: type: integer + description: The number of users who posted message in a team chat. format: int64 nullable: true additionalProperties: @@ -11486,10 +11595,12 @@ components: properties: adHocMeetingsAttendedCount: type: integer + description: The number of ad hoc meetings a user participated in. format: int64 nullable: true adHocMeetingsOrganizedCount: type: integer + description: The number of ad hoc meetings a user organized. format: int64 nullable: true assignedProducts: @@ -11497,89 +11608,111 @@ components: items: type: string nullable: true + description: Products the user assigned with. audioDuration: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string + description: Audio duration the user participated in. format: duration nullable: true callCount: type: integer + description: The number of 1:1 calls that the user participated in. format: int64 nullable: true deletedDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The date when the delete operation happened. Default value is 'null' when the user has not been deleted. format: date nullable: true hasOtherAction: type: boolean + description: 'The User is active but has performed other activities than exposed action types offered in the report (sending or replying to channel messages and chat messages, scheduling or participating in 1:1 calls and meetings). Examples actions are when a user changes the Teams status or the Teams status message or opens a Channel Message post but does not reply.' nullable: true isDeleted: type: boolean + description: Whether this user has been deleted or soft deleted. nullable: true isLicensed: type: boolean + description: Whether the user has been assigned a Teams license. nullable: true lastActivityDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The last date that the user participated in a Microsoft Teams activity. format: date nullable: true meetingCount: type: integer + description: The number of online meetings that the user participated in. format: int64 nullable: true meetingsAttendedCount: type: integer + description: 'The sum of the one-time scheduled, recurring, ad hoc and unclassified meetings a user participated in.' format: int64 nullable: true meetingsOrganizedCount: type: integer + description: 'The sum of one-time scheduled, Recurring, ad hoc and unclassified meetings a user organized.' format: int64 nullable: true privateChatMessageCount: type: integer + description: The number of unique messages that the user posted in a private chat. format: int64 nullable: true reportPeriod: type: string + description: The number of days the report covers. nullable: true reportRefreshDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The latest date of the content. format: date nullable: true scheduledOneTimeMeetingsAttendedCount: type: integer + description: The number of the one-time scheduled meetings a user participated in. format: int64 nullable: true scheduledOneTimeMeetingsOrganizedCount: type: integer + description: The number of one-time scheduled meetings a user organized. format: int64 nullable: true scheduledRecurringMeetingsAttendedCount: type: integer + description: The number of the recurring meetings a user participated in. format: int64 nullable: true scheduledRecurringMeetingsOrganizedCount: type: integer + description: The number of recurring meetings a user organized. format: int64 nullable: true screenShareDuration: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string + description: Screen sharing duration the user participated in. format: duration nullable: true teamChatMessageCount: type: integer + description: The number of unique messages that the user posted in a team chat. format: int64 nullable: true userPrincipalName: type: string + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant’s collection of verified domains. This property is required when a user is created.' nullable: true videoDuration: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string + description: Video duration the user participated in. format: duration nullable: true additionalProperties: @@ -11992,11 +12125,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -12048,21 +12181,15 @@ components: additionalProperties: type: object microsoft.graph.initiator: - title: initiator - type: object - properties: - displayName: - type: string - description: Name of the person or service that initiated the provisioning event. - nullable: true - id: - type: string - description: Uniquely identifies the person or service that initiated the provisioning event. - nullable: true - initiatorType: - $ref: '#/components/schemas/microsoft.graph.initiatorType' - additionalProperties: - type: object + 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 @@ -12081,6 +12208,27 @@ components: 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 @@ -12109,41 +12257,29 @@ components: additionalProperties: type: object microsoft.graph.provisionedIdentity: - title: provisionedIdentity - type: object - properties: - details: - $ref: '#/components/schemas/microsoft.graph.detailsInfo' - displayName: - type: string - description: Display name of the identity. - nullable: true - id: - type: string - description: Uniquely identifies the identity. - nullable: true - identityType: - type: string - description: 'Type of identity that has been provisioned, such as ''user'' or ''group''.' - nullable: true - additionalProperties: - type: object - microsoft.graph.provisioningSystemDetails: - title: provisioningSystemDetails - type: object - properties: - details: - $ref: '#/components/schemas/microsoft.graph.detailsInfo' - displayName: - type: string - description: Name of the system that a user was provisioned to or from. - nullable: true - id: - type: string - description: Identifier of the system that a user was provisioned to or from. - nullable: true - additionalProperties: - type: object + 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.statusBase: title: statusBase type: object @@ -12176,10 +12312,18 @@ components: type: string nullable: true description: 'Refers to the session controls enforced by the conditional access policy (example: ''Require app enforced controls'').' + excludeRulesSatisfied: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.conditionalAccessRuleSatisfied' id: type: string description: Identifier of the conditional access policy. nullable: true + includeRulesSatisfied: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.conditionalAccessRuleSatisfied' result: $ref: '#/components/schemas/microsoft.graph.appliedConditionalAccessPolicyResult' additionalProperties: @@ -12690,10 +12834,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -12735,14 +12879,61 @@ components: - azureAD - unknownFutureValue type: string + 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.initiatorType: title: initiatorType enum: - user - - app + - application - system - unknownFutureValue type: string + microsoft.graph.provisioningErrorInfo: + title: provisioningErrorInfo + type: object + properties: + additionalDetails: + type: string + description: Additional details in case of error. + nullable: true + errorCategory: + $ref: '#/components/schemas/microsoft.graph.provisioningStatusErrorCategory' + errorCode: + type: string + description: Unique error code if any occurred. Learn more + nullable: true + reason: + type: string + description: Summarizes the status and describes why the status happened. + nullable: true + recommendedAction: + type: string + description: Provides the resolution for the corresponding error. + 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 @@ -12759,29 +12950,6 @@ components: - export - unknownFutureValue type: string - microsoft.graph.provisioningResult: - title: provisioningResult - enum: - - success - - failure - - skipped - - warning - - unknownFutureValue - type: string - 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.conditionalAccessConditions: title: conditionalAccessConditions enum: @@ -12796,7 +12964,20 @@ components: - time - deviceState - client + - ipAddressSeenByAzureAD + - ipAddressSeenByResourceProvider + - unknownFutureValue type: string + microsoft.graph.conditionalAccessRuleSatisfied: + title: conditionalAccessRuleSatisfied + type: object + properties: + conditionalAccessCondition: + $ref: '#/components/schemas/microsoft.graph.conditionalAccessConditions' + ruleSatisfied: + $ref: '#/components/schemas/microsoft.graph.conditionalAccessRule' + additionalProperties: + type: object microsoft.graph.appliedConditionalAccessPolicyResult: title: appliedConditionalAccessPolicyResult enum: @@ -12865,6 +13046,7 @@ components: - namedNetwork - trusted - unknownFutureValue + - trustedNamedLocation type: string microsoft.graph.authenticationMethodFeature: title: authenticationMethodFeature @@ -12907,6 +13089,39 @@ 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 + microsoft.graph.conditionalAccessRule: + title: conditionalAccessRule + enum: + - allApps + - firstPartyApps + - office365 + - appId + - acr + - appFilter + - allUsers + - guest + - groupId + - roleId + - userId + - allDevicePlatforms + - devicePlatform + - allLocations + - insideCorpnet + - allTrustedLocations + - locationId + - allDevices + - deviceFilter + - deviceState + - unknownFutureValue + type: string odata.error.detail: required: - code diff --git a/openApiDocs/beta/Search.yml b/openApiDocs/beta/Search.yml index 09496c24f19..e9061276dea 100644 --- a/openApiDocs/beta/Search.yml +++ b/openApiDocs/beta/Search.yml @@ -520,9 +520,11 @@ components: properties: enableModification: type: boolean + description: 'Indicates whether spelling modifications are enabled. If enabled, user will get the search results for corrected query when there are no results for the original query with typos and get the spelling modification information in queryAlterationResponse property of the response. Optional.' nullable: true enableSuggestion: type: boolean + description: 'Indicates whether spelling suggestions are enabled. If enabled, user will get the search results for original search query and suggesting spelling correction in queryAlterationResponse property of the response for typos in query. Optional.' nullable: true additionalProperties: type: object @@ -536,6 +538,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.searchResultSet' + description: 'Represents results from a search query, and the terms used for the query.' additionalProperties: type: object microsoft.graph.entity: @@ -689,6 +692,7 @@ components: properties: originalQueryString: type: string + description: Defines the original user query string. nullable: true queryAlteration: $ref: '#/components/schemas/microsoft.graph.searchAlteration' @@ -704,11 +708,13 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.searchHitsContainer' + description: A collection of search results. searchTerms: type: array items: type: string nullable: true + description: Contains the search terms sent in the initial search query. additionalProperties: type: object odata.error: @@ -870,14 +876,17 @@ components: properties: alteredHighlightedQueryString: type: string + description: 'Defines the altered highlighted query string with spelling correction. The annotation around the corrected segment is (/ue000, /ue001)' nullable: true alteredQueryString: type: string + description: Defines the altered query string with spelling correction. nullable: true alteredQueryTokens: type: array items: $ref: '#/components/schemas/microsoft.graph.alteredQueryToken' + description: Represents changed segments with respect to original query. additionalProperties: type: object microsoft.graph.searchAlterationType: @@ -1027,6 +1036,9 @@ components: - fileName - fileExtension - unknownFutureValue + - iconUrl + - containerName + - containerUrl type: string microsoft.graph.externalConnectors.propertyType: title: propertyType @@ -1069,16 +1081,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: Defines the length of a changed segment. format: int32 nullable: true offset: maximum: 2147483647 minimum: -2147483648 type: integer + description: Defines the offset of a changed segment. format: int32 nullable: true suggestion: type: string + description: Represents the corrected segment string. nullable: true additionalProperties: type: object diff --git a/openApiDocs/beta/Security.yml b/openApiDocs/beta/Security.yml index f753b121e27..49a2eca2595 100644 --- a/openApiDocs/beta/Security.yml +++ b/openApiDocs/beta/Security.yml @@ -120,6 +120,7 @@ paths: tags: - security.alert summary: Get alerts from security + description: Read-only. Nullable. operationId: security_ListAlerts parameters: - $ref: '#/components/parameters/top' @@ -308,6 +309,7 @@ paths: tags: - security.alert summary: Create new navigation property to alerts for security + description: Read-only. Nullable. operationId: security_CreateAlerts requestBody: description: New navigation property @@ -331,6 +333,7 @@ paths: tags: - security.alert summary: Get alerts from security + description: Read-only. Nullable. operationId: security_GetAlerts parameters: - name: alert-id @@ -417,6 +420,7 @@ paths: tags: - security.alert summary: Update the navigation property alerts in security + description: Read-only. Nullable. operationId: security_UpdateAlerts parameters: - name: alert-id @@ -443,6 +447,7 @@ paths: tags: - security.alert summary: Delete navigation property alerts for security + description: Read-only. Nullable. operationId: security_DeleteAlerts parameters: - name: alert-id @@ -5492,10 +5497,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object diff --git a/openApiDocs/beta/Sites.yml b/openApiDocs/beta/Sites.yml index d391274c9bb..113fc954fcc 100644 --- a/openApiDocs/beta/Sites.yml +++ b/openApiDocs/beta/Sites.yml @@ -11,6 +11,7 @@ paths: tags: - groups.site summary: Get sites from groups + description: The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups_ListSites parameters: - name: group-id @@ -161,6 +162,7 @@ paths: tags: - groups.site summary: Create new navigation property to sites for groups + description: The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups_CreateSites parameters: - name: group-id @@ -192,6 +194,7 @@ paths: tags: - groups.site summary: Get sites from groups + description: The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups_GetSites parameters: - name: group-id @@ -366,6 +369,7 @@ paths: tags: - groups.site summary: Update the navigation property sites in groups + description: The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups_UpdateSites parameters: - name: group-id @@ -399,6 +403,7 @@ paths: tags: - groups.site summary: Delete navigation property sites for groups + description: The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups_DeleteSites parameters: - name: group-id @@ -800,6 +805,7 @@ paths: tags: - sites.itemAnalytics summary: Get analytics from sites + description: Analytics about the view activities that took place in this site. operationId: sites_GetAnalytics parameters: - name: site-id @@ -867,6 +873,7 @@ paths: tags: - sites.itemAnalytics summary: Get ref of analytics from sites + description: Analytics about the view activities that took place in this site. operationId: sites_GetRefAnalytics parameters: - name: site-id @@ -903,6 +910,7 @@ paths: tags: - sites.itemAnalytics summary: Update the ref of navigation property analytics in sites + description: Analytics about the view activities that took place in this site. operationId: sites_SetRefAnalytics parameters: - name: site-id @@ -931,6 +939,7 @@ paths: tags: - sites.itemAnalytics summary: Delete ref of navigation property analytics for sites + description: Analytics about the view activities that took place in this site. operationId: sites_DeleteRefAnalytics parameters: - name: site-id @@ -956,6 +965,7 @@ paths: tags: - sites.columnDefinition summary: Get columns from sites + description: The collection of column definitions reusable across lists under this site. operationId: sites_ListColumns parameters: - name: site-id @@ -1126,6 +1136,7 @@ paths: tags: - sites.columnDefinition summary: Create new navigation property to columns for sites + description: The collection of column definitions reusable across lists under this site. operationId: sites_CreateColumns parameters: - name: site-id @@ -1157,6 +1168,7 @@ paths: tags: - sites.columnDefinition summary: Get columns from sites + description: The collection of column definitions reusable across lists under this site. operationId: sites_GetColumns parameters: - name: site-id @@ -1249,6 +1261,7 @@ paths: tags: - sites.columnDefinition summary: Update the navigation property columns in sites + description: The collection of column definitions reusable across lists under this site. operationId: sites_UpdateColumns parameters: - name: site-id @@ -1282,6 +1295,7 @@ paths: tags: - sites.columnDefinition summary: Delete navigation property columns for sites + description: The collection of column definitions reusable across lists under this site. operationId: sites_DeleteColumns parameters: - name: site-id @@ -1314,6 +1328,7 @@ paths: tags: - sites.columnDefinition summary: Get sourceColumn from sites + description: The source column for content type column. operationId: sites.columns_GetSourceColumn parameters: - name: site-id @@ -1407,6 +1422,7 @@ paths: tags: - sites.columnDefinition summary: Get ref of sourceColumn from sites + description: The source column for content type column. operationId: sites.columns_GetRefSourceColumn parameters: - name: site-id @@ -1443,6 +1459,7 @@ paths: tags: - sites.columnDefinition summary: Update the ref of navigation property sourceColumn in sites + description: The source column for content type column. operationId: sites.columns_SetRefSourceColumn parameters: - name: site-id @@ -1478,6 +1495,7 @@ paths: tags: - sites.columnDefinition summary: Delete ref of navigation property sourceColumn for sites + description: The source column for content type column. operationId: sites.columns_DeleteRefSourceColumn parameters: - name: site-id @@ -1510,6 +1528,7 @@ paths: tags: - sites.contentType summary: Get contentTypes from sites + description: The collection of content types defined for this site. operationId: sites_ListContentTypes parameters: - name: site-id @@ -1640,6 +1659,7 @@ paths: tags: - sites.contentType summary: Create new navigation property to contentTypes for sites + description: The collection of content types defined for this site. operationId: sites_CreateContentTypes parameters: - name: site-id @@ -1671,6 +1691,7 @@ paths: tags: - sites.contentType summary: Get contentTypes from sites + description: The collection of content types defined for this site. operationId: sites_GetContentTypes parameters: - name: site-id @@ -1775,6 +1796,7 @@ paths: tags: - sites.contentType summary: Update the navigation property contentTypes in sites + description: The collection of content types defined for this site. operationId: sites_UpdateContentTypes parameters: - name: site-id @@ -1808,6 +1830,7 @@ paths: tags: - sites.contentType summary: Delete navigation property contentTypes for sites + description: The collection of content types defined for this site. operationId: sites_DeleteContentTypes parameters: - name: site-id @@ -1840,6 +1863,7 @@ paths: tags: - sites.contentType summary: Get base from sites + description: Parent contentType from which this content type is derived. operationId: sites.contentTypes_GetBase parameters: - name: site-id @@ -1945,6 +1969,7 @@ paths: tags: - sites.contentType summary: Get ref of base from sites + description: Parent contentType from which this content type is derived. operationId: sites.contentTypes_GetRefBase parameters: - name: site-id @@ -2001,6 +2026,7 @@ paths: tags: - sites.contentType summary: Update the ref of navigation property base in sites + description: Parent contentType from which this content type is derived. operationId: sites.contentTypes_SetRefBase parameters: - name: site-id @@ -2036,6 +2062,7 @@ paths: tags: - sites.contentType summary: Delete ref of navigation property base for sites + description: Parent contentType from which this content type is derived. operationId: sites.contentTypes_DeleteRefBase parameters: - name: site-id @@ -2241,6 +2268,7 @@ paths: tags: - sites.contentType summary: Get baseTypes from sites + description: The collection of content types that are ancestors of this content type. operationId: sites.contentTypes_ListBaseTypes parameters: - name: site-id @@ -2379,6 +2407,7 @@ paths: tags: - sites.contentType summary: Get ref of baseTypes from sites + description: The collection of content types that are ancestors of this content type. operationId: sites.contentTypes_ListRefBaseTypes parameters: - name: site-id @@ -2468,6 +2497,7 @@ paths: tags: - sites.contentType summary: Create new navigation property ref to baseTypes for sites + description: The collection of content types that are ancestors of this content type. operationId: sites.contentTypes_CreateRefBaseTypes parameters: - name: site-id @@ -2553,6 +2583,7 @@ paths: tags: - sites.contentType summary: Get columnLinks from sites + description: The collection of columns that are required by this content type operationId: sites.contentTypes_ListColumnLinks parameters: - name: site-id @@ -2641,6 +2672,7 @@ paths: tags: - sites.contentType summary: Create new navigation property to columnLinks for sites + description: The collection of columns that are required by this content type operationId: sites.contentTypes_CreateColumnLinks parameters: - name: site-id @@ -2679,6 +2711,7 @@ paths: tags: - sites.contentType summary: Get columnLinks from sites + description: The collection of columns that are required by this content type operationId: sites.contentTypes_GetColumnLinks parameters: - name: site-id @@ -2741,6 +2774,7 @@ paths: tags: - sites.contentType summary: Update the navigation property columnLinks in sites + description: The collection of columns that are required by this content type operationId: sites.contentTypes_UpdateColumnLinks parameters: - name: site-id @@ -2781,6 +2815,7 @@ paths: tags: - sites.contentType summary: Delete navigation property columnLinks for sites + description: The collection of columns that are required by this content type operationId: sites.contentTypes_DeleteColumnLinks parameters: - name: site-id @@ -2820,6 +2855,7 @@ paths: tags: - sites.contentType summary: Get columnPositions from sites + description: Column order information in a content type. operationId: sites.contentTypes_ListColumnPositions parameters: - name: site-id @@ -2998,6 +3034,7 @@ paths: tags: - sites.contentType summary: Get ref of columnPositions from sites + description: Column order information in a content type. operationId: sites.contentTypes_ListRefColumnPositions parameters: - name: site-id @@ -3119,6 +3156,7 @@ paths: tags: - sites.contentType summary: Create new navigation property ref to columnPositions for sites + description: Column order information in a content type. operationId: sites.contentTypes_CreateRefColumnPositions parameters: - name: site-id @@ -3161,6 +3199,7 @@ paths: tags: - sites.contentType summary: Get columns from sites + description: The collection of column definitions for this contentType. operationId: sites.contentTypes_ListColumns parameters: - name: site-id @@ -3338,6 +3377,7 @@ paths: tags: - sites.contentType summary: Create new navigation property to columns for sites + description: The collection of column definitions for this contentType. operationId: sites.contentTypes_CreateColumns parameters: - name: site-id @@ -3376,6 +3416,7 @@ paths: tags: - sites.contentType summary: Get columns from sites + description: The collection of column definitions for this contentType. operationId: sites.contentTypes_GetColumns parameters: - name: site-id @@ -3476,6 +3517,7 @@ paths: tags: - sites.contentType summary: Update the navigation property columns in sites + description: The collection of column definitions for this contentType. operationId: sites.contentTypes_UpdateColumns parameters: - name: site-id @@ -3516,6 +3558,7 @@ paths: tags: - sites.contentType summary: Delete navigation property columns for sites + description: The collection of column definitions for this contentType. operationId: sites.contentTypes_DeleteColumns parameters: - name: site-id @@ -3555,6 +3598,7 @@ paths: tags: - sites.contentType summary: Get sourceColumn from sites + description: The source column for content type column. operationId: sites.contentTypes.columns_GetSourceColumn parameters: - name: site-id @@ -3656,6 +3700,7 @@ paths: tags: - sites.contentType summary: Get ref of sourceColumn from sites + description: The source column for content type column. operationId: sites.contentTypes.columns_GetRefSourceColumn parameters: - name: site-id @@ -3700,6 +3745,7 @@ paths: tags: - sites.contentType summary: Update the ref of navigation property sourceColumn in sites + description: The source column for content type column. operationId: sites.contentTypes.columns_SetRefSourceColumn parameters: - name: site-id @@ -3742,6 +3788,7 @@ paths: tags: - sites.contentType summary: Delete ref of navigation property sourceColumn for sites + description: The source column for content type column. operationId: sites.contentTypes.columns_DeleteRefSourceColumn parameters: - name: site-id @@ -3990,6 +4037,7 @@ paths: tags: - sites.drive summary: Get drive from sites + description: The default drive (document library) for this site. operationId: sites_GetDrive parameters: - name: site-id @@ -4106,6 +4154,7 @@ paths: tags: - sites.drive summary: Update the navigation property drive in sites + description: The default drive (document library) for this site. operationId: sites_UpdateDrive parameters: - name: site-id @@ -4132,6 +4181,7 @@ paths: tags: - sites.drive summary: Delete navigation property drive for sites + description: The default drive (document library) for this site. operationId: sites_DeleteDrive parameters: - name: site-id @@ -4157,6 +4207,7 @@ paths: tags: - sites.drive summary: Get drives from sites + description: The collection of drives (document libraries) under this site. operationId: sites_ListDrives parameters: - name: site-id @@ -4295,6 +4346,7 @@ paths: tags: - sites.drive summary: Create new navigation property to drives for sites + description: The collection of drives (document libraries) under this site. operationId: sites_CreateDrives parameters: - name: site-id @@ -4326,6 +4378,7 @@ paths: tags: - sites.drive summary: Get drives from sites + description: The collection of drives (document libraries) under this site. operationId: sites_GetDrives parameters: - name: site-id @@ -4458,6 +4511,7 @@ paths: tags: - sites.drive summary: Update the navigation property drives in sites + description: The collection of drives (document libraries) under this site. operationId: sites_UpdateDrives parameters: - name: site-id @@ -4491,6 +4545,7 @@ paths: tags: - sites.drive summary: Delete navigation property drives for sites + description: The collection of drives (document libraries) under this site. operationId: sites_DeleteDrives parameters: - name: site-id @@ -4523,6 +4578,7 @@ paths: tags: - sites.columnDefinition summary: Get externalColumns from sites + description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site. operationId: sites_ListExternalColumns parameters: - name: site-id @@ -4694,6 +4750,7 @@ paths: tags: - sites.columnDefinition summary: Get ref of externalColumns from sites + description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site. operationId: sites_ListRefExternalColumns parameters: - name: site-id @@ -4808,6 +4865,7 @@ paths: tags: - sites.columnDefinition summary: Create new navigation property ref to externalColumns for sites + description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site. operationId: sites_CreateRefExternalColumns parameters: - name: site-id @@ -4843,6 +4901,7 @@ paths: tags: - sites.list summary: Get lists from sites + description: The collection of lists under this site. operationId: sites_ListLists parameters: - name: site-id @@ -4976,6 +5035,7 @@ paths: tags: - sites.list summary: Create new navigation property to lists for sites + description: The collection of lists under this site. operationId: sites_CreateLists parameters: - name: site-id @@ -5007,6 +5067,7 @@ paths: tags: - sites.list summary: Get lists from sites + description: The collection of lists under this site. operationId: sites_GetLists parameters: - name: site-id @@ -5131,6 +5192,7 @@ paths: tags: - sites.list summary: Update the navigation property lists in sites + description: The collection of lists under this site. operationId: sites_UpdateLists parameters: - name: site-id @@ -5164,6 +5226,7 @@ paths: tags: - sites.list summary: Delete navigation property lists for sites + description: The collection of lists under this site. operationId: sites_DeleteLists parameters: - name: site-id @@ -5196,6 +5259,7 @@ paths: tags: - sites.list summary: Get activities from sites + description: The recent activities that took place within this list. operationId: sites.lists_ListActivities parameters: - name: site-id @@ -5294,6 +5358,7 @@ paths: tags: - sites.list summary: Create new navigation property to activities for sites + description: The recent activities that took place within this list. operationId: sites.lists_CreateActivities parameters: - name: site-id @@ -5332,6 +5397,7 @@ paths: tags: - sites.list summary: Get activities from sites + description: The recent activities that took place within this list. operationId: sites.lists_GetActivities parameters: - name: site-id @@ -5413,6 +5479,7 @@ paths: tags: - sites.list summary: Update the navigation property activities in sites + description: The recent activities that took place within this list. operationId: sites.lists_UpdateActivities parameters: - name: site-id @@ -5453,6 +5520,7 @@ paths: tags: - sites.list summary: Delete navigation property activities for sites + description: The recent activities that took place within this list. operationId: sites.lists_DeleteActivities parameters: - name: site-id @@ -6043,6 +6111,7 @@ paths: tags: - sites.list summary: Get activities from sites + description: The list of recent activities that took place on this item. operationId: sites.lists.activities.listItem_ListActivities parameters: - name: site-id @@ -6148,6 +6217,7 @@ paths: tags: - sites.list summary: Create new navigation property to activities for sites + description: The list of recent activities that took place on this item. operationId: sites.lists.activities.listItem_CreateActivities parameters: - name: site-id @@ -6193,6 +6263,7 @@ paths: tags: - sites.list summary: Get activities from sites + description: The list of recent activities that took place on this item. operationId: sites.lists.activities.listItem_GetActivities parameters: - name: site-id @@ -6283,6 +6354,7 @@ paths: tags: - sites.list summary: Update the navigation property activities in sites + description: The list of recent activities that took place on this item. operationId: sites.lists.activities.listItem_UpdateActivities parameters: - name: site-id @@ -6330,6 +6402,7 @@ paths: tags: - sites.list summary: Delete navigation property activities for sites + description: The list of recent activities that took place on this item. operationId: sites.lists.activities.listItem_DeleteActivities parameters: - name: site-id @@ -6376,6 +6449,7 @@ paths: tags: - sites.list summary: Get analytics from sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.activities.listItem_GetAnalytics parameters: - name: site-id @@ -6463,6 +6537,7 @@ paths: tags: - sites.list summary: Get ref of analytics from sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.activities.listItem_GetRefAnalytics parameters: - name: site-id @@ -6519,6 +6594,7 @@ paths: tags: - sites.list summary: Update the ref of navigation property analytics in sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.activities.listItem_SetRefAnalytics parameters: - name: site-id @@ -6561,6 +6637,7 @@ paths: tags: - sites.list summary: Delete ref of navigation property analytics for sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.activities.listItem_DeleteRefAnalytics parameters: - name: site-id @@ -6600,6 +6677,7 @@ paths: tags: - sites.list summary: Get driveItem from sites + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: sites.lists.activities.listItem_GetDriveItem parameters: - name: site-id @@ -6784,6 +6862,7 @@ paths: tags: - sites.list summary: Update the navigation property driveItem in sites + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: sites.lists.activities.listItem_UpdateDriveItem parameters: - name: site-id @@ -6824,6 +6903,7 @@ paths: tags: - sites.list summary: Delete navigation property driveItem for sites + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: sites.lists.activities.listItem_DeleteDriveItem parameters: - name: site-id @@ -6943,6 +7023,7 @@ paths: tags: - sites.list summary: Get fields from sites + description: The values of the columns set on this list item. operationId: sites.lists.activities.listItem_GetFields parameters: - name: site-id @@ -7004,6 +7085,7 @@ paths: tags: - sites.list summary: Update the navigation property fields in sites + description: The values of the columns set on this list item. operationId: sites.lists.activities.listItem_UpdateFields parameters: - name: site-id @@ -7044,6 +7126,7 @@ paths: tags: - sites.list summary: Delete navigation property fields for sites + description: The values of the columns set on this list item. operationId: sites.lists.activities.listItem_DeleteFields parameters: - name: site-id @@ -7115,6 +7198,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -7209,6 +7293,7 @@ paths: tags: - sites.list summary: Get versions from sites + description: The list of previous versions of the list item. operationId: sites.lists.activities.listItem_ListVersions parameters: - name: site-id @@ -7312,6 +7397,7 @@ paths: tags: - sites.list summary: Create new navigation property to versions for sites + description: The list of previous versions of the list item. operationId: sites.lists.activities.listItem_CreateVersions parameters: - name: site-id @@ -7357,6 +7443,7 @@ paths: tags: - sites.list summary: Get versions from sites + description: The list of previous versions of the list item. operationId: sites.lists.activities.listItem_GetVersions parameters: - name: site-id @@ -7438,6 +7525,7 @@ paths: tags: - sites.list summary: Update the navigation property versions in sites + description: The list of previous versions of the list item. operationId: sites.lists.activities.listItem_UpdateVersions parameters: - name: site-id @@ -7485,6 +7573,7 @@ paths: tags: - sites.list summary: Delete navigation property versions for sites + description: The list of previous versions of the list item. operationId: sites.lists.activities.listItem_DeleteVersions parameters: - name: site-id @@ -7531,6 +7620,7 @@ paths: tags: - sites.list summary: Get fields from sites + description: A collection of the fields and values for this version of the list item. operationId: sites.lists.activities.listItem.versions_GetFields parameters: - name: site-id @@ -7599,6 +7689,7 @@ paths: tags: - sites.list summary: Update the navigation property fields in sites + description: A collection of the fields and values for this version of the list item. operationId: sites.lists.activities.listItem.versions_UpdateFields parameters: - name: site-id @@ -7646,6 +7737,7 @@ paths: tags: - sites.list summary: Delete navigation property fields for sites + description: A collection of the fields and values for this version of the list item. operationId: sites.lists.activities.listItem.versions_DeleteFields parameters: - name: site-id @@ -7733,6 +7825,7 @@ paths: tags: - sites.list summary: Get columns from sites + description: The collection of field definitions for this list. operationId: sites.lists_ListColumns parameters: - name: site-id @@ -7910,6 +8003,7 @@ paths: tags: - sites.list summary: Create new navigation property to columns for sites + description: The collection of field definitions for this list. operationId: sites.lists_CreateColumns parameters: - name: site-id @@ -7948,6 +8042,7 @@ paths: tags: - sites.list summary: Get columns from sites + description: The collection of field definitions for this list. operationId: sites.lists_GetColumns parameters: - name: site-id @@ -8048,6 +8143,7 @@ paths: tags: - sites.list summary: Update the navigation property columns in sites + description: The collection of field definitions for this list. operationId: sites.lists_UpdateColumns parameters: - name: site-id @@ -8088,6 +8184,7 @@ paths: tags: - sites.list summary: Delete navigation property columns for sites + description: The collection of field definitions for this list. operationId: sites.lists_DeleteColumns parameters: - name: site-id @@ -8127,6 +8224,7 @@ paths: tags: - sites.list summary: Get sourceColumn from sites + description: The source column for content type column. operationId: sites.lists.columns_GetSourceColumn parameters: - name: site-id @@ -8228,6 +8326,7 @@ paths: tags: - sites.list summary: Get ref of sourceColumn from sites + description: The source column for content type column. operationId: sites.lists.columns_GetRefSourceColumn parameters: - name: site-id @@ -8272,6 +8371,7 @@ paths: tags: - sites.list summary: Update the ref of navigation property sourceColumn in sites + description: The source column for content type column. operationId: sites.lists.columns_SetRefSourceColumn parameters: - name: site-id @@ -8314,6 +8414,7 @@ paths: tags: - sites.list summary: Delete ref of navigation property sourceColumn for sites + description: The source column for content type column. operationId: sites.lists.columns_DeleteRefSourceColumn parameters: - name: site-id @@ -8353,6 +8454,7 @@ paths: tags: - sites.list summary: Get contentTypes from sites + description: The collection of content types present in this list. operationId: sites.lists_ListContentTypes parameters: - name: site-id @@ -8490,6 +8592,7 @@ paths: tags: - sites.list summary: Create new navigation property to contentTypes for sites + description: The collection of content types present in this list. operationId: sites.lists_CreateContentTypes parameters: - name: site-id @@ -8528,6 +8631,7 @@ paths: tags: - sites.list summary: Get contentTypes from sites + description: The collection of content types present in this list. operationId: sites.lists_GetContentTypes parameters: - name: site-id @@ -8644,6 +8748,7 @@ paths: tags: - sites.list summary: Update the navigation property contentTypes in sites + description: The collection of content types present in this list. operationId: sites.lists_UpdateContentTypes parameters: - name: site-id @@ -8684,6 +8789,7 @@ paths: tags: - sites.list summary: Delete navigation property contentTypes for sites + description: The collection of content types present in this list. operationId: sites.lists_DeleteContentTypes parameters: - name: site-id @@ -8723,6 +8829,7 @@ paths: tags: - sites.list summary: Get base from sites + description: Parent contentType from which this content type is derived. operationId: sites.lists.contentTypes_GetBase parameters: - name: site-id @@ -8840,6 +8947,7 @@ paths: tags: - sites.list summary: Get ref of base from sites + description: Parent contentType from which this content type is derived. operationId: sites.lists.contentTypes_GetRefBase parameters: - name: site-id @@ -8908,6 +9016,7 @@ paths: tags: - sites.list summary: Update the ref of navigation property base in sites + description: Parent contentType from which this content type is derived. operationId: sites.lists.contentTypes_SetRefBase parameters: - name: site-id @@ -8950,6 +9059,7 @@ paths: tags: - sites.list summary: Delete ref of navigation property base for sites + description: Parent contentType from which this content type is derived. operationId: sites.lists.contentTypes_DeleteRefBase parameters: - name: site-id @@ -9197,6 +9307,7 @@ paths: tags: - sites.list summary: Get baseTypes from sites + description: The collection of content types that are ancestors of this content type. operationId: sites.lists.contentTypes_ListBaseTypes parameters: - name: site-id @@ -9342,6 +9453,7 @@ paths: tags: - sites.list summary: Get ref of baseTypes from sites + description: The collection of content types that are ancestors of this content type. operationId: sites.lists.contentTypes_ListRefBaseTypes parameters: - name: site-id @@ -9438,6 +9550,7 @@ paths: tags: - sites.list summary: Create new navigation property ref to baseTypes for sites + description: The collection of content types that are ancestors of this content type. operationId: sites.lists.contentTypes_CreateRefBaseTypes parameters: - name: site-id @@ -9537,6 +9650,7 @@ paths: tags: - sites.list summary: Get columnLinks from sites + description: The collection of columns that are required by this content type operationId: sites.lists.contentTypes_ListColumnLinks parameters: - name: site-id @@ -9632,6 +9746,7 @@ paths: tags: - sites.list summary: Create new navigation property to columnLinks for sites + description: The collection of columns that are required by this content type operationId: sites.lists.contentTypes_CreateColumnLinks parameters: - name: site-id @@ -9677,6 +9792,7 @@ paths: tags: - sites.list summary: Get columnLinks from sites + description: The collection of columns that are required by this content type operationId: sites.lists.contentTypes_GetColumnLinks parameters: - name: site-id @@ -9746,6 +9862,7 @@ paths: tags: - sites.list summary: Update the navigation property columnLinks in sites + description: The collection of columns that are required by this content type operationId: sites.lists.contentTypes_UpdateColumnLinks parameters: - name: site-id @@ -9793,6 +9910,7 @@ paths: tags: - sites.list summary: Delete navigation property columnLinks for sites + description: The collection of columns that are required by this content type operationId: sites.lists.contentTypes_DeleteColumnLinks parameters: - name: site-id @@ -9839,6 +9957,7 @@ paths: tags: - sites.list summary: Get columnPositions from sites + description: Column order information in a content type. operationId: sites.lists.contentTypes_ListColumnPositions parameters: - name: site-id @@ -10024,6 +10143,7 @@ paths: tags: - sites.list summary: Get ref of columnPositions from sites + description: Column order information in a content type. operationId: sites.lists.contentTypes_ListRefColumnPositions parameters: - name: site-id @@ -10152,6 +10272,7 @@ paths: tags: - sites.list summary: Create new navigation property ref to columnPositions for sites + description: Column order information in a content type. operationId: sites.lists.contentTypes_CreateRefColumnPositions parameters: - name: site-id @@ -10201,6 +10322,7 @@ paths: tags: - sites.list summary: Get columns from sites + description: The collection of column definitions for this contentType. operationId: sites.lists.contentTypes_ListColumns parameters: - name: site-id @@ -10385,6 +10507,7 @@ paths: tags: - sites.list summary: Create new navigation property to columns for sites + description: The collection of column definitions for this contentType. operationId: sites.lists.contentTypes_CreateColumns parameters: - name: site-id @@ -10430,6 +10553,7 @@ paths: tags: - sites.list summary: Get columns from sites + description: The collection of column definitions for this contentType. operationId: sites.lists.contentTypes_GetColumns parameters: - name: site-id @@ -10538,6 +10662,7 @@ paths: tags: - sites.list summary: Update the navigation property columns in sites + description: The collection of column definitions for this contentType. operationId: sites.lists.contentTypes_UpdateColumns parameters: - name: site-id @@ -10585,6 +10710,7 @@ paths: tags: - sites.list summary: Delete navigation property columns for sites + description: The collection of column definitions for this contentType. operationId: sites.lists.contentTypes_DeleteColumns parameters: - name: site-id @@ -10631,6 +10757,7 @@ paths: tags: - sites.list summary: Get sourceColumn from sites + description: The source column for content type column. operationId: sites.lists.contentTypes.columns_GetSourceColumn parameters: - name: site-id @@ -10740,6 +10867,7 @@ paths: tags: - sites.list summary: Get ref of sourceColumn from sites + description: The source column for content type column. operationId: sites.lists.contentTypes.columns_GetRefSourceColumn parameters: - name: site-id @@ -10792,6 +10920,7 @@ paths: tags: - sites.list summary: Update the ref of navigation property sourceColumn in sites + description: The source column for content type column. operationId: sites.lists.contentTypes.columns_SetRefSourceColumn parameters: - name: site-id @@ -10841,6 +10970,7 @@ paths: tags: - sites.list summary: Delete ref of navigation property sourceColumn for sites + description: The source column for content type column. operationId: sites.lists.contentTypes.columns_DeleteRefSourceColumn parameters: - name: site-id @@ -11138,6 +11268,7 @@ paths: tags: - sites.list summary: Get drive from sites + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: sites.lists_GetDrive parameters: - name: site-id @@ -11270,6 +11401,7 @@ paths: tags: - sites.list summary: Update the navigation property drive in sites + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: sites.lists_UpdateDrive parameters: - name: site-id @@ -11303,6 +11435,7 @@ paths: tags: - sites.list summary: Delete navigation property drive for sites + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: sites.lists_DeleteDrive parameters: - name: site-id @@ -11335,6 +11468,7 @@ paths: tags: - sites.list summary: Get items from sites + description: All items contained in the list. operationId: sites.lists_ListItems parameters: - name: site-id @@ -11467,6 +11601,7 @@ paths: tags: - sites.list summary: Create new navigation property to items for sites + description: All items contained in the list. operationId: sites.lists_CreateItems parameters: - name: site-id @@ -11505,6 +11640,7 @@ paths: tags: - sites.list summary: Get items from sites + description: All items contained in the list. operationId: sites.lists_GetItems parameters: - name: site-id @@ -11634,6 +11770,7 @@ paths: tags: - sites.list summary: Update the navigation property items in sites + description: All items contained in the list. operationId: sites.lists_UpdateItems parameters: - name: site-id @@ -11674,6 +11811,7 @@ paths: tags: - sites.list summary: Delete navigation property items for sites + description: All items contained in the list. operationId: sites.lists_DeleteItems parameters: - name: site-id @@ -11713,6 +11851,7 @@ paths: tags: - sites.list summary: Get activities from sites + description: The list of recent activities that took place on this item. operationId: sites.lists.items_ListActivities parameters: - name: site-id @@ -11818,6 +11957,7 @@ paths: tags: - sites.list summary: Create new navigation property to activities for sites + description: The list of recent activities that took place on this item. operationId: sites.lists.items_CreateActivities parameters: - name: site-id @@ -11863,6 +12003,7 @@ paths: tags: - sites.list summary: Get activities from sites + description: The list of recent activities that took place on this item. operationId: sites.lists.items_GetActivities parameters: - name: site-id @@ -11953,6 +12094,7 @@ paths: tags: - sites.list summary: Update the navigation property activities in sites + description: The list of recent activities that took place on this item. operationId: sites.lists.items_UpdateActivities parameters: - name: site-id @@ -12000,6 +12142,7 @@ paths: tags: - sites.list summary: Delete navigation property activities for sites + description: The list of recent activities that took place on this item. operationId: sites.lists.items_DeleteActivities parameters: - name: site-id @@ -12710,6 +12853,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -12811,6 +12955,7 @@ paths: tags: - sites.list summary: Get analytics from sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.items_GetAnalytics parameters: - name: site-id @@ -12898,6 +13043,7 @@ paths: tags: - sites.list summary: Get ref of analytics from sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.items_GetRefAnalytics parameters: - name: site-id @@ -12954,6 +13100,7 @@ paths: tags: - sites.list summary: Update the ref of navigation property analytics in sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.items_SetRefAnalytics parameters: - name: site-id @@ -12996,6 +13143,7 @@ paths: tags: - sites.list summary: Delete ref of navigation property analytics for sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.items_DeleteRefAnalytics parameters: - name: site-id @@ -13035,6 +13183,7 @@ paths: tags: - sites.list summary: Get driveItem from sites + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: sites.lists.items_GetDriveItem parameters: - name: site-id @@ -13219,6 +13368,7 @@ paths: tags: - sites.list summary: Update the navigation property driveItem in sites + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: sites.lists.items_UpdateDriveItem parameters: - name: site-id @@ -13259,6 +13409,7 @@ paths: tags: - sites.list summary: Delete navigation property driveItem for sites + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: sites.lists.items_DeleteDriveItem parameters: - name: site-id @@ -13378,6 +13529,7 @@ paths: tags: - sites.list summary: Get fields from sites + description: The values of the columns set on this list item. operationId: sites.lists.items_GetFields parameters: - name: site-id @@ -13439,6 +13591,7 @@ paths: tags: - sites.list summary: Update the navigation property fields in sites + description: The values of the columns set on this list item. operationId: sites.lists.items_UpdateFields parameters: - name: site-id @@ -13479,6 +13632,7 @@ paths: tags: - sites.list summary: Delete navigation property fields for sites + description: The values of the columns set on this list item. operationId: sites.lists.items_DeleteFields parameters: - name: site-id @@ -13550,6 +13704,7 @@ paths: properties: type: type: string + nullable: true scope: type: string nullable: true @@ -13644,6 +13799,7 @@ paths: tags: - sites.list summary: Get versions from sites + description: The list of previous versions of the list item. operationId: sites.lists.items_ListVersions parameters: - name: site-id @@ -13747,6 +13903,7 @@ paths: tags: - sites.list summary: Create new navigation property to versions for sites + description: The list of previous versions of the list item. operationId: sites.lists.items_CreateVersions parameters: - name: site-id @@ -13792,6 +13949,7 @@ paths: tags: - sites.list summary: Get versions from sites + description: The list of previous versions of the list item. operationId: sites.lists.items_GetVersions parameters: - name: site-id @@ -13873,6 +14031,7 @@ paths: tags: - sites.list summary: Update the navigation property versions in sites + description: The list of previous versions of the list item. operationId: sites.lists.items_UpdateVersions parameters: - name: site-id @@ -13920,6 +14079,7 @@ paths: tags: - sites.list summary: Delete navigation property versions for sites + description: The list of previous versions of the list item. operationId: sites.lists.items_DeleteVersions parameters: - name: site-id @@ -13966,6 +14126,7 @@ paths: tags: - sites.list summary: Get fields from sites + description: A collection of the fields and values for this version of the list item. operationId: sites.lists.items.versions_GetFields parameters: - name: site-id @@ -14034,6 +14195,7 @@ paths: tags: - sites.list summary: Update the navigation property fields in sites + description: A collection of the fields and values for this version of the list item. operationId: sites.lists.items.versions_UpdateFields parameters: - name: site-id @@ -14081,6 +14243,7 @@ paths: tags: - sites.list summary: Delete navigation property fields for sites + description: A collection of the fields and values for this version of the list item. operationId: sites.lists.items.versions_DeleteFields parameters: - name: site-id @@ -14168,6 +14331,7 @@ paths: tags: - sites.list summary: Get subscriptions from sites + description: The set of subscriptions on the list. operationId: sites.lists_ListSubscriptions parameters: - name: site-id @@ -14295,6 +14459,7 @@ paths: tags: - sites.list summary: Create new navigation property to subscriptions for sites + description: The set of subscriptions on the list. operationId: sites.lists_CreateSubscriptions parameters: - name: site-id @@ -14333,6 +14498,7 @@ paths: tags: - sites.list summary: Get subscriptions from sites + description: The set of subscriptions on the list. operationId: sites.lists_GetSubscriptions parameters: - name: site-id @@ -14408,6 +14574,7 @@ paths: tags: - sites.list summary: Update the navigation property subscriptions in sites + description: The set of subscriptions on the list. operationId: sites.lists_UpdateSubscriptions parameters: - name: site-id @@ -14448,6 +14615,7 @@ paths: tags: - sites.list summary: Delete navigation property subscriptions for sites + description: The set of subscriptions on the list. operationId: sites.lists_DeleteSubscriptions parameters: - name: site-id @@ -21322,6 +21490,7 @@ paths: tags: - sites.sitePage summary: Get pages from sites + description: The collection of pages in the SitePages list in this site. operationId: sites_ListPages parameters: - name: site-id @@ -21446,6 +21615,7 @@ paths: tags: - sites.sitePage summary: Create new navigation property to pages for sites + description: The collection of pages in the SitePages list in this site. operationId: sites_CreatePages parameters: - name: site-id @@ -21477,6 +21647,7 @@ paths: tags: - sites.sitePage summary: Get pages from sites + description: The collection of pages in the SitePages list in this site. operationId: sites_GetPages parameters: - name: site-id @@ -21560,6 +21731,7 @@ paths: tags: - sites.sitePage summary: Update the navigation property pages in sites + description: The collection of pages in the SitePages list in this site. operationId: sites_UpdatePages parameters: - name: site-id @@ -21593,6 +21765,7 @@ paths: tags: - sites.sitePage summary: Delete navigation property pages for sites + description: The collection of pages in the SitePages list in this site. operationId: sites_DeletePages parameters: - name: site-id @@ -21652,6 +21825,7 @@ paths: tags: - sites.permission summary: Get permissions from sites + description: The permissions associated with the site. Nullable. operationId: sites_ListPermissions parameters: - name: site-id @@ -21757,6 +21931,7 @@ paths: tags: - sites.permission summary: Create new navigation property to permissions for sites + description: The permissions associated with the site. Nullable. operationId: sites_CreatePermissions parameters: - name: site-id @@ -21788,6 +21963,7 @@ paths: tags: - sites.permission summary: Get permissions from sites + description: The permissions associated with the site. Nullable. operationId: sites_GetPermissions parameters: - name: site-id @@ -21851,6 +22027,7 @@ paths: tags: - sites.permission summary: Update the navigation property permissions in sites + description: The permissions associated with the site. Nullable. operationId: sites_UpdatePermissions parameters: - name: site-id @@ -21884,6 +22061,7 @@ paths: tags: - sites.permission summary: Delete navigation property permissions for sites + description: The permissions associated with the site. Nullable. operationId: sites_DeletePermissions parameters: - name: site-id @@ -22013,6 +22191,7 @@ paths: tags: - sites.site summary: Get sites from sites + description: The collection of the sub-sites under this site. operationId: sites_ListSites parameters: - name: site-id @@ -22163,6 +22342,7 @@ paths: tags: - sites.site summary: Create new navigation property to sites for sites + description: The collection of the sub-sites under this site. operationId: sites_CreateSites parameters: - name: site-id @@ -22194,6 +22374,7 @@ paths: tags: - sites.site summary: Get sites from sites + description: The collection of the sub-sites under this site. operationId: sites_GetSites parameters: - name: site-id @@ -22368,6 +22549,7 @@ paths: tags: - sites.site summary: Update the navigation property sites in sites + description: The collection of the sub-sites under this site. operationId: sites_UpdateSites parameters: - name: site-id @@ -22401,6 +22583,7 @@ paths: tags: - sites.site summary: Delete navigation property sites for sites + description: The collection of the sub-sites under this site. operationId: sites_DeleteSites parameters: - name: site-id @@ -25105,7 +25288,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -25118,7 +25301,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -25130,12 +25313,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -25144,7 +25327,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -25152,7 +25335,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -25168,7 +25351,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -25184,7 +25367,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -25208,7 +25391,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -25227,11 +25410,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -25239,7 +25422,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -25286,7 +25469,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -25295,7 +25478,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -25333,15 +25516,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -25349,7 +25532,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -25478,6 +25661,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -26512,7 +26699,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -26846,7 +27033,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -27645,6 +27832,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -28262,6 +28450,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -28543,16 +28735,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -29243,11 +29435,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -29262,6 +29455,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -29271,7 +29465,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -29308,7 +29502,6 @@ components: 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: @@ -29512,7 +29705,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -29642,11 +29835,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -30787,7 +30980,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -31351,53 +31544,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -31424,6 +31622,35 @@ components: additionalProperties: type: object description: Enrollment Configuration Assignment + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -31820,6 +32047,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -32013,6 +32244,19 @@ components: additionalProperties: type: object description: Logged On User + microsoft.graph.assignmentFilterEvaluationStatusDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: assignmentFilterEvaluationStatusDetails + type: object + properties: + payloadId: + type: string + description: PayloadId on which filter has been applied. + nullable: true + additionalProperties: + type: object + description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceCompliancePolicyState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -32054,19 +32298,6 @@ components: additionalProperties: type: object description: Device Compliance Policy State for a given device. - microsoft.graph.assignmentFilterEvaluationStatusDetails: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: assignmentFilterEvaluationStatusDetails - type: object - properties: - payloadId: - type: string - description: PayloadId on which filter has been applied. - nullable: true - additionalProperties: - type: object - description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceConfigurationState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -32457,10 +32688,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -33558,10 +33789,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -33632,18 +33875,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -33656,6 +33898,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -33711,7 +33954,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -33993,6 +34235,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -34489,7 +34733,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string @@ -35518,7 +35762,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -35537,14 +35781,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -35553,18 +35797,18 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object microsoft.graph.deviceAndAppManagementAssignmentSource: @@ -35586,16 +35830,6 @@ components: additionalProperties: type: object description: Base type for assignment targets. - microsoft.graph.configurationManagerClientState: - title: configurationManagerClientState - enum: - - unknown - - installed - - healthy - - installFailed - - updateFailed - - communicationError - type: string microsoft.graph.actionState: title: actionState enum: @@ -35607,6 +35841,35 @@ components: - failed - notSupported type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object + microsoft.graph.configurationManagerClientState: + title: configurationManagerClientState + enum: + - unknown + - installed + - healthy + - installFailed + - updateFailed + - communicationError + type: string microsoft.graph.deviceGuardLocalSystemAuthorityCredentialGuardState: title: deviceGuardLocalSystemAuthorityCredentialGuardState enum: @@ -36675,18 +36938,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -36765,7 +37032,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -36789,7 +37056,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -36847,6 +37114,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -36879,6 +37151,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -37484,17 +37758,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -37502,9 +37781,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -38106,16 +38387,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: @@ -38159,6 +38443,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' diff --git a/openApiDocs/beta/Teams.yml b/openApiDocs/beta/Teams.yml index b8661e39d31..0eb3efdf42b 100644 --- a/openApiDocs/beta/Teams.yml +++ b/openApiDocs/beta/Teams.yml @@ -224,6 +224,7 @@ paths: tags: - appCatalogs.teamsApp summary: Get appDefinitions from appCatalogs + description: The details for each version of the app. operationId: appCatalogs.teamsApps_ListAppDefinitions parameters: - name: teamsApp-id @@ -338,6 +339,7 @@ paths: tags: - appCatalogs.teamsApp summary: Create new navigation property to appDefinitions for appCatalogs + description: The details for each version of the app. operationId: appCatalogs.teamsApps_CreateAppDefinitions parameters: - name: teamsApp-id @@ -369,6 +371,7 @@ paths: tags: - appCatalogs.teamsApp summary: Get appDefinitions from appCatalogs + description: The details for each version of the app. operationId: appCatalogs.teamsApps_GetAppDefinitions parameters: - name: teamsApp-id @@ -455,6 +458,7 @@ paths: tags: - appCatalogs.teamsApp summary: Update the navigation property appDefinitions in appCatalogs + description: The details for each version of the app. operationId: appCatalogs.teamsApps_UpdateAppDefinitions parameters: - name: teamsApp-id @@ -488,6 +492,7 @@ paths: tags: - appCatalogs.teamsApp summary: Delete navigation property appDefinitions for appCatalogs + description: The details for each version of the app. operationId: appCatalogs.teamsApps_DeleteAppDefinitions parameters: - name: teamsApp-id @@ -520,6 +525,7 @@ paths: tags: - appCatalogs.teamsApp summary: Get bot from appCatalogs + description: The details of the bot specified in the Teams app manifest. operationId: appCatalogs.teamsApps.appDefinitions_GetBot parameters: - name: teamsApp-id @@ -574,6 +580,7 @@ paths: tags: - appCatalogs.teamsApp summary: Update the navigation property bot in appCatalogs + description: The details of the bot specified in the Teams app manifest. operationId: appCatalogs.teamsApps.appDefinitions_UpdateBot parameters: - name: teamsApp-id @@ -607,6 +614,7 @@ paths: tags: - appCatalogs.teamsApp summary: Delete navigation property bot for appCatalogs + description: The details of the bot specified in the Teams app manifest. operationId: appCatalogs.teamsApps.appDefinitions_DeleteBot parameters: - name: teamsApp-id @@ -639,6 +647,7 @@ paths: tags: - appCatalogs.teamsApp summary: Get colorIcon from appCatalogs + description: The color version of the Teams app's icon. operationId: appCatalogs.teamsApps.appDefinitions_GetColorIcon parameters: - name: teamsApp-id @@ -702,6 +711,7 @@ paths: tags: - appCatalogs.teamsApp summary: Update the navigation property colorIcon in appCatalogs + description: The color version of the Teams app's icon. operationId: appCatalogs.teamsApps.appDefinitions_UpdateColorIcon parameters: - name: teamsApp-id @@ -735,6 +745,7 @@ paths: tags: - appCatalogs.teamsApp summary: Delete navigation property colorIcon for appCatalogs + description: The color version of the Teams app's icon. operationId: appCatalogs.teamsApps.appDefinitions_DeleteColorIcon parameters: - name: teamsApp-id @@ -767,6 +778,7 @@ paths: tags: - appCatalogs.teamsApp summary: Get hostedContent from appCatalogs + description: The contents of the app icon if the icon is hosted within the Teams infrastructure. operationId: appCatalogs.teamsApps.appDefinitions.colorIcon_GetHostedContent parameters: - name: teamsApp-id @@ -823,6 +835,7 @@ paths: tags: - appCatalogs.teamsApp summary: Update the navigation property hostedContent in appCatalogs + description: The contents of the app icon if the icon is hosted within the Teams infrastructure. operationId: appCatalogs.teamsApps.appDefinitions.colorIcon_UpdateHostedContent parameters: - name: teamsApp-id @@ -856,6 +869,7 @@ paths: tags: - appCatalogs.teamsApp summary: Delete navigation property hostedContent for appCatalogs + description: The contents of the app icon if the icon is hosted within the Teams infrastructure. operationId: appCatalogs.teamsApps.appDefinitions.colorIcon_DeleteHostedContent parameters: - name: teamsApp-id @@ -954,6 +968,7 @@ paths: tags: - appCatalogs.teamsApp summary: Get outlineIcon from appCatalogs + description: The outline version of the Teams app's icon. operationId: appCatalogs.teamsApps.appDefinitions_GetOutlineIcon parameters: - name: teamsApp-id @@ -1017,6 +1032,7 @@ paths: tags: - appCatalogs.teamsApp summary: Update the navigation property outlineIcon in appCatalogs + description: The outline version of the Teams app's icon. operationId: appCatalogs.teamsApps.appDefinitions_UpdateOutlineIcon parameters: - name: teamsApp-id @@ -1050,6 +1066,7 @@ paths: tags: - appCatalogs.teamsApp summary: Delete navigation property outlineIcon for appCatalogs + description: The outline version of the Teams app's icon. operationId: appCatalogs.teamsApps.appDefinitions_DeleteOutlineIcon parameters: - name: teamsApp-id @@ -1082,6 +1099,7 @@ paths: tags: - appCatalogs.teamsApp summary: Get hostedContent from appCatalogs + description: The contents of the app icon if the icon is hosted within the Teams infrastructure. operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon_GetHostedContent parameters: - name: teamsApp-id @@ -1138,6 +1156,7 @@ paths: tags: - appCatalogs.teamsApp summary: Update the navigation property hostedContent in appCatalogs + description: The contents of the app icon if the icon is hosted within the Teams infrastructure. operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon_UpdateHostedContent parameters: - name: teamsApp-id @@ -1171,6 +1190,7 @@ paths: tags: - appCatalogs.teamsApp summary: Delete navigation property hostedContent for appCatalogs + description: The contents of the app icon if the icon is hosted within the Teams infrastructure. operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon_DeleteHostedContent parameters: - name: teamsApp-id @@ -1518,6 +1538,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get installedApps from chats + description: A collection of all the apps in the chat. Nullable. operationId: chats_ListInstalledApps parameters: - name: chat-id @@ -1600,6 +1621,7 @@ paths: tags: - chats.teamsAppInstallation summary: Create new navigation property to installedApps for chats + description: A collection of all the apps in the chat. Nullable. operationId: chats_CreateInstalledApps parameters: - name: chat-id @@ -1631,6 +1653,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get installedApps from chats + description: A collection of all the apps in the chat. Nullable. operationId: chats_GetInstalledApps parameters: - name: chat-id @@ -1700,6 +1723,7 @@ paths: tags: - chats.teamsAppInstallation summary: Update the navigation property installedApps in chats + description: A collection of all the apps in the chat. Nullable. operationId: chats_UpdateInstalledApps parameters: - name: chat-id @@ -1733,6 +1757,7 @@ paths: tags: - chats.teamsAppInstallation summary: Delete navigation property installedApps for chats + description: A collection of all the apps in the chat. Nullable. operationId: chats_DeleteInstalledApps parameters: - name: chat-id @@ -1792,6 +1817,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get teamsApp from chats + description: The app that is installed. operationId: chats.installedApps_GetTeamsApp parameters: - name: chat-id @@ -1858,6 +1884,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get ref of teamsApp from chats + description: The app that is installed. operationId: chats.installedApps_GetRefTeamsApp parameters: - name: chat-id @@ -1894,6 +1921,7 @@ paths: tags: - chats.teamsAppInstallation summary: Update the ref of navigation property teamsApp in chats + description: The app that is installed. operationId: chats.installedApps_SetRefTeamsApp parameters: - name: chat-id @@ -1929,6 +1957,7 @@ paths: tags: - chats.teamsAppInstallation summary: Delete ref of navigation property teamsApp for chats + description: The app that is installed. operationId: chats.installedApps_DeleteRefTeamsApp parameters: - name: chat-id @@ -1961,6 +1990,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get teamsAppDefinition from chats + description: The details of this version of the app. operationId: chats.installedApps_GetTeamsAppDefinition parameters: - name: chat-id @@ -2048,6 +2078,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get ref of teamsAppDefinition from chats + description: The details of this version of the app. operationId: chats.installedApps_GetRefTeamsAppDefinition parameters: - name: chat-id @@ -2094,6 +2125,7 @@ paths: tags: - chats.teamsAppInstallation summary: Update the ref of navigation property teamsAppDefinition in chats + description: The details of this version of the app. operationId: chats.installedApps_SetRefTeamsAppDefinition parameters: - name: chat-id @@ -2129,6 +2161,7 @@ paths: tags: - chats.teamsAppInstallation summary: Delete ref of navigation property teamsAppDefinition for chats + description: The details of this version of the app. operationId: chats.installedApps_DeleteRefTeamsAppDefinition parameters: - name: chat-id @@ -2161,6 +2194,7 @@ paths: tags: - chats.conversationMember summary: Get members from chats + description: A collection of all the members in the chat. Nullable. operationId: chats_ListMembers parameters: - name: chat-id @@ -2248,6 +2282,7 @@ paths: tags: - chats.conversationMember summary: Create new navigation property to members for chats + description: A collection of all the members in the chat. Nullable. operationId: chats_CreateMembers parameters: - name: chat-id @@ -2279,6 +2314,7 @@ paths: tags: - chats.conversationMember summary: Get members from chats + description: A collection of all the members in the chat. Nullable. operationId: chats_GetMembers parameters: - name: chat-id @@ -2336,6 +2372,7 @@ paths: tags: - chats.conversationMember summary: Update the navigation property members in chats + description: A collection of all the members in the chat. Nullable. operationId: chats_UpdateMembers parameters: - name: chat-id @@ -2369,6 +2406,7 @@ paths: tags: - chats.conversationMember summary: Delete navigation property members for chats + description: A collection of all the members in the chat. Nullable. operationId: chats_DeleteMembers parameters: - name: chat-id @@ -2441,6 +2479,7 @@ paths: tags: - chats.chatMessage summary: Get messages from chats + description: A collection of all the messages in the chat. Nullable. operationId: chats_ListMessages parameters: - name: chat-id @@ -2481,6 +2520,8 @@ paths: - deletedDateTime desc - etag - etag desc + - eventDetail + - eventDetail desc - from - from desc - importance @@ -2526,6 +2567,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -2583,6 +2625,7 @@ paths: tags: - chats.chatMessage summary: Create new navigation property to messages for chats + description: A collection of all the messages in the chat. Nullable. operationId: chats_CreateMessages parameters: - name: chat-id @@ -2614,6 +2657,7 @@ paths: tags: - chats.chatMessage summary: Get messages from chats + description: A collection of all the messages in the chat. Nullable. operationId: chats_GetMessages parameters: - name: chat-id @@ -2648,6 +2692,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -2703,6 +2748,7 @@ paths: tags: - chats.chatMessage summary: Update the navigation property messages in chats + description: A collection of all the messages in the chat. Nullable. operationId: chats_UpdateMessages parameters: - name: chat-id @@ -2736,6 +2782,7 @@ paths: tags: - chats.chatMessage summary: Delete navigation property messages for chats + description: A collection of all the messages in the chat. Nullable. operationId: chats_DeleteMessages parameters: - name: chat-id @@ -2768,6 +2815,7 @@ paths: tags: - chats.chatMessage summary: Get hostedContents from chats + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: chats.messages_ListHostedContents parameters: - name: chat-id @@ -2859,6 +2907,7 @@ paths: tags: - chats.chatMessage summary: Create new navigation property to hostedContents for chats + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: chats.messages_CreateHostedContents parameters: - name: chat-id @@ -2897,6 +2946,7 @@ paths: tags: - chats.chatMessage summary: Get hostedContents from chats + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: chats.messages_GetHostedContents parameters: - name: chat-id @@ -2960,6 +3010,7 @@ paths: tags: - chats.chatMessage summary: Update the navigation property hostedContents in chats + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: chats.messages_UpdateHostedContents parameters: - name: chat-id @@ -3000,6 +3051,7 @@ paths: tags: - chats.chatMessage summary: Delete navigation property hostedContents for chats + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: chats.messages_DeleteHostedContents parameters: - name: chat-id @@ -3039,6 +3091,7 @@ paths: tags: - chats.chatMessage summary: Get replies from chats + description: Replies for a specified message. operationId: chats.messages_ListReplies parameters: - name: chat-id @@ -3086,6 +3139,8 @@ paths: - deletedDateTime desc - etag - etag desc + - eventDetail + - eventDetail desc - from - from desc - importance @@ -3131,6 +3186,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -3188,6 +3244,7 @@ paths: tags: - chats.chatMessage summary: Create new navigation property to replies for chats + description: Replies for a specified message. operationId: chats.messages_CreateReplies parameters: - name: chat-id @@ -3226,6 +3283,7 @@ paths: tags: - chats.chatMessage summary: Get replies from chats + description: Replies for a specified message. operationId: chats.messages_GetReplies parameters: - name: chat-id @@ -3267,6 +3325,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -3324,6 +3383,7 @@ paths: tags: - chats.chatMessage summary: Update the navigation property replies in chats + description: Replies for a specified message. operationId: chats.messages_UpdateReplies parameters: - name: chat-id @@ -3364,6 +3424,7 @@ paths: tags: - chats.chatMessage summary: Delete navigation property replies for chats + description: Replies for a specified message. operationId: chats.messages_DeleteReplies parameters: - name: chat-id @@ -3509,6 +3570,7 @@ paths: tags: - chats.resourceSpecificPermissionGrant summary: Get permissionGrants from chats + description: A collection of permissions granted to apps for the chat. operationId: chats_ListPermissionGrants parameters: - name: chat-id @@ -3605,6 +3667,7 @@ paths: tags: - chats.resourceSpecificPermissionGrant summary: Create new navigation property to permissionGrants for chats + description: A collection of permissions granted to apps for the chat. operationId: chats_CreatePermissionGrants parameters: - name: chat-id @@ -3636,6 +3699,7 @@ paths: tags: - chats.resourceSpecificPermissionGrant summary: Get permissionGrants from chats + description: A collection of permissions granted to apps for the chat. operationId: chats_GetPermissionGrants parameters: - name: chat-id @@ -3696,6 +3760,7 @@ paths: tags: - chats.resourceSpecificPermissionGrant summary: Update the navigation property permissionGrants in chats + description: A collection of permissions granted to apps for the chat. operationId: chats_UpdatePermissionGrants parameters: - name: chat-id @@ -3729,6 +3794,7 @@ paths: tags: - chats.resourceSpecificPermissionGrant summary: Delete navigation property permissionGrants for chats + description: A collection of permissions granted to apps for the chat. operationId: chats_DeletePermissionGrants parameters: - name: chat-id @@ -4023,6 +4089,7 @@ paths: tags: - chats.teamsTab summary: Get teamsApp from chats + description: The application that is linked to the tab. operationId: chats.tabs_GetTeamsApp parameters: - name: chat-id @@ -4089,6 +4156,7 @@ paths: tags: - chats.teamsTab summary: Get ref of teamsApp from chats + description: The application that is linked to the tab. operationId: chats.tabs_GetRefTeamsApp parameters: - name: chat-id @@ -4125,6 +4193,7 @@ paths: tags: - chats.teamsTab summary: Update the ref of navigation property teamsApp in chats + description: The application that is linked to the tab. operationId: chats.tabs_SetRefTeamsApp parameters: - name: chat-id @@ -4160,6 +4229,7 @@ paths: tags: - chats.teamsTab summary: Delete ref of navigation property teamsApp for chats + description: The application that is linked to the tab. operationId: chats.tabs_DeleteRefTeamsApp parameters: - name: chat-id @@ -4749,6 +4819,7 @@ paths: tags: - teams.channel summary: Get channels from teams + description: The collection of channels & messages associated with the team. operationId: teams_ListChannels parameters: - name: team-id @@ -4859,6 +4930,7 @@ paths: tags: - teams.channel summary: Create new navigation property to channels for teams + description: The collection of channels & messages associated with the team. operationId: teams_CreateChannels parameters: - name: team-id @@ -4890,6 +4962,7 @@ paths: tags: - teams.channel summary: Get channels from teams + description: The collection of channels & messages associated with the team. operationId: teams_GetChannels parameters: - name: team-id @@ -4981,6 +5054,7 @@ paths: tags: - teams.channel summary: Update the navigation property channels in teams + description: The collection of channels & messages associated with the team. operationId: teams_UpdateChannels parameters: - name: team-id @@ -5014,6 +5088,7 @@ paths: tags: - teams.channel summary: Delete navigation property channels for teams + description: The collection of channels & messages associated with the team. operationId: teams_DeleteChannels parameters: - name: team-id @@ -5046,6 +5121,7 @@ paths: tags: - teams.channel summary: Get filesFolder from teams + description: Metadata for the location where the channel's files are stored. operationId: teams.channels_GetFilesFolder parameters: - name: team-id @@ -5212,6 +5288,7 @@ paths: tags: - teams.channel summary: Update the navigation property filesFolder in teams + description: Metadata for the location where the channel's files are stored. operationId: teams.channels_UpdateFilesFolder parameters: - name: team-id @@ -5245,6 +5322,7 @@ paths: tags: - teams.channel summary: Delete navigation property filesFolder for teams + description: Metadata for the location where the channel's files are stored. operationId: teams.channels_DeleteFilesFolder parameters: - name: team-id @@ -5343,6 +5421,7 @@ paths: tags: - teams.channel summary: Get members from teams + description: A collection of membership records associated with the channel. operationId: teams.channels_ListMembers parameters: - name: team-id @@ -5437,6 +5516,7 @@ paths: tags: - teams.channel summary: Create new navigation property to members for teams + description: A collection of membership records associated with the channel. operationId: teams.channels_CreateMembers parameters: - name: team-id @@ -5475,6 +5555,7 @@ paths: tags: - teams.channel summary: Get members from teams + description: A collection of membership records associated with the channel. operationId: teams.channels_GetMembers parameters: - name: team-id @@ -5539,6 +5620,7 @@ paths: tags: - teams.channel summary: Update the navigation property members in teams + description: A collection of membership records associated with the channel. operationId: teams.channels_UpdateMembers parameters: - name: team-id @@ -5579,6 +5661,7 @@ paths: tags: - teams.channel summary: Delete navigation property members for teams + description: A collection of membership records associated with the channel. operationId: teams.channels_DeleteMembers parameters: - name: team-id @@ -5665,6 +5748,7 @@ paths: tags: - teams.channel summary: Get messages from teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.channels_ListMessages parameters: - name: team-id @@ -5712,6 +5796,8 @@ paths: - deletedDateTime desc - etag - etag desc + - eventDetail + - eventDetail desc - from - from desc - importance @@ -5757,6 +5843,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -5814,6 +5901,7 @@ paths: tags: - teams.channel summary: Create new navigation property to messages for teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.channels_CreateMessages parameters: - name: team-id @@ -5852,6 +5940,7 @@ paths: tags: - teams.channel summary: Get messages from teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.channels_GetMessages parameters: - name: team-id @@ -5893,6 +5982,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -5950,6 +6040,7 @@ paths: tags: - teams.channel summary: Update the navigation property messages in teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.channels_UpdateMessages parameters: - name: team-id @@ -5990,6 +6081,7 @@ paths: tags: - teams.channel summary: Delete navigation property messages for teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.channels_DeleteMessages parameters: - name: team-id @@ -6029,6 +6121,7 @@ paths: tags: - teams.channel summary: Get hostedContents from teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.channels.messages_ListHostedContents parameters: - name: team-id @@ -6127,6 +6220,7 @@ paths: tags: - teams.channel summary: Create new navigation property to hostedContents for teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.channels.messages_CreateHostedContents parameters: - name: team-id @@ -6172,6 +6266,7 @@ paths: tags: - teams.channel summary: Get hostedContents from teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.channels.messages_GetHostedContents parameters: - name: team-id @@ -6242,6 +6337,7 @@ paths: tags: - teams.channel summary: Update the navigation property hostedContents in teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.channels.messages_UpdateHostedContents parameters: - name: team-id @@ -6289,6 +6385,7 @@ paths: tags: - teams.channel summary: Delete navigation property hostedContents for teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.channels.messages_DeleteHostedContents parameters: - name: team-id @@ -6335,6 +6432,7 @@ paths: tags: - teams.channel summary: Get replies from teams + description: Replies for a specified message. operationId: teams.channels.messages_ListReplies parameters: - name: team-id @@ -6389,6 +6487,8 @@ paths: - deletedDateTime desc - etag - etag desc + - eventDetail + - eventDetail desc - from - from desc - importance @@ -6434,6 +6534,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -6491,6 +6592,7 @@ paths: tags: - teams.channel summary: Create new navigation property to replies for teams + description: Replies for a specified message. operationId: teams.channels.messages_CreateReplies parameters: - name: team-id @@ -6536,6 +6638,7 @@ paths: tags: - teams.channel summary: Get replies from teams + description: Replies for a specified message. operationId: teams.channels.messages_GetReplies parameters: - name: team-id @@ -6584,6 +6687,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -6643,6 +6747,7 @@ paths: tags: - teams.channel summary: Update the navigation property replies in teams + description: Replies for a specified message. operationId: teams.channels.messages_UpdateReplies parameters: - name: team-id @@ -6690,6 +6795,7 @@ paths: tags: - teams.channel summary: Delete navigation property replies for teams + description: Replies for a specified message. operationId: teams.channels.messages_DeleteReplies parameters: - name: team-id @@ -6836,6 +6942,7 @@ paths: tags: - teams.channel summary: Get tabs from teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.channels_ListTabs parameters: - name: team-id @@ -6941,6 +7048,7 @@ paths: tags: - teams.channel summary: Create new navigation property to tabs for teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.channels_CreateTabs parameters: - name: team-id @@ -6979,6 +7087,7 @@ paths: tags: - teams.channel summary: Get tabs from teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.channels_GetTabs parameters: - name: team-id @@ -7055,6 +7164,7 @@ paths: tags: - teams.channel summary: Update the navigation property tabs in teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.channels_UpdateTabs parameters: - name: team-id @@ -7095,6 +7205,7 @@ paths: tags: - teams.channel summary: Delete navigation property tabs for teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.channels_DeleteTabs parameters: - name: team-id @@ -7134,6 +7245,7 @@ paths: tags: - teams.channel summary: Get teamsApp from teams + description: The application that is linked to the tab. operationId: teams.channels.tabs_GetTeamsApp parameters: - name: team-id @@ -7208,6 +7320,7 @@ paths: tags: - teams.channel summary: Get ref of teamsApp from teams + description: The application that is linked to the tab. operationId: teams.channels.tabs_GetRefTeamsApp parameters: - name: team-id @@ -7252,6 +7365,7 @@ paths: tags: - teams.channel summary: Update the ref of navigation property teamsApp in teams + description: The application that is linked to the tab. operationId: teams.channels.tabs_SetRefTeamsApp parameters: - name: team-id @@ -7294,6 +7408,7 @@ paths: tags: - teams.channel summary: Delete ref of navigation property teamsApp for teams + description: The application that is linked to the tab. operationId: teams.channels.tabs_DeleteRefTeamsApp parameters: - name: team-id @@ -7840,6 +7955,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get installedApps from teams + description: The apps installed in this team. operationId: teams_ListInstalledApps parameters: - name: team-id @@ -7922,6 +8038,7 @@ paths: tags: - teams.teamsAppInstallation summary: Create new navigation property to installedApps for teams + description: The apps installed in this team. operationId: teams_CreateInstalledApps parameters: - name: team-id @@ -7953,6 +8070,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get installedApps from teams + description: The apps installed in this team. operationId: teams_GetInstalledApps parameters: - name: team-id @@ -8022,6 +8140,7 @@ paths: tags: - teams.teamsAppInstallation summary: Update the navigation property installedApps in teams + description: The apps installed in this team. operationId: teams_UpdateInstalledApps parameters: - name: team-id @@ -8055,6 +8174,7 @@ paths: tags: - teams.teamsAppInstallation summary: Delete navigation property installedApps for teams + description: The apps installed in this team. operationId: teams_DeleteInstalledApps parameters: - name: team-id @@ -8114,6 +8234,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get teamsApp from teams + description: The app that is installed. operationId: teams.installedApps_GetTeamsApp parameters: - name: team-id @@ -8180,6 +8301,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get ref of teamsApp from teams + description: The app that is installed. operationId: teams.installedApps_GetRefTeamsApp parameters: - name: team-id @@ -8216,6 +8338,7 @@ paths: tags: - teams.teamsAppInstallation summary: Update the ref of navigation property teamsApp in teams + description: The app that is installed. operationId: teams.installedApps_SetRefTeamsApp parameters: - name: team-id @@ -8251,6 +8374,7 @@ paths: tags: - teams.teamsAppInstallation summary: Delete ref of navigation property teamsApp for teams + description: The app that is installed. operationId: teams.installedApps_DeleteRefTeamsApp parameters: - name: team-id @@ -8283,6 +8407,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get teamsAppDefinition from teams + description: The details of this version of the app. operationId: teams.installedApps_GetTeamsAppDefinition parameters: - name: team-id @@ -8370,6 +8495,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get ref of teamsAppDefinition from teams + description: The details of this version of the app. operationId: teams.installedApps_GetRefTeamsAppDefinition parameters: - name: team-id @@ -8416,6 +8542,7 @@ paths: tags: - teams.teamsAppInstallation summary: Update the ref of navigation property teamsAppDefinition in teams + description: The details of this version of the app. operationId: teams.installedApps_SetRefTeamsAppDefinition parameters: - name: team-id @@ -8451,6 +8578,7 @@ paths: tags: - teams.teamsAppInstallation summary: Delete ref of navigation property teamsAppDefinition for teams + description: The details of this version of the app. operationId: teams.installedApps_DeleteRefTeamsAppDefinition parameters: - name: team-id @@ -8483,6 +8611,7 @@ paths: tags: - teams.conversationMember summary: Get members from teams + description: Members and owners of the team. operationId: teams_ListMembers parameters: - name: team-id @@ -8570,6 +8699,7 @@ paths: tags: - teams.conversationMember summary: Create new navigation property to members for teams + description: Members and owners of the team. operationId: teams_CreateMembers parameters: - name: team-id @@ -8601,6 +8731,7 @@ paths: tags: - teams.conversationMember summary: Get members from teams + description: Members and owners of the team. operationId: teams_GetMembers parameters: - name: team-id @@ -8658,6 +8789,7 @@ paths: tags: - teams.conversationMember summary: Update the navigation property members in teams + description: Members and owners of the team. operationId: teams_UpdateMembers parameters: - name: team-id @@ -8691,6 +8823,7 @@ paths: tags: - teams.conversationMember summary: Delete navigation property members for teams + description: Members and owners of the team. operationId: teams_DeleteMembers parameters: - name: team-id @@ -8930,6 +9063,7 @@ paths: tags: - teams.teamsAsyncOperation summary: Get operations from teams + description: The async operations that ran or are running on this team. operationId: teams_ListOperations parameters: - name: team-id @@ -9032,6 +9166,7 @@ paths: tags: - teams.teamsAsyncOperation summary: Create new navigation property to operations for teams + description: The async operations that ran or are running on this team. operationId: teams_CreateOperations parameters: - name: team-id @@ -9063,6 +9198,7 @@ paths: tags: - teams.teamsAsyncOperation summary: Get operations from teams + description: The async operations that ran or are running on this team. operationId: teams_GetOperations parameters: - name: team-id @@ -9125,6 +9261,7 @@ paths: tags: - teams.teamsAsyncOperation summary: Update the navigation property operations in teams + description: The async operations that ran or are running on this team. operationId: teams_UpdateOperations parameters: - name: team-id @@ -9158,6 +9295,7 @@ paths: tags: - teams.teamsAsyncOperation summary: Delete navigation property operations for teams + description: The async operations that ran or are running on this team. operationId: teams_DeleteOperations parameters: - name: team-id @@ -9190,6 +9328,7 @@ paths: tags: - teams.user summary: Get owners from teams + description: 'The list of this team''s owners. Currently, when creating a team using application permissions, exactly one owner must be specified. When using user delegated permissions, no owner can be specified (the current user is the owner). Owner must be specified as an object ID (GUID), not a UPN.' operationId: teams_ListOwners parameters: - name: team-id @@ -9468,6 +9607,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -9540,6 +9680,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -9614,6 +9755,7 @@ paths: tags: - teams.user summary: Get ref of owners from teams + description: 'The list of this team''s owners. Currently, when creating a team using application permissions, exactly one owner must be specified. When using user delegated permissions, no owner can be specified (the current user is the owner). Owner must be specified as an object ID (GUID), not a UPN.' operationId: teams_ListRefOwners parameters: - name: team-id @@ -9818,6 +9960,7 @@ paths: tags: - teams.user summary: Create new navigation property ref to owners for teams + description: 'The list of this team''s owners. Currently, when creating a team using application permissions, exactly one owner must be specified. When using user delegated permissions, no owner can be specified (the current user is the owner). Owner must be specified as an object ID (GUID), not a UPN.' operationId: teams_CreateRefOwners parameters: - name: team-id @@ -9853,6 +9996,7 @@ paths: tags: - teams.profilePhoto summary: Get photo from teams + description: The team photo. operationId: teams_GetPhoto parameters: - name: team-id @@ -9902,6 +10046,7 @@ paths: tags: - teams.profilePhoto summary: Update the navigation property photo in teams + description: The team photo. operationId: teams_UpdatePhoto parameters: - name: team-id @@ -9928,6 +10073,7 @@ paths: tags: - teams.profilePhoto summary: Delete navigation property photo for teams + description: The team photo. operationId: teams_DeletePhoto parameters: - name: team-id @@ -9953,6 +10099,7 @@ paths: tags: - teams.profilePhoto summary: Get media content for the navigation property photo from teams + description: The team photo. operationId: teams_GetPhotoContent parameters: - name: team-id @@ -9977,6 +10124,7 @@ paths: tags: - teams.profilePhoto summary: Update media content for the navigation property photo in teams + description: The team photo. operationId: teams_SetPhotoContent parameters: - name: team-id @@ -10005,6 +10153,7 @@ paths: tags: - teams.channel summary: Get primaryChannel from teams + description: The general channel for the team. operationId: teams_GetPrimaryChannel parameters: - name: team-id @@ -10085,6 +10234,7 @@ paths: tags: - teams.channel summary: Update the navigation property primaryChannel in teams + description: The general channel for the team. operationId: teams_UpdatePrimaryChannel parameters: - name: team-id @@ -10111,6 +10261,7 @@ paths: tags: - teams.channel summary: Delete navigation property primaryChannel for teams + description: The general channel for the team. operationId: teams_DeletePrimaryChannel parameters: - name: team-id @@ -10136,6 +10287,7 @@ paths: tags: - teams.channel summary: Get filesFolder from teams + description: Metadata for the location where the channel's files are stored. operationId: teams.primaryChannel_GetFilesFolder parameters: - name: team-id @@ -10284,6 +10436,7 @@ paths: tags: - teams.channel summary: Update the navigation property filesFolder in teams + description: Metadata for the location where the channel's files are stored. operationId: teams.primaryChannel_UpdateFilesFolder parameters: - name: team-id @@ -10310,6 +10463,7 @@ paths: tags: - teams.channel summary: Delete navigation property filesFolder for teams + description: Metadata for the location where the channel's files are stored. operationId: teams.primaryChannel_DeleteFilesFolder parameters: - name: team-id @@ -10387,6 +10541,7 @@ paths: tags: - teams.channel summary: Get members from teams + description: A collection of membership records associated with the channel. operationId: teams.primaryChannel_ListMembers parameters: - name: team-id @@ -10474,6 +10629,7 @@ paths: tags: - teams.channel summary: Create new navigation property to members for teams + description: A collection of membership records associated with the channel. operationId: teams.primaryChannel_CreateMembers parameters: - name: team-id @@ -10505,6 +10661,7 @@ paths: tags: - teams.channel summary: Get members from teams + description: A collection of membership records associated with the channel. operationId: teams.primaryChannel_GetMembers parameters: - name: team-id @@ -10562,6 +10719,7 @@ paths: tags: - teams.channel summary: Update the navigation property members in teams + description: A collection of membership records associated with the channel. operationId: teams.primaryChannel_UpdateMembers parameters: - name: team-id @@ -10595,6 +10753,7 @@ paths: tags: - teams.channel summary: Delete navigation property members for teams + description: A collection of membership records associated with the channel. operationId: teams.primaryChannel_DeleteMembers parameters: - name: team-id @@ -10667,6 +10826,7 @@ paths: tags: - teams.channel summary: Get messages from teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.primaryChannel_ListMessages parameters: - name: team-id @@ -10707,6 +10867,8 @@ paths: - deletedDateTime desc - etag - etag desc + - eventDetail + - eventDetail desc - from - from desc - importance @@ -10752,6 +10914,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -10809,6 +10972,7 @@ paths: tags: - teams.channel summary: Create new navigation property to messages for teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.primaryChannel_CreateMessages parameters: - name: team-id @@ -10840,6 +11004,7 @@ paths: tags: - teams.channel summary: Get messages from teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.primaryChannel_GetMessages parameters: - name: team-id @@ -10874,6 +11039,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -10929,6 +11095,7 @@ paths: tags: - teams.channel summary: Update the navigation property messages in teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.primaryChannel_UpdateMessages parameters: - name: team-id @@ -10962,6 +11129,7 @@ paths: tags: - teams.channel summary: Delete navigation property messages for teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.primaryChannel_DeleteMessages parameters: - name: team-id @@ -10994,6 +11162,7 @@ paths: tags: - teams.channel summary: Get hostedContents from teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.primaryChannel.messages_ListHostedContents parameters: - name: team-id @@ -11085,6 +11254,7 @@ paths: tags: - teams.channel summary: Create new navigation property to hostedContents for teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.primaryChannel.messages_CreateHostedContents parameters: - name: team-id @@ -11123,6 +11293,7 @@ paths: tags: - teams.channel summary: Get hostedContents from teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.primaryChannel.messages_GetHostedContents parameters: - name: team-id @@ -11186,6 +11357,7 @@ paths: tags: - teams.channel summary: Update the navigation property hostedContents in teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.primaryChannel.messages_UpdateHostedContents parameters: - name: team-id @@ -11226,6 +11398,7 @@ paths: tags: - teams.channel summary: Delete navigation property hostedContents for teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.primaryChannel.messages_DeleteHostedContents parameters: - name: team-id @@ -11265,6 +11438,7 @@ paths: tags: - teams.channel summary: Get replies from teams + description: Replies for a specified message. operationId: teams.primaryChannel.messages_ListReplies parameters: - name: team-id @@ -11312,6 +11486,8 @@ paths: - deletedDateTime desc - etag - etag desc + - eventDetail + - eventDetail desc - from - from desc - importance @@ -11357,6 +11533,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -11414,6 +11591,7 @@ paths: tags: - teams.channel summary: Create new navigation property to replies for teams + description: Replies for a specified message. operationId: teams.primaryChannel.messages_CreateReplies parameters: - name: team-id @@ -11452,6 +11630,7 @@ paths: tags: - teams.channel summary: Get replies from teams + description: Replies for a specified message. operationId: teams.primaryChannel.messages_GetReplies parameters: - name: team-id @@ -11493,6 +11672,7 @@ paths: - createdDateTime - deletedDateTime - etag + - eventDetail - from - importance - lastEditedDateTime @@ -11550,6 +11730,7 @@ paths: tags: - teams.channel summary: Update the navigation property replies in teams + description: Replies for a specified message. operationId: teams.primaryChannel.messages_UpdateReplies parameters: - name: team-id @@ -11590,6 +11771,7 @@ paths: tags: - teams.channel summary: Delete navigation property replies for teams + description: Replies for a specified message. operationId: teams.primaryChannel.messages_DeleteReplies parameters: - name: team-id @@ -11708,6 +11890,7 @@ paths: tags: - teams.channel summary: Get tabs from teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.primaryChannel_ListTabs parameters: - name: team-id @@ -11806,6 +11989,7 @@ paths: tags: - teams.channel summary: Create new navigation property to tabs for teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.primaryChannel_CreateTabs parameters: - name: team-id @@ -11837,6 +12021,7 @@ paths: tags: - teams.channel summary: Get tabs from teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.primaryChannel_GetTabs parameters: - name: team-id @@ -11905,6 +12090,7 @@ paths: tags: - teams.channel summary: Update the navigation property tabs in teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.primaryChannel_UpdateTabs parameters: - name: team-id @@ -11938,6 +12124,7 @@ paths: tags: - teams.channel summary: Delete navigation property tabs for teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.primaryChannel_DeleteTabs parameters: - name: team-id @@ -11970,6 +12157,7 @@ paths: tags: - teams.channel summary: Get teamsApp from teams + description: The application that is linked to the tab. operationId: teams.primaryChannel.tabs_GetTeamsApp parameters: - name: team-id @@ -12036,6 +12224,7 @@ paths: tags: - teams.channel summary: Get ref of teamsApp from teams + description: The application that is linked to the tab. operationId: teams.primaryChannel.tabs_GetRefTeamsApp parameters: - name: team-id @@ -12072,6 +12261,7 @@ paths: tags: - teams.channel summary: Update the ref of navigation property teamsApp in teams + description: The application that is linked to the tab. operationId: teams.primaryChannel.tabs_SetRefTeamsApp parameters: - name: team-id @@ -12107,6 +12297,7 @@ paths: tags: - teams.channel summary: Delete ref of navigation property teamsApp for teams + description: The application that is linked to the tab. operationId: teams.primaryChannel.tabs_DeleteRefTeamsApp parameters: - name: team-id @@ -12139,6 +12330,7 @@ paths: tags: - teams.schedule summary: Get schedule from teams + description: The schedule of shifts for this team. operationId: teams_GetSchedule parameters: - name: team-id @@ -12258,6 +12450,7 @@ paths: tags: - teams.schedule summary: Update the navigation property schedule in teams + description: The schedule of shifts for this team. operationId: teams_UpdateSchedule parameters: - name: team-id @@ -12284,6 +12477,7 @@ paths: tags: - teams.schedule summary: Delete navigation property schedule for teams + description: The schedule of shifts for this team. operationId: teams_DeleteSchedule parameters: - name: team-id @@ -13185,6 +13379,7 @@ paths: tags: - teams.schedule summary: Get schedulingGroups from teams + description: The logical grouping of users in the schedule (usually by role). operationId: teams.schedule_ListSchedulingGroups parameters: - name: team-id @@ -13284,6 +13479,7 @@ paths: tags: - teams.schedule summary: Create new navigation property to schedulingGroups for teams + description: The logical grouping of users in the schedule (usually by role). operationId: teams.schedule_CreateSchedulingGroups parameters: - name: team-id @@ -13315,6 +13511,7 @@ paths: tags: - teams.schedule summary: Get schedulingGroups from teams + description: The logical grouping of users in the schedule (usually by role). operationId: teams.schedule_GetSchedulingGroups parameters: - name: team-id @@ -13376,6 +13573,7 @@ paths: tags: - teams.schedule summary: Update the navigation property schedulingGroups in teams + description: The logical grouping of users in the schedule (usually by role). operationId: teams.schedule_UpdateSchedulingGroups parameters: - name: team-id @@ -13409,6 +13607,7 @@ paths: tags: - teams.schedule summary: Delete navigation property schedulingGroups for teams + description: The logical grouping of users in the schedule (usually by role). operationId: teams.schedule_DeleteSchedulingGroups parameters: - name: team-id @@ -13441,6 +13640,7 @@ paths: tags: - teams.schedule summary: Get shifts from teams + description: The shifts in the schedule. operationId: teams.schedule_ListShifts parameters: - name: team-id @@ -13546,6 +13746,7 @@ paths: tags: - teams.schedule summary: Create new navigation property to shifts for teams + description: The shifts in the schedule. operationId: teams.schedule_CreateShifts parameters: - name: team-id @@ -13577,6 +13778,7 @@ paths: tags: - teams.schedule summary: Get shifts from teams + description: The shifts in the schedule. operationId: teams.schedule_GetShifts parameters: - name: team-id @@ -13640,6 +13842,7 @@ paths: tags: - teams.schedule summary: Update the navigation property shifts in teams + description: The shifts in the schedule. operationId: teams.schedule_UpdateShifts parameters: - name: team-id @@ -13673,6 +13876,7 @@ paths: tags: - teams.schedule summary: Delete navigation property shifts for teams + description: The shifts in the schedule. operationId: teams.schedule_DeleteShifts parameters: - name: team-id @@ -14492,6 +14696,7 @@ paths: tags: - teams.schedule summary: Get timeOffReasons from teams + description: The set of reasons for a time off in the schedule. operationId: teams.schedule_ListTimeOffReasons parameters: - name: team-id @@ -14591,6 +14796,7 @@ paths: tags: - teams.schedule summary: Create new navigation property to timeOffReasons for teams + description: The set of reasons for a time off in the schedule. operationId: teams.schedule_CreateTimeOffReasons parameters: - name: team-id @@ -14622,6 +14828,7 @@ paths: tags: - teams.schedule summary: Get timeOffReasons from teams + description: The set of reasons for a time off in the schedule. operationId: teams.schedule_GetTimeOffReasons parameters: - name: team-id @@ -14683,6 +14890,7 @@ paths: tags: - teams.schedule summary: Update the navigation property timeOffReasons in teams + description: The set of reasons for a time off in the schedule. operationId: teams.schedule_UpdateTimeOffReasons parameters: - name: team-id @@ -14716,6 +14924,7 @@ paths: tags: - teams.schedule summary: Delete navigation property timeOffReasons for teams + description: The set of reasons for a time off in the schedule. operationId: teams.schedule_DeleteTimeOffReasons parameters: - name: team-id @@ -15036,6 +15245,7 @@ paths: tags: - teams.schedule summary: Get timesOff from teams + description: The instances of times off in the schedule. operationId: teams.schedule_ListTimesOff parameters: - name: team-id @@ -15138,6 +15348,7 @@ paths: tags: - teams.schedule summary: Create new navigation property to timesOff for teams + description: The instances of times off in the schedule. operationId: teams.schedule_CreateTimesOff parameters: - name: team-id @@ -15169,6 +15380,7 @@ paths: tags: - teams.schedule summary: Get timesOff from teams + description: The instances of times off in the schedule. operationId: teams.schedule_GetTimesOff parameters: - name: team-id @@ -15231,6 +15443,7 @@ paths: tags: - teams.schedule summary: Update the navigation property timesOff in teams + description: The instances of times off in the schedule. operationId: teams.schedule_UpdateTimesOff parameters: - name: team-id @@ -15264,6 +15477,7 @@ paths: tags: - teams.schedule summary: Delete navigation property timesOff for teams + description: The instances of times off in the schedule. operationId: teams.schedule_DeleteTimesOff parameters: - name: team-id @@ -15829,6 +16043,7 @@ paths: tags: - teams.teamsTemplate summary: Get template from teams + description: The template this team was created from. See available templates. operationId: teams_GetTemplate parameters: - name: team-id @@ -15877,6 +16092,7 @@ paths: tags: - teams.teamsTemplate summary: Get ref of template from teams + description: The template this team was created from. See available templates. operationId: teams_GetRefTemplate parameters: - name: team-id @@ -15900,6 +16116,7 @@ paths: tags: - teams.teamsTemplate summary: Update the ref of navigation property template in teams + description: The template this team was created from. See available templates. operationId: teams_SetRefTemplate parameters: - name: team-id @@ -15928,6 +16145,7 @@ paths: tags: - teams.teamsTemplate summary: Delete ref of navigation property template for teams + description: The template this team was created from. See available templates. operationId: teams_DeleteRefTemplate parameters: - name: team-id @@ -16583,6 +16801,7 @@ paths: tags: - users.team summary: Get joinedTeams from users + description: The Microsoft Teams teams that the user is a member of. Read-only. Nullable. operationId: users_ListJoinedTeams parameters: - name: user-id @@ -16729,6 +16948,7 @@ paths: tags: - users.team summary: Get ref of joinedTeams from users + description: The Microsoft Teams teams that the user is a member of. Read-only. Nullable. operationId: users_ListRefJoinedTeams parameters: - name: user-id @@ -16813,6 +17033,7 @@ paths: tags: - users.team summary: Create new navigation property ref to joinedTeams for users + description: The Microsoft Teams teams that the user is a member of. Read-only. Nullable. operationId: users_CreateRefJoinedTeams parameters: - name: user-id @@ -16848,6 +17069,7 @@ paths: tags: - users.userTeamwork summary: Get teamwork from users + description: A container for Microsoft Teams features available for the user. Read-only. Nullable. operationId: users_GetTeamwork parameters: - name: user-id @@ -16902,6 +17124,7 @@ paths: tags: - users.userTeamwork summary: Update the navigation property teamwork in users + description: A container for Microsoft Teams features available for the user. Read-only. Nullable. operationId: users_UpdateTeamwork parameters: - name: user-id @@ -16928,6 +17151,7 @@ paths: tags: - users.userTeamwork summary: Delete navigation property teamwork for users + description: A container for Microsoft Teams features available for the user. Read-only. Nullable. operationId: users_DeleteTeamwork parameters: - name: user-id @@ -16953,6 +17177,7 @@ paths: tags: - users.userTeamwork summary: Get installedApps from users + description: The apps installed in the personal scope of this user. operationId: users.teamwork_ListInstalledApps parameters: - name: user-id @@ -17037,6 +17262,7 @@ paths: tags: - users.userTeamwork summary: Create new navigation property to installedApps for users + description: The apps installed in the personal scope of this user. operationId: users.teamwork_CreateInstalledApps parameters: - name: user-id @@ -17068,6 +17294,7 @@ paths: tags: - users.userTeamwork summary: Get installedApps from users + description: The apps installed in the personal scope of this user. operationId: users.teamwork_GetInstalledApps parameters: - name: user-id @@ -17144,6 +17371,7 @@ paths: tags: - users.userTeamwork summary: Update the navigation property installedApps in users + description: The apps installed in the personal scope of this user. operationId: users.teamwork_UpdateInstalledApps parameters: - name: user-id @@ -17177,6 +17405,7 @@ paths: tags: - users.userTeamwork summary: Delete navigation property installedApps for users + description: The apps installed in the personal scope of this user. operationId: users.teamwork_DeleteInstalledApps parameters: - name: user-id @@ -17209,6 +17438,7 @@ paths: tags: - users.userTeamwork summary: Get chat from users + description: The chat between the user and Teams app. operationId: users.teamwork.installedApps_GetChat parameters: - name: user-id @@ -17304,6 +17534,7 @@ paths: tags: - users.userTeamwork summary: Get ref of chat from users + description: The chat between the user and Teams app. operationId: users.teamwork.installedApps_GetRefChat parameters: - name: user-id @@ -17360,6 +17591,7 @@ paths: tags: - users.userTeamwork summary: Update the ref of navigation property chat in users + description: The chat between the user and Teams app. operationId: users.teamwork.installedApps_SetRefChat parameters: - name: user-id @@ -17395,6 +17627,7 @@ paths: tags: - users.userTeamwork summary: Delete ref of navigation property chat for users + description: The chat between the user and Teams app. operationId: users.teamwork.installedApps_DeleteRefChat parameters: - name: user-id @@ -17457,7 +17690,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -17481,7 +17714,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -17510,6 +17743,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' @@ -17661,6 +17895,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -17762,10 +17998,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -17794,7 +18030,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -17851,7 +18087,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -18336,6 +18572,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -18494,7 +18731,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -18507,7 +18744,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -18519,12 +18756,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -18533,7 +18770,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -18541,7 +18778,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -18557,7 +18794,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -18573,7 +18810,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -18597,7 +18834,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -18616,11 +18853,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -18628,7 +18865,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -18675,7 +18912,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -18684,7 +18921,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -18722,15 +18959,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -18738,7 +18975,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -18867,6 +19104,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -19608,6 +19849,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -19640,6 +19886,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -21509,7 +21757,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -21776,7 +22024,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -22588,6 +22836,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -22869,16 +23121,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -23547,11 +23799,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -23566,6 +23819,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -23575,7 +23829,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -23612,7 +23866,6 @@ components: 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: @@ -26420,53 +26673,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -26493,6 +26751,35 @@ components: additionalProperties: type: object description: Enrollment Configuration Assignment + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -26889,6 +27176,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -27082,6 +27373,19 @@ components: additionalProperties: type: object description: Logged On User + microsoft.graph.assignmentFilterEvaluationStatusDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: assignmentFilterEvaluationStatusDetails + type: object + properties: + payloadId: + type: string + description: PayloadId on which filter has been applied. + nullable: true + additionalProperties: + type: object + description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceCompliancePolicyState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -27123,19 +27427,6 @@ components: additionalProperties: type: object description: Device Compliance Policy State for a given device. - microsoft.graph.assignmentFilterEvaluationStatusDetails: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: assignmentFilterEvaluationStatusDetails - type: object - properties: - payloadId: - type: string - description: PayloadId on which filter has been applied. - nullable: true - additionalProperties: - type: object - description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceConfigurationState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -28580,10 +28871,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -28654,18 +28957,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -28678,6 +28980,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -28733,7 +29036,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -30759,7 +31061,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -30778,14 +31080,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -30794,18 +31096,18 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object microsoft.graph.deviceAndAppManagementAssignmentSource: @@ -30827,16 +31129,6 @@ components: additionalProperties: type: object description: Base type for assignment targets. - microsoft.graph.configurationManagerClientState: - title: configurationManagerClientState - enum: - - unknown - - installed - - healthy - - installFailed - - updateFailed - - communicationError - type: string microsoft.graph.actionState: title: actionState enum: @@ -30848,6 +31140,35 @@ components: - failed - notSupported type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object + microsoft.graph.configurationManagerClientState: + title: configurationManagerClientState + enum: + - unknown + - installed + - healthy + - installFailed + - updateFailed + - communicationError + type: string microsoft.graph.deviceGuardLocalSystemAuthorityCredentialGuardState: title: deviceGuardLocalSystemAuthorityCredentialGuardState enum: @@ -31835,18 +32156,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -32274,11 +32599,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -32492,17 +32817,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -32510,9 +32840,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -32958,16 +33290,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: @@ -33184,7 +33519,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string diff --git a/openApiDocs/beta/Users.Actions.yml b/openApiDocs/beta/Users.Actions.yml index 8edb0d4b97d..6fc6db778cc 100644 --- a/openApiDocs/beta/Users.Actions.yml +++ b/openApiDocs/beta/Users.Actions.yml @@ -12008,11 +12008,53 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.activateDeviceEsim': + post: + tags: + - users.Actions + summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. + operationId: users.managedDevices_activateDeviceEsim + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + carrierUrl: + 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}/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock': post: tags: - users.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: users.managedDevices_bypassActivationLock parameters: - name: user-id @@ -12040,6 +12082,7 @@ paths: tags: - users.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: users.managedDevices_cleanWindowsDevice parameters: - name: user-id @@ -12123,6 +12166,7 @@ paths: tags: - users.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: users.managedDevices_deleteUserFromSharedAppleDevice parameters: - name: user-id @@ -12163,6 +12207,7 @@ paths: tags: - users.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: users.managedDevices_disableLostMode parameters: - name: user-id @@ -12190,6 +12235,7 @@ paths: tags: - users.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: users.managedDevices_enableLostMode parameters: - name: user-id @@ -12236,6 +12282,7 @@ paths: tags: - users.Actions summary: Invoke action locateDevice + description: Locate a device operationId: users.managedDevices_locateDevice parameters: - name: user-id @@ -12263,6 +12310,7 @@ paths: tags: - users.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: users.managedDevices_logoutSharedAppleDeviceActiveUser parameters: - name: user-id @@ -12332,6 +12380,7 @@ paths: tags: - users.Actions summary: Invoke action playLostModeSound + description: Remote lock operationId: users.managedDevices_playLostModeSound parameters: - name: user-id @@ -12359,6 +12408,7 @@ paths: tags: - users.Actions summary: Invoke action rebootNow + description: Reboot device operationId: users.managedDevices_rebootNow parameters: - name: user-id @@ -12386,6 +12436,7 @@ paths: tags: - users.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: users.managedDevices_recoverPasscode parameters: - name: user-id @@ -12413,6 +12464,7 @@ paths: tags: - users.Actions summary: Invoke action remoteLock + description: Remote lock operationId: users.managedDevices_remoteLock parameters: - name: user-id @@ -12435,11 +12487,39 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.reprovisionCloudPc': + post: + tags: + - users.Actions + summary: Invoke action reprovisionCloudPc + operationId: users.managedDevices_reprovisionCloudPc + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance': post: tags: - users.Actions summary: Invoke action requestRemoteAssistance + description: Request remote assistance operationId: users.managedDevices_requestRemoteAssistance parameters: - name: user-id @@ -12467,6 +12547,7 @@ paths: tags: - users.Actions summary: Invoke action resetPasscode + description: Reset passcode operationId: users.managedDevices_resetPasscode parameters: - name: user-id @@ -12489,11 +12570,52 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.resizeCloudPc': + post: + tags: + - users.Actions + summary: Invoke action resizeCloudPc + operationId: users.managedDevices_resizeCloudPc + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + targetServicePlanId: + 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}/managedDevices/{managedDevice-id}/microsoft.graph.retire': post: tags: - users.Actions summary: Invoke action retire + description: Retire a device operationId: users.managedDevices_retire parameters: - name: user-id @@ -12521,6 +12643,7 @@ paths: tags: - users.Actions summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device operationId: users.managedDevices_revokeAppleVppLicenses parameters: - name: user-id @@ -12548,6 +12671,7 @@ paths: tags: - users.Actions summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys operationId: users.managedDevices_rotateBitLockerKeys parameters: - name: user-id @@ -12643,6 +12767,7 @@ paths: tags: - users.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: users.managedDevices_setDeviceName parameters: - name: user-id @@ -12683,6 +12808,7 @@ paths: tags: - users.Actions summary: Invoke action shutDown + description: Shut down device operationId: users.managedDevices_shutDown parameters: - name: user-id @@ -12737,6 +12863,7 @@ paths: tags: - users.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: users.managedDevices_triggerConfigurationManagerAction parameters: - name: user-id @@ -12882,6 +13009,7 @@ paths: tags: - users.Actions summary: Invoke action wipe + description: Wipe a device operationId: users.managedDevices_wipe parameters: - name: user-id @@ -12916,6 +13044,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true useProtectedWipe: type: boolean default: false @@ -12929,6 +13061,41 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/users/{user-id}/managedDevices/microsoft.graph.bulkReprovisionCloudPc': + post: + tags: + - users.Actions + summary: Invoke action bulkReprovisionCloudPc + operationId: users.managedDevices_bulkReprovisionCloudPc + 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: + managedDeviceIds: + type: array + items: + 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}/managedDevices/microsoft.graph.executeAction': post: tags: @@ -14058,6 +14225,7 @@ paths: tags: - users.Actions summary: Invoke action removeAllDevicesFromManagement + description: Retire all devices from management for this user operationId: users_removeAllDevicesFromManagement parameters: - name: user-id @@ -14232,6 +14400,7 @@ paths: tags: - users.Actions summary: Invoke action unblockManagedApps + description: Unblocks the managed app user from app check-in. operationId: users_unblockManagedApps parameters: - name: user-id @@ -14252,6 +14421,7 @@ paths: tags: - users.Actions summary: Invoke action wipeAndBlockManagedApps + description: Blocks the managed app user from app check-in. operationId: users_wipeAndBlockManagedApps parameters: - name: user-id @@ -14272,6 +14442,7 @@ paths: tags: - users.Actions summary: Invoke action wipeManagedAppRegistrationByDeviceTag + description: Issues a wipe operation on an app registration with specified device tag. operationId: users_wipeManagedAppRegistrationByDeviceTag parameters: - name: user-id @@ -14305,6 +14476,7 @@ paths: tags: - users.Actions summary: Invoke action wipeManagedAppRegistrationsByDeviceTag + description: Issues a wipe operation on an app registration with specified device tag. operationId: users_wipeManagedAppRegistrationsByDeviceTag parameters: - name: user-id @@ -22073,7 +22245,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -22086,7 +22258,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -22098,12 +22270,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -22112,7 +22284,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -22120,7 +22292,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -22136,7 +22308,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -22152,7 +22324,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -22176,7 +22348,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -22195,11 +22367,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -22207,7 +22379,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -22254,7 +22426,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -22263,7 +22435,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -22301,15 +22473,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -22317,7 +22489,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -22446,6 +22618,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -22922,18 +23098,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.onlineMeeting: @@ -22969,7 +23144,6 @@ components: 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: @@ -23133,10 +23307,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -23813,7 +23987,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -24147,7 +24321,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -24682,6 +24856,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -25197,6 +25372,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -25478,16 +25657,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -26216,11 +26395,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -26235,6 +26415,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -26244,7 +26425,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -26382,7 +26563,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -26735,10 +26916,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -26793,6 +26986,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.patternedRecurrence: @@ -27655,7 +27849,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -28633,53 +28827,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -28689,6 +28888,35 @@ components: - declined - unknownFutureValue type: string + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -29085,6 +29313,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -29278,6 +29510,19 @@ components: additionalProperties: type: object description: Logged On User + microsoft.graph.assignmentFilterEvaluationStatusDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: assignmentFilterEvaluationStatusDetails + type: object + properties: + payloadId: + type: string + description: PayloadId on which filter has been applied. + nullable: true + additionalProperties: + type: object + description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceCompliancePolicyState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -29319,19 +29564,6 @@ components: additionalProperties: type: object description: Device Compliance Policy State for a given device. - microsoft.graph.assignmentFilterEvaluationStatusDetails: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: assignmentFilterEvaluationStatusDetails - type: object - properties: - payloadId: - type: string - description: PayloadId on which filter has been applied. - nullable: true - additionalProperties: - type: object - description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceConfigurationState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -30954,7 +31186,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -31236,6 +31467,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -31769,18 +32002,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -33675,7 +33912,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -33694,14 +33931,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -33710,30 +33947,20 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object - microsoft.graph.configurationManagerClientState: - title: configurationManagerClientState - enum: - - unknown - - installed - - healthy - - installFailed - - updateFailed - - communicationError - type: string microsoft.graph.actionState: title: actionState enum: @@ -33745,6 +33972,35 @@ components: - failed - notSupported type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object + microsoft.graph.configurationManagerClientState: + title: configurationManagerClientState + enum: + - unknown + - installed + - healthy + - installFailed + - updateFailed + - communicationError + type: string microsoft.graph.deviceGuardLocalSystemAuthorityCredentialGuardState: title: deviceGuardLocalSystemAuthorityCredentialGuardState enum: @@ -34916,7 +35172,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -34940,7 +35196,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -34998,6 +35254,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -35030,6 +35291,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -35465,16 +35728,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: @@ -35533,17 +35799,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -35551,9 +35822,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -36104,11 +36377,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -36714,6 +36987,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' @@ -37191,7 +37465,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string diff --git a/openApiDocs/beta/Users.Functions.yml b/openApiDocs/beta/Users.Functions.yml index 9170853e616..8d250ec83c6 100644 --- a/openApiDocs/beta/Users.Functions.yml +++ b/openApiDocs/beta/Users.Functions.yml @@ -1837,6 +1837,39 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.getCloudPcRemoteActionResults()': + get: + tags: + - users.Functions + summary: Invoke function getCloudPcRemoteActionResults + operationId: users.managedDevices_getCloudPcRemoteActionResults + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + schema: + type: string + x-ms-docs-key-type: managedDevice + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey()': get: tags: @@ -2135,6 +2168,7 @@ paths: tags: - users.Functions summary: Invoke function getManagedAppDiagnosticStatuses + description: Gets diagnostics validation status for a given user. operationId: users_getManagedAppDiagnosticStatuses parameters: - name: user-id @@ -2161,6 +2195,7 @@ paths: tags: - users.Functions summary: Invoke function getManagedAppPolicies + description: Gets app restrictions for a given user. operationId: users_getManagedAppPolicies parameters: - name: user-id @@ -2187,6 +2222,7 @@ paths: tags: - users.Functions summary: Invoke function getManagedDevicesWithAppFailures + description: Retrieves the list of devices with failed apps operationId: users_getManagedDevicesWithAppFailures parameters: - name: user-id @@ -2214,6 +2250,7 @@ paths: tags: - users.Functions summary: Invoke function getManagedDevicesWithFailedOrPendingApps + description: Retrieves the list of devices with failed or pending apps operationId: users_getManagedDevicesWithFailedOrPendingApps parameters: - name: user-id @@ -2240,6 +2277,7 @@ paths: tags: - users.Functions summary: Invoke function isManagedAppUserBlocked + description: Gets the blocked state of a managed app user. operationId: users_isManagedAppUserBlocked parameters: - name: user-id @@ -2807,6 +2845,77 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/microsoft.graph.filterByCurrentUser(on={on})': + get: + tags: + - users.Functions + summary: Invoke function filterByCurrentUser + operationId: users.pendingAccessReviewInstances.decisions_filterByCurrentUser + 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 + - name: on + in: path + description: 'Usage: on={on}' + required: true + schema: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions' + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + '/users/{user-id}/pendingAccessReviewInstances/microsoft.graph.filterByCurrentUser(on={on})': + get: + tags: + - users.Functions + summary: Invoke function filterByCurrentUser + operationId: users.pendingAccessReviewInstances_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.accessReviewInstanceFilterByCurrentUserOptions' + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/users/{user-id}/planner/all/microsoft.graph.delta()': get: tags: @@ -3665,6 +3774,35 @@ components: description: The collection of single-value extended properties defined for the message. Nullable. additionalProperties: type: object + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.deviceCompliancePolicySettingState: title: deviceCompliancePolicySettingState type: object @@ -3805,6 +3943,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -4086,16 +4228,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -4296,6 +4438,106 @@ components: - windows - iana type: string + microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions: + title: accessReviewInstanceDecisionItemFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewInstanceDecisionItem: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewInstanceDecisionItem + type: object + properties: + accessReviewId: + type: string + description: The identifier of the accessReviewInstance parent. + appliedBy: + $ref: '#/components/schemas/microsoft.graph.userIdentity' + 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 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: + type: string + description: 'The result of applying the decision. Possible values: NotApplied, Success, Failed, NotFound, or NotSupported.' + nullable: true + decision: + type: string + description: 'Result of the review. Possible values: Approve, Deny, NotReviewed, or DontKnow.' + nullable: true + justification: + 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 timestamp when the review occurred. + format: date-time + nullable: true + target: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemTarget' + additionalProperties: + type: object + microsoft.graph.accessReviewInstanceFilterByCurrentUserOptions: + title: accessReviewInstanceFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewInstance: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewInstance + 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: '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: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + 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. 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: + type: string + description: 'Specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Read-only.' + nullable: true + decisions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' + description: 'Each user reviewed in an accessReviewInstance has a decision item representing if their access was approved, denied, or not yet reviewed.' + definition: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinition' + additionalProperties: + type: object microsoft.graph.plannerDelta: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -4407,7 +4649,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -4420,7 +4662,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -4432,12 +4674,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -4446,7 +4688,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -4454,7 +4696,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -4470,7 +4712,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -4486,7 +4728,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -4510,7 +4752,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -4529,11 +4771,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -4541,7 +4783,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -4588,7 +4830,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -4597,7 +4839,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -4635,15 +4877,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -4651,7 +4893,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -4780,6 +5022,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -5717,6 +5963,36 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.actionState: + title: actionState + enum: + - none + - pending + - canceled + - active + - done + - failed + - notSupported + type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object microsoft.graph.settingSource: title: settingSource type: object @@ -6158,6 +6434,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -6351,6 +6631,19 @@ components: additionalProperties: type: object description: Logged On User + microsoft.graph.assignmentFilterEvaluationStatusDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: assignmentFilterEvaluationStatusDetails + type: object + properties: + payloadId: + type: string + description: PayloadId on which filter has been applied. + nullable: true + additionalProperties: + type: object + description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceCompliancePolicyState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -6392,19 +6685,6 @@ components: additionalProperties: type: object description: Device Compliance Policy State for a given device. - microsoft.graph.assignmentFilterEvaluationStatusDetails: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: assignmentFilterEvaluationStatusDetails - type: object - properties: - payloadId: - type: string - description: PayloadId on which filter has been applied. - nullable: true - additionalProperties: - type: object - description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceConfigurationState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -6749,6 +7029,128 @@ components: - OneDriveForBusiness - OnPremOneDriveForBusiness type: string + 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.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.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.accessReviewScope: + title: accessReviewScope + type: object + additionalProperties: + type: object + microsoft.graph.accessReviewScheduleDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewScheduleDefinition + type: object + properties: + backupReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' + 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 + description: Timestamp when the access review series was created. Supports $select. + format: date-time + nullable: true + descriptionForAdmins: + type: string + description: Description provided by review creators to provide more context of the review to admins. Supports $select. + nullable: true + descriptionForReviewers: + type: string + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. + nullable: true + displayName: + type: string + description: Name of the access review series. Required on create. Supports $select. + nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' + instanceEnumerationScope: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Timestamp when the access review series was last modified. Supports $select. + format: date-time + nullable: true + reviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' + scope: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + settings: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' + status: + type: string + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' + nullable: true + instances: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' + additionalProperties: + type: object microsoft.graph.taskStatus: title: taskStatus enum: @@ -6907,7 +7309,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -7241,7 +7643,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -7574,6 +7976,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -7897,39 +8300,6 @@ components: $ref: '#/components/schemas/microsoft.graph.onenote' additionalProperties: type: object - microsoft.graph.accessReviewInstance: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewInstance - 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: '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: - $ref: '#/components/schemas/microsoft.graph.accessReviewScope' - 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. 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: - type: string - description: 'Specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Read-only.' - nullable: true - decisions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' - description: 'Each user reviewed in an accessReviewInstance has a decision item representing if their access was approved, denied, or not yet reviewed.' - definition: - $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinition' - additionalProperties: - type: object microsoft.graph.agreementAcceptance: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -8599,11 +8969,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -8618,6 +8989,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -8627,7 +8999,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -8664,7 +9036,6 @@ components: 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: @@ -8868,7 +9239,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -9013,20 +9384,6 @@ components: $ref: '#/components/schemas/microsoft.graph.identity' 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.attendeeBase: allOf: - $ref: '#/components/schemas/microsoft.graph.recipient' @@ -9456,6 +9813,19 @@ components: $ref: '#/components/schemas/microsoft.graph.sizeRange' additionalProperties: type: object + microsoft.graph.keyValuePair: + title: keyValuePair + type: object + properties: + name: + type: string + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' + value: + type: string + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' + nullable: true + additionalProperties: + type: object microsoft.graph.settingSourceType: title: settingSourceType enum: @@ -9491,17 +9861,6 @@ components: - updateFailed - communicationError type: string - microsoft.graph.actionState: - title: actionState - enum: - - none - - pending - - canceled - - active - - done - - failed - - notSupported - type: string microsoft.graph.deviceGuardLocalSystemAuthorityCredentialGuardState: title: deviceGuardLocalSystemAuthorityCredentialGuardState enum: @@ -9829,6 +10188,67 @@ components: nullable: true additionalProperties: type: object + 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, for example, ./manager, is specified. Possible value: decisions.' + nullable: true + queryType: + type: string + description: The type of query. Examples include MicrosoftGraph and ARM. + nullable: true + additionalProperties: + type: object + microsoft.graph.accessReviewScheduleSettings: + title: accessReviewScheduleSettings + type: object + properties: + applyActions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewApplyAction' + description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' + autoApplyDecisionsEnabled: + type: boolean + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' + defaultDecision: + type: string + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' + nullable: true + defaultDecisionEnabled: + type: boolean + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. + instanceDurationInDays: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Duration of each recurrence of review (accessReviewInstance) in number of days. + format: int32 + justificationRequiredOnApproval: + type: boolean + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. + mailNotificationsEnabled: + type: boolean + description: Indicates whether emails are enabled or disabled. Default value is false. + recommendationsEnabled: + type: boolean + description: Indicates whether decision recommendations are enabled/disabled. + recurrence: + $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' + reminderNotificationsEnabled: + type: boolean + description: Indicates whether reminders are enabled or disabled. Default value is false. + additionalProperties: + type: object microsoft.graph.automaticRepliesSetting: title: automaticRepliesSetting type: object @@ -10223,7 +10643,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -11132,125 +11552,6 @@ components: description: Collection of all sets available in the term store. additionalProperties: type: object - microsoft.graph.accessReviewScope: - title: accessReviewScope - type: object - additionalProperties: - type: object - microsoft.graph.accessReviewInstanceDecisionItem: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewInstanceDecisionItem - type: object - properties: - accessReviewId: - type: string - description: The identifier of the accessReviewInstance parent. - appliedBy: - $ref: '#/components/schemas/microsoft.graph.userIdentity' - 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 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: - type: string - description: 'The result of applying the decision. Possible values: NotApplied, Success, Failed, NotFound, or NotSupported.' - nullable: true - decision: - type: string - description: 'Result of the review. Possible values: Approve, Deny, NotReviewed, or DontKnow.' - nullable: true - justification: - 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 timestamp when the review occurred. - format: date-time - nullable: true - target: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemTarget' - additionalProperties: - type: object - microsoft.graph.accessReviewScheduleDefinition: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewScheduleDefinition - type: object - properties: - backupReviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' - 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 - description: Timestamp when review series was created. - format: date-time - nullable: true - descriptionForAdmins: - type: string - description: Description provided by review creators to provide more context of the review to admins. - nullable: true - descriptionForReviewers: - type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. - nullable: true - displayName: - type: string - description: Name of access review series. Required on create. - nullable: true - instanceEnumerationScope: - $ref: '#/components/schemas/microsoft.graph.accessReviewScope' - lastModifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Timestamp when review series was last modified. - format: date-time - nullable: true - reviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. - scope: - $ref: '#/components/schemas/microsoft.graph.accessReviewScope' - settings: - $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' - status: - type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' - nullable: true - instances: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' - additionalProperties: - type: object microsoft.graph.agreementAcceptanceState: title: agreementAcceptanceState enum: @@ -11298,19 +11599,6 @@ components: additionalProperties: type: object description: Represents an operation applied against an app registration. - 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 microsoft.graph.deviceManagementTroubleshootingErrorDetails: title: deviceManagementTroubleshootingErrorDetails type: object @@ -12506,10 +12794,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -12580,18 +12880,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -12604,6 +12903,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -12659,7 +12959,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -12941,6 +13240,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -13613,6 +13914,11 @@ components: - allowed - noStatusCleared type: string + microsoft.graph.accessReviewApplyAction: + title: accessReviewApplyAction + type: object + additionalProperties: + type: object microsoft.graph.externalAudienceScope: title: externalAudienceScope enum: @@ -15207,106 +15513,6 @@ components: description: All the terms under the set. 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 - 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 - microsoft.graph.accessReviewScheduleSettings: - title: accessReviewScheduleSettings - type: object - properties: - applyActions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewApplyAction' - description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' - autoApplyDecisionsEnabled: - type: boolean - description: Flag to indicate whether auto-apply feature is enabled. - defaultDecision: - type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' - nullable: true - defaultDecisionEnabled: - type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. - instanceDurationInDays: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Duration of each recurrence of review (accessReviewInstance) in number of days. - format: int32 - justificationRequiredOnApproval: - type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. - mailNotificationsEnabled: - type: boolean - description: Flag to indicate whether emails are enabled/disabled. - recommendationsEnabled: - type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. - recurrence: - $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' - reminderNotificationsEnabled: - type: boolean - description: Flag to indicate whether reminders are enabled/disabled. - additionalProperties: - type: object microsoft.graph.deviceManagementTroubleshootingErrorResource: title: deviceManagementTroubleshootingErrorResource type: object @@ -16089,18 +16295,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -16179,7 +16389,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -16203,7 +16413,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -16261,6 +16471,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -16293,6 +16508,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -16700,17 +16917,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -16718,9 +16940,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -17271,11 +17495,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -17342,11 +17566,6 @@ components: $ref: '#/components/schemas/microsoft.graph.termStore.term' additionalProperties: type: object - microsoft.graph.accessReviewApplyAction: - title: accessReviewApplyAction - type: object - additionalProperties: - type: object microsoft.graph.plannerContainerType: title: plannerContainerType enum: @@ -17721,16 +17940,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: @@ -17774,6 +17996,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' @@ -18227,7 +18450,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string diff --git a/openApiDocs/beta/Users.yml b/openApiDocs/beta/Users.yml index db22f44ab70..e26b96acc11 100644 --- a/openApiDocs/beta/Users.yml +++ b/openApiDocs/beta/Users.yml @@ -15,10 +15,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -292,6 +291,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -364,6 +364,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -460,6 +461,7 @@ paths: tags: - users.user summary: Get entity from users by key + description: Represents an Azure Active Directory user object. operationId: users.user_GetUser parameters: - name: user-id @@ -471,10 +473,9 @@ paths: x-ms-docs-key-type: user - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -580,6 +581,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -652,6 +654,7 @@ paths: - registeredDevices - scopedRoleMemberOf - transitiveMemberOf + - transitiveReports - calendar - calendarGroups - calendars @@ -766,6 +769,10 @@ paths: operationId: users.ListTransitiveMemberOf parameters: user-id: $request.path.user-id + transitiveReports: + operationId: users.ListTransitiveReports + parameters: + user-id: $request.path.user-id calendar: operationId: users.GetCalendar parameters: @@ -953,6 +960,7 @@ paths: tags: - users.user summary: Update entity in users + description: Represents an Azure Active Directory user object. operationId: users.user_UpdateUser parameters: - name: user-id @@ -979,6 +987,7 @@ paths: tags: - users.user summary: Delete entity from users + description: Represents an Azure Active Directory user object. operationId: users.user_DeleteUser parameters: - name: user-id @@ -1004,6 +1013,7 @@ paths: tags: - users.directoryObject summary: Get createdObjects from users + description: Directory objects that were created by the user. Read-only. Nullable. operationId: users_ListCreatedObjects parameters: - name: user-id @@ -1086,6 +1096,7 @@ paths: tags: - users.directoryObject summary: Get ref of createdObjects from users + description: Directory objects that were created by the user. Read-only. Nullable. operationId: users_ListRefCreatedObjects parameters: - name: user-id @@ -1142,6 +1153,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to createdObjects for users + description: Directory objects that were created by the user. Read-only. Nullable. operationId: users_CreateRefCreatedObjects parameters: - name: user-id @@ -1177,6 +1189,7 @@ paths: tags: - users.directoryObject summary: Get directReports from users + description: The users and contacts that report to the user. (The users and contacts that have their manager property set to this user.) Read-only. Nullable. operationId: users_ListDirectReports parameters: - name: user-id @@ -1259,6 +1272,7 @@ paths: tags: - users.directoryObject summary: Get ref of directReports from users + description: The users and contacts that report to the user. (The users and contacts that have their manager property set to this user.) Read-only. Nullable. operationId: users_ListRefDirectReports parameters: - name: user-id @@ -1315,6 +1329,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to directReports for users + description: The users and contacts that report to the user. (The users and contacts that have their manager property set to this user.) Read-only. Nullable. operationId: users_CreateRefDirectReports parameters: - name: user-id @@ -1350,6 +1365,7 @@ paths: tags: - users.extension summary: Get extensions from users + description: The collection of open extensions defined for the user. Nullable. operationId: users_ListExtensions parameters: - name: user-id @@ -1428,6 +1444,7 @@ paths: tags: - users.extension summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the user. Nullable. operationId: users_CreateExtensions parameters: - name: user-id @@ -1459,6 +1476,7 @@ paths: tags: - users.extension summary: Get extensions from users + description: The collection of open extensions defined for the user. Nullable. operationId: users_GetExtensions parameters: - name: user-id @@ -1513,6 +1531,7 @@ paths: tags: - users.extension summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the user. Nullable. operationId: users_UpdateExtensions parameters: - name: user-id @@ -1546,6 +1565,7 @@ paths: tags: - users.extension summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the user. Nullable. operationId: users_DeleteExtensions parameters: - name: user-id @@ -1578,6 +1598,7 @@ paths: tags: - users.licenseDetails summary: Get licenseDetails from users + description: A collection of this user's license details. Read-only. operationId: users_ListLicenseDetails parameters: - name: user-id @@ -1665,6 +1686,7 @@ paths: tags: - users.licenseDetails summary: Create new navigation property to licenseDetails for users + description: A collection of this user's license details. Read-only. operationId: users_CreateLicenseDetails parameters: - name: user-id @@ -1696,6 +1718,7 @@ paths: tags: - users.licenseDetails summary: Get licenseDetails from users + description: A collection of this user's license details. Read-only. operationId: users_GetLicenseDetails parameters: - name: user-id @@ -1753,6 +1776,7 @@ paths: tags: - users.licenseDetails summary: Update the navigation property licenseDetails in users + description: A collection of this user's license details. Read-only. operationId: users_UpdateLicenseDetails parameters: - name: user-id @@ -1786,6 +1810,7 @@ paths: tags: - users.licenseDetails summary: Delete navigation property licenseDetails for users + description: A collection of this user's license details. Read-only. operationId: users_DeleteLicenseDetails parameters: - name: user-id @@ -1818,6 +1843,7 @@ paths: tags: - users.directoryObject summary: Get manager from users + description: 'The user or contact that is this user''s manager. Read-only. (HTTP Methods: GET, PUT, DELETE.)' operationId: users_GetManager parameters: - name: user-id @@ -1867,6 +1893,7 @@ paths: tags: - users.directoryObject summary: Get ref of manager from users + description: 'The user or contact that is this user''s manager. Read-only. (HTTP Methods: GET, PUT, DELETE.)' operationId: users_GetRefManager parameters: - name: user-id @@ -1890,6 +1917,7 @@ paths: tags: - users.directoryObject summary: Update the ref of navigation property manager in users + description: 'The user or contact that is this user''s manager. Read-only. (HTTP Methods: GET, PUT, DELETE.)' operationId: users_SetRefManager parameters: - name: user-id @@ -1918,6 +1946,7 @@ paths: tags: - users.directoryObject summary: Delete ref of navigation property manager for users + description: 'The user or contact that is this user''s manager. Read-only. (HTTP Methods: GET, PUT, DELETE.)' operationId: users_DeleteRefManager parameters: - name: user-id @@ -1943,6 +1972,7 @@ paths: tags: - users.directoryObject summary: Get memberOf from users + description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.' operationId: users_ListMemberOf parameters: - name: user-id @@ -2025,6 +2055,7 @@ paths: tags: - users.directoryObject summary: Get ref of memberOf from users + description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.' operationId: users_ListRefMemberOf parameters: - name: user-id @@ -2081,6 +2112,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to memberOf for users + description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.' operationId: users_CreateRefMemberOf parameters: - name: user-id @@ -2575,6 +2607,7 @@ paths: tags: - users.outlookUser summary: Get outlook from users + description: Selective Outlook services available to the user. Read-only. Nullable. operationId: users_GetOutlook parameters: - name: user-id @@ -2647,6 +2680,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property outlook in users + description: Selective Outlook services available to the user. Read-only. Nullable. operationId: users_UpdateOutlook parameters: - name: user-id @@ -2673,6 +2707,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property outlook for users + description: Selective Outlook services available to the user. Read-only. Nullable. operationId: users_DeleteOutlook parameters: - name: user-id @@ -2698,6 +2733,7 @@ paths: tags: - users.outlookUser summary: Get masterCategories from users + description: A list of categories defined for the user. operationId: users.outlook_ListMasterCategories parameters: - name: user-id @@ -2782,6 +2818,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to masterCategories for users + description: A list of categories defined for the user. operationId: users.outlook_CreateMasterCategories parameters: - name: user-id @@ -2813,6 +2850,7 @@ paths: tags: - users.outlookUser summary: Get masterCategories from users + description: A list of categories defined for the user. operationId: users.outlook_GetMasterCategories parameters: - name: user-id @@ -2869,6 +2907,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property masterCategories in users + description: A list of categories defined for the user. operationId: users.outlook_UpdateMasterCategories parameters: - name: user-id @@ -2902,6 +2941,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property masterCategories for users + description: A list of categories defined for the user. operationId: users.outlook_DeleteMasterCategories parameters: - name: user-id @@ -3206,6 +3246,7 @@ paths: tags: - users.outlookUser summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_ListMultiValueExtendedProperties parameters: - name: user-id @@ -3294,6 +3335,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -3332,6 +3374,7 @@ paths: tags: - users.outlookUser summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_GetMultiValueExtendedProperties parameters: - name: user-id @@ -3394,6 +3437,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -3434,6 +3478,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -3473,6 +3518,7 @@ paths: tags: - users.outlookUser summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_ListSingleValueExtendedProperties parameters: - name: user-id @@ -3561,6 +3607,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -3599,6 +3646,7 @@ paths: tags: - users.outlookUser summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_GetSingleValueExtendedProperties parameters: - name: user-id @@ -3661,6 +3709,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -3701,6 +3750,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -3740,6 +3790,7 @@ paths: tags: - users.outlookUser summary: Get tasks from users + description: The tasks in this task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_ListTasks parameters: - name: user-id @@ -3888,6 +3939,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to tasks for users + description: The tasks in this task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_CreateTasks parameters: - name: user-id @@ -3926,6 +3978,7 @@ paths: tags: - users.outlookUser summary: Get tasks from users + description: The tasks in this task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_GetTasks parameters: - name: user-id @@ -4031,6 +4084,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property tasks in users + description: The tasks in this task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_UpdateTasks parameters: - name: user-id @@ -4071,6 +4125,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property tasks for users + description: The tasks in this task folder. Read-only. Nullable. operationId: users.outlook.taskFolders_DeleteTasks parameters: - name: user-id @@ -4110,6 +4165,7 @@ paths: tags: - users.outlookUser summary: Get attachments from users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.taskFolders.tasks_ListAttachments parameters: - name: user-id @@ -4217,6 +4273,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to attachments for users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.taskFolders.tasks_CreateAttachments parameters: - name: user-id @@ -4262,6 +4319,7 @@ paths: tags: - users.outlookUser summary: Get attachments from users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.taskFolders.tasks_GetAttachments parameters: - name: user-id @@ -4335,6 +4393,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property attachments in users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.taskFolders.tasks_UpdateAttachments parameters: - name: user-id @@ -4382,6 +4441,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property attachments for users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.taskFolders.tasks_DeleteAttachments parameters: - name: user-id @@ -4428,6 +4488,7 @@ paths: tags: - users.outlookUser summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskFolders.tasks_ListMultiValueExtendedProperties parameters: - name: user-id @@ -4523,6 +4584,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskFolders.tasks_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -4568,6 +4630,7 @@ paths: tags: - users.outlookUser summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskFolders.tasks_GetMultiValueExtendedProperties parameters: - name: user-id @@ -4637,6 +4700,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskFolders.tasks_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -4684,6 +4748,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskFolders.tasks_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -4730,6 +4795,7 @@ paths: tags: - users.outlookUser summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskFolders.tasks_ListSingleValueExtendedProperties parameters: - name: user-id @@ -4825,6 +4891,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskFolders.tasks_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -4870,6 +4937,7 @@ paths: tags: - users.outlookUser summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskFolders.tasks_GetSingleValueExtendedProperties parameters: - name: user-id @@ -4939,6 +5007,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskFolders.tasks_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -4986,6 +5055,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskFolders.tasks_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -5286,6 +5356,7 @@ paths: tags: - users.outlookUser summary: Get taskFolders from users + description: The collection of task folders in the task group. Read-only. Nullable. operationId: users.outlook.taskGroups_ListTaskFolders parameters: - name: user-id @@ -5389,6 +5460,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to taskFolders for users + description: The collection of task folders in the task group. Read-only. Nullable. operationId: users.outlook.taskGroups_CreateTaskFolders parameters: - name: user-id @@ -5427,6 +5499,7 @@ paths: tags: - users.outlookUser summary: Get taskFolders from users + description: The collection of task folders in the task group. Read-only. Nullable. operationId: users.outlook.taskGroups_GetTaskFolders parameters: - name: user-id @@ -5517,6 +5590,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property taskFolders in users + description: The collection of task folders in the task group. Read-only. Nullable. operationId: users.outlook.taskGroups_UpdateTaskFolders parameters: - name: user-id @@ -5557,6 +5631,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property taskFolders for users + description: The collection of task folders in the task group. Read-only. Nullable. operationId: users.outlook.taskGroups_DeleteTaskFolders parameters: - name: user-id @@ -5596,6 +5671,7 @@ paths: tags: - users.outlookUser summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_ListMultiValueExtendedProperties parameters: - name: user-id @@ -5691,6 +5767,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -5736,6 +5813,7 @@ paths: tags: - users.outlookUser summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_GetMultiValueExtendedProperties parameters: - name: user-id @@ -5805,6 +5883,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -5852,6 +5931,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -5898,6 +5978,7 @@ paths: tags: - users.outlookUser summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_ListSingleValueExtendedProperties parameters: - name: user-id @@ -5993,6 +6074,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -6038,6 +6120,7 @@ paths: tags: - users.outlookUser summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_GetSingleValueExtendedProperties parameters: - name: user-id @@ -6107,6 +6190,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -6154,6 +6238,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -6200,6 +6285,7 @@ paths: tags: - users.outlookUser summary: Get tasks from users + description: The tasks in this task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_ListTasks parameters: - name: user-id @@ -6355,6 +6441,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to tasks for users + description: The tasks in this task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_CreateTasks parameters: - name: user-id @@ -6400,6 +6487,7 @@ paths: tags: - users.outlookUser summary: Get tasks from users + description: The tasks in this task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_GetTasks parameters: - name: user-id @@ -6515,6 +6603,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property tasks in users + description: The tasks in this task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_UpdateTasks parameters: - name: user-id @@ -6562,6 +6651,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property tasks for users + description: The tasks in this task folder. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders_DeleteTasks parameters: - name: user-id @@ -6608,6 +6698,7 @@ paths: tags: - users.outlookUser summary: Get attachments from users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.taskGroups.taskFolders.tasks_ListAttachments parameters: - name: user-id @@ -6722,6 +6813,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to attachments for users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.taskGroups.taskFolders.tasks_CreateAttachments parameters: - name: user-id @@ -6774,6 +6866,7 @@ paths: tags: - users.outlookUser summary: Get attachments from users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.taskGroups.taskFolders.tasks_GetAttachments parameters: - name: user-id @@ -6854,6 +6947,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property attachments in users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.taskGroups.taskFolders.tasks_UpdateAttachments parameters: - name: user-id @@ -6908,6 +7002,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property attachments for users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.taskGroups.taskFolders.tasks_DeleteAttachments parameters: - name: user-id @@ -6961,6 +7056,7 @@ paths: tags: - users.outlookUser summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders.tasks_ListMultiValueExtendedProperties parameters: - name: user-id @@ -7063,6 +7159,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders.tasks_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -7115,6 +7212,7 @@ paths: tags: - users.outlookUser summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders.tasks_GetMultiValueExtendedProperties parameters: - name: user-id @@ -7191,6 +7289,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders.tasks_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -7245,6 +7344,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders.tasks_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -7298,6 +7398,7 @@ paths: tags: - users.outlookUser summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders.tasks_ListSingleValueExtendedProperties parameters: - name: user-id @@ -7400,6 +7501,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders.tasks_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -7452,6 +7554,7 @@ paths: tags: - users.outlookUser summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders.tasks_GetSingleValueExtendedProperties parameters: - name: user-id @@ -7528,6 +7631,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders.tasks_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -7582,6 +7686,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.taskGroups.taskFolders.tasks_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -7967,6 +8072,7 @@ paths: tags: - users.outlookUser summary: Get attachments from users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.tasks_ListAttachments parameters: - name: user-id @@ -8067,6 +8173,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to attachments for users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.tasks_CreateAttachments parameters: - name: user-id @@ -8105,6 +8212,7 @@ paths: tags: - users.outlookUser summary: Get attachments from users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.tasks_GetAttachments parameters: - name: user-id @@ -8171,6 +8279,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property attachments in users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.tasks_UpdateAttachments parameters: - name: user-id @@ -8211,6 +8320,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property attachments for users + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the task. Read-only. Nullable.' operationId: users.outlook.tasks_DeleteAttachments parameters: - name: user-id @@ -8250,6 +8360,7 @@ paths: tags: - users.outlookUser summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.tasks_ListMultiValueExtendedProperties parameters: - name: user-id @@ -8338,6 +8449,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.tasks_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -8376,6 +8488,7 @@ paths: tags: - users.outlookUser summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.tasks_GetMultiValueExtendedProperties parameters: - name: user-id @@ -8438,6 +8551,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.tasks_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -8478,6 +8592,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.tasks_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -8517,6 +8632,7 @@ paths: tags: - users.outlookUser summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.tasks_ListSingleValueExtendedProperties parameters: - name: user-id @@ -8605,6 +8721,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.tasks_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -8643,6 +8760,7 @@ paths: tags: - users.outlookUser summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.tasks_GetSingleValueExtendedProperties parameters: - name: user-id @@ -8705,6 +8823,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.tasks_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -8745,6 +8864,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the task. Read-only. Nullable. operationId: users.outlook.tasks_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -8784,6 +8904,7 @@ paths: tags: - users.directoryObject summary: Get ownedDevices from users + description: Devices that are owned by the user. Read-only. Nullable. operationId: users_ListOwnedDevices parameters: - name: user-id @@ -8866,6 +8987,7 @@ paths: tags: - users.directoryObject summary: Get ref of ownedDevices from users + description: Devices that are owned by the user. Read-only. Nullable. operationId: users_ListRefOwnedDevices parameters: - name: user-id @@ -8922,6 +9044,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to ownedDevices for users + description: Devices that are owned by the user. Read-only. Nullable. operationId: users_CreateRefOwnedDevices parameters: - name: user-id @@ -8957,6 +9080,7 @@ paths: tags: - users.directoryObject summary: Get ownedObjects from users + description: Directory objects that are owned by the user. Read-only. Nullable. operationId: users_ListOwnedObjects parameters: - name: user-id @@ -9039,6 +9163,7 @@ paths: tags: - users.directoryObject summary: Get ref of ownedObjects from users + description: Directory objects that are owned by the user. Read-only. Nullable. operationId: users_ListRefOwnedObjects parameters: - name: user-id @@ -9095,6 +9220,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to ownedObjects for users + description: Directory objects that are owned by the user. Read-only. Nullable. operationId: users_CreateRefOwnedObjects parameters: - name: user-id @@ -9130,6 +9256,7 @@ paths: tags: - users.profilePhoto summary: Get photo from users + description: The user's profile photo. Read-only. operationId: users_GetPhoto parameters: - name: user-id @@ -9179,6 +9306,7 @@ paths: tags: - users.profilePhoto summary: Update the navigation property photo in users + description: The user's profile photo. Read-only. operationId: users_UpdatePhoto parameters: - name: user-id @@ -9205,6 +9333,7 @@ paths: tags: - users.profilePhoto summary: Delete navigation property photo for users + description: The user's profile photo. Read-only. operationId: users_DeletePhoto parameters: - name: user-id @@ -9230,6 +9359,7 @@ paths: tags: - users.profilePhoto summary: Get media content for the navigation property photo from users + description: The user's profile photo. Read-only. operationId: users_GetPhotoContent parameters: - name: user-id @@ -9254,6 +9384,7 @@ paths: tags: - users.profilePhoto summary: Update media content for the navigation property photo in users + description: The user's profile photo. Read-only. operationId: users_SetPhotoContent parameters: - name: user-id @@ -9282,6 +9413,7 @@ paths: tags: - users.profilePhoto summary: Get photos from users + description: Read-only. Nullable. operationId: users_ListPhotos parameters: - name: user-id @@ -9366,6 +9498,7 @@ paths: tags: - users.profilePhoto summary: Create new navigation property to photos for users + description: Read-only. Nullable. operationId: users_CreatePhotos parameters: - name: user-id @@ -9397,6 +9530,7 @@ paths: tags: - users.profilePhoto summary: Get photos from users + description: Read-only. Nullable. operationId: users_GetPhotos parameters: - name: user-id @@ -9453,6 +9587,7 @@ paths: tags: - users.profilePhoto summary: Update the navigation property photos in users + description: Read-only. Nullable. operationId: users_UpdatePhotos parameters: - name: user-id @@ -9486,6 +9621,7 @@ paths: tags: - users.profilePhoto summary: Delete navigation property photos for users + description: Read-only. Nullable. operationId: users_DeletePhotos parameters: - name: user-id @@ -9584,6 +9720,7 @@ paths: tags: - users.directoryObject summary: Get registeredDevices from users + description: Devices that are registered for the user. Read-only. Nullable. operationId: users_ListRegisteredDevices parameters: - name: user-id @@ -9666,6 +9803,7 @@ paths: tags: - users.directoryObject summary: Get ref of registeredDevices from users + description: Devices that are registered for the user. Read-only. Nullable. operationId: users_ListRefRegisteredDevices parameters: - name: user-id @@ -9722,6 +9860,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to registeredDevices for users + description: Devices that are registered for the user. Read-only. Nullable. operationId: users_CreateRefRegisteredDevices parameters: - name: user-id @@ -9757,6 +9896,7 @@ paths: tags: - users.userSettings summary: Get settings from users + description: Read-only. Nullable. operationId: users_GetSettings parameters: - name: user-id @@ -9825,6 +9965,7 @@ paths: tags: - users.userSettings summary: Update the navigation property settings in users + description: Read-only. Nullable. operationId: users_UpdateSettings parameters: - name: user-id @@ -9851,6 +9992,7 @@ paths: tags: - users.userSettings summary: Delete navigation property settings for users + description: Read-only. Nullable. operationId: users_DeleteSettings parameters: - name: user-id @@ -9975,6 +10117,7 @@ paths: tags: - users.userSettings summary: Get regionalAndLanguageSettings from users + description: 'The user''s preferences for languages, regional locale and date/time formatting.' operationId: users.settings_GetRegionalAndLanguageSettings parameters: - name: user-id @@ -10029,6 +10172,7 @@ paths: tags: - users.userSettings summary: Update the navigation property regionalAndLanguageSettings in users + description: 'The user''s preferences for languages, regional locale and date/time formatting.' operationId: users.settings_UpdateRegionalAndLanguageSettings parameters: - name: user-id @@ -10055,6 +10199,7 @@ paths: tags: - users.userSettings summary: Delete navigation property regionalAndLanguageSettings for users + description: 'The user''s preferences for languages, regional locale and date/time formatting.' operationId: users.settings_DeleteRegionalAndLanguageSettings parameters: - name: user-id @@ -10080,6 +10225,7 @@ paths: tags: - users.userSettings summary: Get shiftPreferences from users + description: The shift preferences for the user. operationId: users.settings_GetShiftPreferences parameters: - name: user-id @@ -10132,6 +10278,7 @@ paths: tags: - users.userSettings summary: Update the navigation property shiftPreferences in users + description: The shift preferences for the user. operationId: users.settings_UpdateShiftPreferences parameters: - name: user-id @@ -10158,6 +10305,7 @@ paths: tags: - users.userSettings summary: Delete navigation property shiftPreferences for users + description: The shift preferences for the user. operationId: users.settings_DeleteShiftPreferences parameters: - name: user-id @@ -10183,6 +10331,7 @@ paths: tags: - users.todo summary: Get todo from users + description: Represents the To Do services available to a user. operationId: users_GetTodo parameters: - name: user-id @@ -10237,6 +10386,7 @@ paths: tags: - users.todo summary: Update the navigation property todo in users + description: Represents the To Do services available to a user. operationId: users_UpdateTodo parameters: - name: user-id @@ -10263,6 +10413,7 @@ paths: tags: - users.todo summary: Delete navigation property todo for users + description: Represents the To Do services available to a user. operationId: users_DeleteTodo parameters: - name: user-id @@ -10288,6 +10439,7 @@ paths: tags: - users.todo summary: Get lists from users + description: The task lists in the users mailbox. operationId: users.todo_ListLists parameters: - name: user-id @@ -10382,6 +10534,7 @@ paths: tags: - users.todo summary: Create new navigation property to lists for users + description: The task lists in the users mailbox. operationId: users.todo_CreateLists parameters: - name: user-id @@ -10413,6 +10566,7 @@ paths: tags: - users.todo summary: Get lists from users + description: The task lists in the users mailbox. operationId: users.todo_GetLists parameters: - name: user-id @@ -10486,6 +10640,7 @@ paths: tags: - users.todo summary: Update the navigation property lists in users + description: The task lists in the users mailbox. operationId: users.todo_UpdateLists parameters: - name: user-id @@ -10519,6 +10674,7 @@ paths: tags: - users.todo summary: Delete navigation property lists for users + description: The task lists in the users mailbox. operationId: users.todo_DeleteLists parameters: - name: user-id @@ -10551,6 +10707,7 @@ paths: tags: - users.todo summary: Get extensions from users + description: The collection of open extensions defined for the task list. Nullable. operationId: users.todo.lists_ListExtensions parameters: - name: user-id @@ -10636,6 +10793,7 @@ paths: tags: - users.todo summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the task list. Nullable. operationId: users.todo.lists_CreateExtensions parameters: - name: user-id @@ -10674,6 +10832,7 @@ paths: tags: - users.todo summary: Get extensions from users + description: The collection of open extensions defined for the task list. Nullable. operationId: users.todo.lists_GetExtensions parameters: - name: user-id @@ -10735,6 +10894,7 @@ paths: tags: - users.todo summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the task list. Nullable. operationId: users.todo.lists_UpdateExtensions parameters: - name: user-id @@ -10775,6 +10935,7 @@ paths: tags: - users.todo summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the task list. Nullable. operationId: users.todo.lists_DeleteExtensions parameters: - name: user-id @@ -10814,6 +10975,7 @@ paths: tags: - users.todo summary: Get tasks from users + description: The tasks in this task list. Read-only. Nullable. operationId: users.todo.lists_ListTasks parameters: - name: user-id @@ -10939,6 +11101,7 @@ paths: tags: - users.todo summary: Create new navigation property to tasks for users + description: The tasks in this task list. Read-only. Nullable. operationId: users.todo.lists_CreateTasks parameters: - name: user-id @@ -10977,6 +11140,7 @@ paths: tags: - users.todo summary: Get tasks from users + description: The tasks in this task list. Read-only. Nullable. operationId: users.todo.lists_GetTasks parameters: - name: user-id @@ -11067,6 +11231,7 @@ paths: tags: - users.todo summary: Update the navigation property tasks in users + description: The tasks in this task list. Read-only. Nullable. operationId: users.todo.lists_UpdateTasks parameters: - name: user-id @@ -11107,6 +11272,7 @@ paths: tags: - users.todo summary: Delete navigation property tasks for users + description: The tasks in this task list. Read-only. Nullable. operationId: users.todo.lists_DeleteTasks parameters: - name: user-id @@ -11146,6 +11312,7 @@ paths: tags: - users.todo summary: Get extensions from users + description: The collection of open extensions defined for the task. Nullable. operationId: users.todo.lists.tasks_ListExtensions parameters: - name: user-id @@ -11238,6 +11405,7 @@ paths: tags: - users.todo summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the task. Nullable. operationId: users.todo.lists.tasks_CreateExtensions parameters: - name: user-id @@ -11283,6 +11451,7 @@ paths: tags: - users.todo summary: Get extensions from users + description: The collection of open extensions defined for the task. Nullable. operationId: users.todo.lists.tasks_GetExtensions parameters: - name: user-id @@ -11351,6 +11520,7 @@ paths: tags: - users.todo summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the task. Nullable. operationId: users.todo.lists.tasks_UpdateExtensions parameters: - name: user-id @@ -11398,6 +11568,7 @@ paths: tags: - users.todo summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the task. Nullable. operationId: users.todo.lists.tasks_DeleteExtensions parameters: - name: user-id @@ -11444,6 +11615,7 @@ paths: tags: - users.todo summary: Get linkedResources from users + description: A collection of resources linked to the task. operationId: users.todo.lists.tasks_ListLinkedResources parameters: - name: user-id @@ -11548,6 +11720,7 @@ paths: tags: - users.todo summary: Create new navigation property to linkedResources for users + description: A collection of resources linked to the task. operationId: users.todo.lists.tasks_CreateLinkedResources parameters: - name: user-id @@ -11593,6 +11766,7 @@ paths: tags: - users.todo summary: Get linkedResources from users + description: A collection of resources linked to the task. operationId: users.todo.lists.tasks_GetLinkedResources parameters: - name: user-id @@ -11665,6 +11839,7 @@ paths: tags: - users.todo summary: Update the navigation property linkedResources in users + description: A collection of resources linked to the task. operationId: users.todo.lists.tasks_UpdateLinkedResources parameters: - name: user-id @@ -11712,6 +11887,7 @@ paths: tags: - users.todo summary: Delete navigation property linkedResources for users + description: A collection of resources linked to the task. operationId: users.todo.lists.tasks_DeleteLinkedResources parameters: - name: user-id @@ -11926,6 +12102,179 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + '/users/{user-id}/transitiveReports': + get: + tags: + - users.directoryObject + summary: Get transitiveReports from users + operationId: users_ListTransitiveReports + 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 + - deletedDateTime + - deletedDateTime 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 + 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 directoryObject + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + '@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}/transitiveReports/$ref': + get: + tags: + - users.directoryObject + summary: Get ref of transitiveReports from users + operationId: users_ListRefTransitiveReports + 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 + - deletedDateTime + - deletedDateTime desc + type: string + responses: + '200': + description: Retrieved navigation property links + content: + application/json: + schema: + title: Collection of links of directoryObject + 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.directoryObject + summary: Create new navigation property ref to transitiveReports for users + operationId: users_CreateRefTransitiveReports + 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 components: schemas: microsoft.graph.user: @@ -11948,7 +12297,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -11961,7 +12310,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -11973,12 +12322,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -11987,7 +12336,7 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true deviceKeys: type: array @@ -11995,7 +12344,7 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceKey' displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -12011,7 +12360,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -12027,7 +12376,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -12051,7 +12400,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -12070,11 +12419,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -12082,7 +12431,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -12129,7 +12478,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -12138,7 +12487,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredDataLocation: type: string @@ -12176,15 +12525,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -12192,7 +12541,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -12321,6 +12670,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' calendarGroups: @@ -12589,7 +12942,7 @@ components: 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).' + description: 'Indicates whether 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])$' @@ -13159,7 +13512,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -14231,6 +14584,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -14938,6 +15292,10 @@ components: - title: managedDevice type: object properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' aadRegistered: type: boolean description: Whether the device is Azure Active Directory registered. This property is read-only. @@ -15219,16 +15577,16 @@ components: type: integer description: Count of remediated malware for this windows device. This property is read-only. format: int32 - deviceCompliancePolicyStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' - description: Device compliance policy states for this device. assignmentFilterEvaluationStatusDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. deviceConfigurationStates: type: array items: @@ -15881,11 +16239,12 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a device has been granted. 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -15900,6 +16259,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -15909,7 +16269,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.command' - description: Set of commands sent to this device + 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. @@ -15946,7 +16306,6 @@ components: 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: @@ -16150,7 +16509,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true discoverySettings: $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' @@ -17197,7 +17556,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -18220,53 +18579,58 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope.' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select. Note: This property has been replaced by fallbackReviewers. However, specifying either backupReviewers or fallbackReviewers automatically populates the same values to the other property.' 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 - description: Timestamp when review series was created. + description: Timestamp when the access review series was created. Supports $select. format: date-time nullable: true descriptionForAdmins: type: string - description: Description provided by review creators to provide more context of the review to admins. + description: Description provided by review creators to provide more context of the review to admins. Supports $select. nullable: true descriptionForReviewers: type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. nullable: true displayName: type: string - description: Name of access review series. Required on create. + description: Name of the access review series. Required on create. Supports $select. nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' instanceEnumerationScope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp when review series was last modified. + description: Timestamp when the access review series was last modified. Supports $select. format: date-time nullable: true reviewers: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create. + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' scope: $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' status: type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' nullable: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' additionalProperties: type: object microsoft.graph.agreementAcceptanceState: @@ -18293,6 +18657,35 @@ components: additionalProperties: type: object description: Enrollment Configuration Assignment + microsoft.graph.cloudPcRemoteActionResult: + title: cloudPcRemoteActionResult + type: object + properties: + actionName: + type: string + nullable: true + actionState: + $ref: '#/components/schemas/microsoft.graph.actionState' + cloudPcId: + type: string + nullable: true + 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 + format: date-time + nullable: true + managedDeviceId: + type: string + 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 + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + additionalProperties: + type: object microsoft.graph.chassisType: title: chassisType enum: @@ -18689,6 +19082,10 @@ components: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityHardwareRequirementState' deviceGuardVirtualizationBasedSecurityState: $ref: '#/components/schemas/microsoft.graph.deviceGuardVirtualizationBasedSecurityState' + esimIdentifier: + type: string + description: eSIM identifier + nullable: true freeStorageSpace: type: integer description: Free storage space of the device. @@ -18882,6 +19279,19 @@ components: additionalProperties: type: object description: Logged On User + microsoft.graph.assignmentFilterEvaluationStatusDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: assignmentFilterEvaluationStatusDetails + type: object + properties: + payloadId: + type: string + description: PayloadId on which filter has been applied. + nullable: true + additionalProperties: + type: object + description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceCompliancePolicyState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -18923,19 +19333,6 @@ components: additionalProperties: type: object description: Device Compliance Policy State for a given device. - microsoft.graph.assignmentFilterEvaluationStatusDetails: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: assignmentFilterEvaluationStatusDetails - type: object - properties: - payloadId: - type: string - description: PayloadId on which filter has been applied. - nullable: true - additionalProperties: - type: object - description: A class containing information about the payloads on which filter has been applied. microsoft.graph.deviceConfigurationState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -19326,10 +19723,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -20543,10 +20940,22 @@ components: type: string description: The toll-free number that connects to the Audio Conference Provider. nullable: true + tollFreeNumbers: + type: array + items: + type: string + nullable: true + description: List of toll-free numbers that are displayed in the meeting invite. tollNumber: type: string description: The toll number that connects to the Audio Conference Provider. nullable: true + tollNumbers: + type: array + items: + type: string + nullable: true + description: List of toll numbers that are displayed in the meeting invite. additionalProperties: type: object microsoft.graph.broadcastMeetingSettings: @@ -20617,18 +21026,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. contributors: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' producers: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' - description: For broadcast meeting only. additionalProperties: type: object microsoft.graph.meetingAttendanceReport: @@ -20641,6 +21049,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: The list of attendance records. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -20696,7 +21105,6 @@ 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 when this key was registered to the user. format: date-time nullable: true displayName: @@ -20978,6 +21386,8 @@ components: type: string description: Read-only. Version number of the chat message. nullable: true + eventDetail: + $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' from: $ref: '#/components/schemas/microsoft.graph.identitySet' importance: @@ -23548,7 +23958,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -23567,14 +23977,14 @@ components: description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' autoApplyDecisionsEnabled: type: boolean - description: Flag to indicate whether auto-apply feature is enabled. + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' defaultDecision: type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of ''Approve'', ''Deny'', or ''Recommendation''.' + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true defaultDecisionEnabled: type: boolean - description: Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. instanceDurationInDays: maximum: 2147483647 minimum: -2147483648 @@ -23583,18 +23993,18 @@ components: format: int32 justificationRequiredOnApproval: type: boolean - description: Flag to indicate whether reviewers are required to provide justification with their decision. + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. mailNotificationsEnabled: type: boolean - description: Flag to indicate whether emails are enabled/disabled. + description: Indicates whether emails are enabled or disabled. Default value is false. recommendationsEnabled: type: boolean - description: Flag to indicate whether decision recommendations are enabled/disabled. + description: Indicates whether decision recommendations are enabled/disabled. recurrence: $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' reminderNotificationsEnabled: type: boolean - description: Flag to indicate whether reminders are enabled/disabled. + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object microsoft.graph.deviceAndAppManagementAssignmentSource: @@ -23616,16 +24026,6 @@ components: additionalProperties: type: object description: Base type for assignment targets. - microsoft.graph.configurationManagerClientState: - title: configurationManagerClientState - enum: - - unknown - - installed - - healthy - - installFailed - - updateFailed - - communicationError - type: string microsoft.graph.actionState: title: actionState enum: @@ -23637,6 +24037,35 @@ components: - failed - notSupported type: string + microsoft.graph.cloudPcStatusDetails: + title: cloudPcStatusDetails + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Any additional information about the cloud PC status. + code: + type: string + description: The code associated with the cloud PC status. + nullable: true + message: + type: string + description: The status message. + nullable: true + additionalProperties: + type: object + microsoft.graph.configurationManagerClientState: + title: configurationManagerClientState + enum: + - unknown + - installed + - healthy + - installFailed + - updateFailed + - communicationError + type: string microsoft.graph.deviceGuardLocalSystemAuthorityCredentialGuardState: title: deviceGuardLocalSystemAuthorityCredentialGuardState enum: @@ -24719,18 +25148,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving. emailAddress: type: string + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: Total duration of the attendances in seconds. format: int32 nullable: true additionalProperties: @@ -24809,7 +25242,7 @@ components: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes' azureADAppId: type: string - description: The WebApplicationInfo.id from the Teams App manifest. + description: The WebApplicationInfo.Id from the Teams app manifest. nullable: true createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' @@ -24833,7 +25266,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -24891,6 +25324,11 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.eventMessageDetail: + title: eventMessageDetail + type: object + additionalProperties: + type: object microsoft.graph.chatMessageImportance: title: chatMessageImportance enum: @@ -24923,6 +25361,8 @@ components: - message - chatEvent - typing + - unknownFutureValue + - systemEventMessage type: string microsoft.graph.chatMessagePolicyViolation: title: chatMessagePolicyViolation @@ -25350,17 +25790,22 @@ components: properties: color: type: string + description: 'The color that the user interface should display for the label, if configured.' nullable: true description: type: string + description: The admin-defined description for the label. nullable: true id: type: string + description: The label ID is a globally unique identifier (GUID). nullable: true isActive: type: boolean + description: Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. name: type: string + description: The plaintext name of the label. nullable: true parent: $ref: '#/components/schemas/microsoft.graph.parentLabelDetails' @@ -25368,9 +25813,11 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'The sensitivity value of the label, where lower is less sensitive.' format: int32 tooltip: type: string + description: The tooltip that should be displayed for the label in a user interface. nullable: true additionalProperties: type: object @@ -25963,11 +26410,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -26531,16 +26978,19 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' 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 + description: Time attendee joined in UTC. 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 + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: @@ -26584,6 +27034,7 @@ components: properties: webUrl: type: string + description: The web URL that can be used for downloading the image. nullable: true hostedContent: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' @@ -27037,7 +27488,7 @@ components: nullable: true languageTag: type: string - description: The anguage tag for the label. + description: The language tag for the label. nullable: true name: type: string diff --git a/openApiDocs/beta/WindowsUpdates.yml b/openApiDocs/beta/WindowsUpdates.yml new file mode 100644 index 00000000000..d5ee5fec086 --- /dev/null +++ b/openApiDocs/beta/WindowsUpdates.yml @@ -0,0 +1,3110 @@ +openapi: 3.0.1 +info: + title: WindowsUpdates + version: v1.0-beta +servers: + - url: https://graph.microsoft.com/beta/ + description: Core +paths: + '/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}/microsoft.graph.incidentReport()': + get: + tags: + - admin.Functions + summary: Invoke function incidentReport + operationId: admin.serviceAnnouncement.healthOverviews.issues_incidentReport + parameters: + - name: serviceHealth-id + in: path + description: 'key: id of serviceHealth' + required: true + schema: + type: string + x-ms-docs-key-type: serviceHealth + - name: serviceHealthIssue-id + in: path + description: 'key: id of serviceHealthIssue' + required: true + schema: + type: string + x-ms-docs-key-type: serviceHealthIssue + responses: + '200': + description: Success + content: + application/json: + schema: + type: string + format: base64url + nullable: true + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + '/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}/microsoft.graph.incidentReport()': + get: + tags: + - admin.Functions + summary: Invoke function incidentReport + operationId: admin.serviceAnnouncement.issues_incidentReport + parameters: + - name: serviceHealthIssue-id + in: path + description: 'key: id of serviceHealthIssue' + required: true + schema: + type: string + x-ms-docs-key-type: serviceHealthIssue + responses: + '200': + description: Success + content: + application/json: + schema: + type: string + format: base64url + nullable: true + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + /admin/serviceAnnouncement/messages/microsoft.graph.archive: + post: + tags: + - admin.Actions + summary: Invoke action archive + operationId: admin.serviceAnnouncement.messages_archive + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + messageIds: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + type: boolean + default: false + nullable: true + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /admin/serviceAnnouncement/messages/microsoft.graph.favorite: + post: + tags: + - admin.Actions + summary: Invoke action favorite + operationId: admin.serviceAnnouncement.messages_favorite + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + messageIds: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + type: boolean + default: false + nullable: true + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /admin/serviceAnnouncement/messages/microsoft.graph.markRead: + post: + tags: + - admin.Actions + summary: Invoke action markRead + operationId: admin.serviceAnnouncement.messages_markRead + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + messageIds: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + type: boolean + default: false + nullable: true + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /admin/serviceAnnouncement/messages/microsoft.graph.markUnread: + post: + tags: + - admin.Actions + summary: Invoke action markUnread + operationId: admin.serviceAnnouncement.messages_markUnread + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + messageIds: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + type: boolean + default: false + nullable: true + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /admin/serviceAnnouncement/messages/microsoft.graph.unarchive: + post: + tags: + - admin.Actions + summary: Invoke action unarchive + operationId: admin.serviceAnnouncement.messages_unarchive + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + messageIds: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + type: boolean + default: false + nullable: true + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /admin/serviceAnnouncement/messages/microsoft.graph.unfavorite: + post: + tags: + - admin.Actions + summary: Invoke action unfavorite + operationId: admin.serviceAnnouncement.messages_unfavorite + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + messageIds: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + type: boolean + default: false + nullable: true + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /admin/windows: + get: + tags: + - admin.windows + summary: Get windows from admin + operationId: admin_GetWindows + parameters: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - updates + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - updates + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.windows' + links: + updates: + operationId: admin.Windows.GetUpdates + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - admin.windows + summary: Update the navigation property windows in admin + operationId: admin_UpdateWindows + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.windows' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - admin.windows + summary: Delete navigation property windows for admin + operationId: admin_DeleteWindows + 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 + /admin/windows/updates: + get: + tags: + - admin.windows + summary: Get updates from admin + description: Entity that acts as a container for the functionality of the Windows Update for Business deployment service. Read-only. + operationId: admin.windows_GetUpdates + parameters: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - catalog + - deployments + - updatableAssets + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - catalog + - deployments + - updatableAssets + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updates' + links: + catalog: + operationId: admin.windows.Updates.GetCatalog + deployments: + operationId: admin.windows.Updates.ListDeployments + updatableAssets: + operationId: admin.windows.Updates.ListUpdatableAssets + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - admin.windows + summary: Update the navigation property updates in admin + description: Entity that acts as a container for the functionality of the Windows Update for Business deployment service. Read-only. + operationId: admin.windows_UpdateUpdates + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updates' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - admin.windows + summary: Delete navigation property updates for admin + description: Entity that acts as a container for the functionality of the Windows Update for Business deployment service. Read-only. + operationId: admin.windows_DeleteUpdates + 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 + /admin/windows/updates/catalog: + get: + tags: + - admin.windows + summary: Get catalog from admin + description: Catalog of content that can be approved for deployment by the deployment service. Read-only. + operationId: admin.windows.updates_GetCatalog + parameters: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - entries + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - entries + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalog' + links: + entries: + operationId: admin.windows.updates.Catalog.ListEntries + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - admin.windows + summary: Update the navigation property catalog in admin + description: Catalog of content that can be approved for deployment by the deployment service. Read-only. + operationId: admin.windows.updates_UpdateCatalog + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalog' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - admin.windows + summary: Delete navigation property catalog for admin + description: Catalog of content that can be approved for deployment by the deployment service. Read-only. + operationId: admin.windows.updates_DeleteCatalog + 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 + /admin/windows/updates/catalog/entries: + get: + tags: + - admin.windows + summary: Get entries from admin + description: Lists the content that you can approve for deployment. Read-only. + operationId: admin.windows.updates.catalog_ListEntries + 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 + - deployableUntilDateTime + - deployableUntilDateTime desc + - displayName + - displayName desc + - releaseDateTime + - releaseDateTime 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 + - deployableUntilDateTime + - displayName + - releaseDateTime + 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 catalogEntry + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' + '@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: + - admin.windows + summary: Create new navigation property to entries for admin + description: Lists the content that you can approve for deployment. Read-only. + operationId: admin.windows.updates.catalog_CreateEntries + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/admin/windows/updates/catalog/entries/{catalogEntry-id}': + get: + tags: + - admin.windows + summary: Get entries from admin + description: Lists the content that you can approve for deployment. Read-only. + operationId: admin.windows.updates.catalog_GetEntries + parameters: + - name: catalogEntry-id + in: path + description: 'key: id of catalogEntry' + required: true + schema: + type: string + x-ms-docs-key-type: catalogEntry + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - deployableUntilDateTime + - displayName + - releaseDateTime + 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.windowsUpdates.catalogEntry' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - admin.windows + summary: Update the navigation property entries in admin + description: Lists the content that you can approve for deployment. Read-only. + operationId: admin.windows.updates.catalog_UpdateEntries + parameters: + - name: catalogEntry-id + in: path + description: 'key: id of catalogEntry' + required: true + schema: + type: string + x-ms-docs-key-type: catalogEntry + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - admin.windows + summary: Delete navigation property entries for admin + description: Lists the content that you can approve for deployment. Read-only. + operationId: admin.windows.updates.catalog_DeleteEntries + parameters: + - name: catalogEntry-id + in: path + description: 'key: id of catalogEntry' + required: true + schema: + type: string + x-ms-docs-key-type: catalogEntry + - 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 + /admin/windows/updates/deployments: + get: + tags: + - admin.windows + summary: Get deployments from admin + description: Deployments created using the deployment service. Read-only. + operationId: admin.windows.updates_ListDeployments + 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 + - content + - content desc + - createdDateTime + - createdDateTime desc + - lastModifiedDateTime + - lastModifiedDateTime desc + - settings + - settings 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 + - content + - createdDateTime + - lastModifiedDateTime + - settings + - state + - audience + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - audience + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of deployment + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployment' + '@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: + - admin.windows + summary: Create new navigation property to deployments for admin + description: Deployments created using the deployment service. Read-only. + operationId: admin.windows.updates_CreateDeployments + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployment' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/admin/windows/updates/deployments/{deployment-id}': + get: + tags: + - admin.windows + summary: Get deployments from admin + description: Deployments created using the deployment service. Read-only. + operationId: admin.windows.updates_GetDeployments + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - content + - createdDateTime + - lastModifiedDateTime + - settings + - state + - audience + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - audience + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployment' + links: + audience: + operationId: admin.windows.updates.Deployments.GetAudience + parameters: + deployment-id: $request.path.deployment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - admin.windows + summary: Update the navigation property deployments in admin + description: Deployments created using the deployment service. Read-only. + operationId: admin.windows.updates_UpdateDeployments + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployment' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - admin.windows + summary: Delete navigation property deployments for admin + description: Deployments created using the deployment service. Read-only. + operationId: admin.windows.updates_DeleteDeployments + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - 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 + '/admin/windows/updates/deployments/{deployment-id}/audience': + get: + tags: + - admin.windows + summary: Get audience from admin + description: Specifies the audience to which content is deployed. + operationId: admin.windows.updates.deployments_GetAudience + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - exclusions + - members + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - exclusions + - members + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' + links: + exclusions: + operationId: admin.windows.updates.deployments.Audience.ListExclusions + parameters: + deployment-id: $request.path.deployment-id + members: + operationId: admin.windows.updates.deployments.Audience.ListMembers + parameters: + deployment-id: $request.path.deployment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - admin.windows + summary: Update the navigation property audience in admin + description: Specifies the audience to which content is deployed. + operationId: admin.windows.updates.deployments_UpdateAudience + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - admin.windows + summary: Delete navigation property audience for admin + description: Specifies the audience to which content is deployed. + operationId: admin.windows.updates.deployments_DeleteAudience + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - 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 + '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions': + get: + tags: + - admin.windows + summary: Get exclusions from admin + description: Specifies the assets to exclude from the audience. + operationId: admin.windows.updates.deployments.audience_ListExclusions + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - $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 + type: string + - 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: + title: Collection of updatableAsset + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + '@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: + - admin.windows + summary: Create new navigation property to exclusions for admin + description: Specifies the assets to exclude from the audience. + operationId: admin.windows.updates.deployments.audience_CreateExclusions + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}': + get: + tags: + - admin.windows + summary: Get exclusions from admin + description: Specifies the assets to exclude from the audience. + operationId: admin.windows.updates.deployments.audience_GetExclusions + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + - 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.windowsUpdates.updatableAsset' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - admin.windows + summary: Update the navigation property exclusions in admin + description: Specifies the assets to exclude from the audience. + operationId: admin.windows.updates.deployments.audience_UpdateExclusions + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - admin.windows + summary: Delete navigation property exclusions for admin + description: Specifies the assets to exclude from the audience. + operationId: admin.windows.updates.deployments.audience_DeleteExclusions + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + - 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 + '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers': + post: + tags: + - admin.Actions + summary: Invoke action addMembers + operationId: admin.windows.updates.deployments.audience.exclusions_addMembers + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById': + post: + tags: + - admin.Actions + summary: Invoke action addMembersById + operationId: admin.windows.updates.deployments.audience.exclusions_addMembersById + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + ids: + type: array + items: + type: string + nullable: true + memberEntityType: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers': + post: + tags: + - admin.Actions + summary: Invoke action removeMembers + operationId: admin.windows.updates.deployments.audience.exclusions_removeMembers + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById': + post: + tags: + - admin.Actions + summary: Invoke action removeMembersById + operationId: admin.windows.updates.deployments.audience.exclusions_removeMembersById + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + ids: + type: array + items: + type: string + nullable: true + memberEntityType: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets': + post: + tags: + - admin.Actions + summary: Invoke action enrollAssets + operationId: admin.windows.updates.deployments.audience.exclusions_enrollAssets + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById': + post: + tags: + - admin.Actions + summary: Invoke action enrollAssetsById + operationId: admin.windows.updates.deployments.audience.exclusions_enrollAssetsById + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + memberEntityType: + type: string + nullable: true + ids: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets': + post: + tags: + - admin.Actions + summary: Invoke action unenrollAssets + operationId: admin.windows.updates.deployments.audience.exclusions_unenrollAssets + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById': + post: + tags: + - admin.Actions + summary: Invoke action unenrollAssetsById + operationId: admin.windows.updates.deployments.audience.exclusions_unenrollAssetsById + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + memberEntityType: + type: string + nullable: true + ids: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/members': + get: + tags: + - admin.windows + summary: Get members from admin + description: Specifies the assets to include in the audience. + operationId: admin.windows.updates.deployments.audience_ListMembers + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - $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 + type: string + - 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: + title: Collection of updatableAsset + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + '@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: + - admin.windows + summary: Create new navigation property to members for admin + description: Specifies the assets to include in the audience. + operationId: admin.windows.updates.deployments.audience_CreateMembers + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}': + get: + tags: + - admin.windows + summary: Get members from admin + description: Specifies the assets to include in the audience. + operationId: admin.windows.updates.deployments.audience_GetMembers + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + - 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.windowsUpdates.updatableAsset' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - admin.windows + summary: Update the navigation property members in admin + description: Specifies the assets to include in the audience. + operationId: admin.windows.updates.deployments.audience_UpdateMembers + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - admin.windows + summary: Delete navigation property members for admin + description: Specifies the assets to include in the audience. + operationId: admin.windows.updates.deployments.audience_DeleteMembers + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + - 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 + '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers': + post: + tags: + - admin.Actions + summary: Invoke action addMembers + operationId: admin.windows.updates.deployments.audience.members_addMembers + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById': + post: + tags: + - admin.Actions + summary: Invoke action addMembersById + operationId: admin.windows.updates.deployments.audience.members_addMembersById + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + ids: + type: array + items: + type: string + nullable: true + memberEntityType: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers': + post: + tags: + - admin.Actions + summary: Invoke action removeMembers + operationId: admin.windows.updates.deployments.audience.members_removeMembers + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById': + post: + tags: + - admin.Actions + summary: Invoke action removeMembersById + operationId: admin.windows.updates.deployments.audience.members_removeMembersById + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + ids: + type: array + items: + type: string + nullable: true + memberEntityType: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets': + post: + tags: + - admin.Actions + summary: Invoke action enrollAssets + operationId: admin.windows.updates.deployments.audience.members_enrollAssets + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById': + post: + tags: + - admin.Actions + summary: Invoke action enrollAssetsById + operationId: admin.windows.updates.deployments.audience.members_enrollAssetsById + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + memberEntityType: + type: string + nullable: true + ids: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets': + post: + tags: + - admin.Actions + summary: Invoke action unenrollAssets + operationId: admin.windows.updates.deployments.audience.members_unenrollAssets + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById': + post: + tags: + - admin.Actions + summary: Invoke action unenrollAssetsById + operationId: admin.windows.updates.deployments.audience.members_unenrollAssetsById + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + memberEntityType: + type: string + nullable: true + ids: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudience': + post: + tags: + - admin.Actions + summary: Invoke action updateAudience + operationId: admin.windows.updates.deployments.audience_updateAudience + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + addMembers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + removeMembers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + addExclusions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + removeExclusions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudienceById': + post: + tags: + - admin.Actions + summary: Invoke action updateAudienceById + operationId: admin.windows.updates.deployments.audience_updateAudienceById + parameters: + - name: deployment-id + in: path + description: 'key: id of deployment' + required: true + schema: + type: string + x-ms-docs-key-type: deployment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + memberEntityType: + type: string + nullable: true + addMembers: + type: array + items: + type: string + nullable: true + removeMembers: + type: array + items: + type: string + nullable: true + addExclusions: + type: array + items: + type: string + nullable: true + removeExclusions: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /admin/windows/updates/updatableAssets: + get: + tags: + - admin.windows + summary: Get updatableAssets from admin + description: Assets registered with the deployment service that can receive updates. Read-only. + operationId: admin.windows.updates_ListUpdatableAssets + 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 + type: string + - 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: + title: Collection of updatableAsset + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + '@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: + - admin.windows + summary: Create new navigation property to updatableAssets for admin + description: Assets registered with the deployment service that can receive updates. Read-only. + operationId: admin.windows.updates_CreateUpdatableAssets + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/admin/windows/updates/updatableAssets/{updatableAsset-id}': + get: + tags: + - admin.windows + summary: Get updatableAssets from admin + description: Assets registered with the deployment service that can receive updates. Read-only. + operationId: admin.windows.updates_GetUpdatableAssets + parameters: + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + - 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.windowsUpdates.updatableAsset' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - admin.windows + summary: Update the navigation property updatableAssets in admin + description: Assets registered with the deployment service that can receive updates. Read-only. + operationId: admin.windows.updates_UpdateUpdatableAssets + parameters: + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - admin.windows + summary: Delete navigation property updatableAssets for admin + description: Assets registered with the deployment service that can receive updates. Read-only. + operationId: admin.windows.updates_DeleteUpdatableAssets + parameters: + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + - 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 + '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers': + post: + tags: + - admin.Actions + summary: Invoke action addMembers + operationId: admin.windows.updates.updatableAssets_addMembers + parameters: + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById': + post: + tags: + - admin.Actions + summary: Invoke action addMembersById + operationId: admin.windows.updates.updatableAssets_addMembersById + parameters: + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + ids: + type: array + items: + type: string + nullable: true + memberEntityType: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers': + post: + tags: + - admin.Actions + summary: Invoke action removeMembers + operationId: admin.windows.updates.updatableAssets_removeMembers + parameters: + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById': + post: + tags: + - admin.Actions + summary: Invoke action removeMembersById + operationId: admin.windows.updates.updatableAssets_removeMembersById + parameters: + - name: updatableAsset-id + in: path + description: 'key: id of updatableAsset' + required: true + schema: + type: string + x-ms-docs-key-type: updatableAsset + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + ids: + type: array + items: + type: string + nullable: true + memberEntityType: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssets: + post: + tags: + - admin.Actions + summary: Invoke action enrollAssets + operationId: admin.windows.updates.updatableAssets_enrollAssets + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssetsById: + post: + tags: + - admin.Actions + summary: Invoke action enrollAssetsById + operationId: admin.windows.updates.updatableAssets_enrollAssetsById + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + memberEntityType: + type: string + nullable: true + ids: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssets: + post: + tags: + - admin.Actions + summary: Invoke action unenrollAssets + operationId: admin.windows.updates.updatableAssets_unenrollAssets + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + assets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssetsById: + post: + tags: + - admin.Actions + summary: Invoke action unenrollAssetsById + operationId: admin.windows.updates.updatableAssets_unenrollAssetsById + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + updateCategory: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' + memberEntityType: + type: string + nullable: true + ids: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action +components: + schemas: + microsoft.graph.windowsUpdates.windows: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: windows + type: object + properties: + updates: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updates' + additionalProperties: + type: object + microsoft.graph.windowsUpdates.updates: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: updates + type: object + properties: + catalog: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalog' + deployments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployment' + description: Deployments created using the deployment service. Read-only. + updatableAssets: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + description: Assets registered with the deployment service that can receive updates. Read-only. + additionalProperties: + type: object + microsoft.graph.windowsUpdates.catalog: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: catalog + type: object + properties: + entries: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' + description: Lists the content that you can approve for deployment. Read-only. + additionalProperties: + type: object + microsoft.graph.windowsUpdates.catalogEntry: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: catalogEntry + type: object + properties: + deployableUntilDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 on which the content is no longer available to deploy using the service. Read-only. + format: date-time + nullable: true + displayName: + type: string + description: The display name of the content. Read-only. + nullable: true + releaseDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The release date for the content. Read-only. + format: date-time + additionalProperties: + type: object + microsoft.graph.windowsUpdates.deployment: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deployment + type: object + properties: + content: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployableContent' + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 deployment was created. Returned by default. Read-only. + format: date-time + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The date and time the deployment was last modified. Returned by default. Read-only. + format: date-time + settings: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentSettings' + state: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentState' + audience: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' + additionalProperties: + type: object + microsoft.graph.windowsUpdates.deploymentAudience: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deploymentAudience + type: object + properties: + exclusions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + description: Specifies the assets to exclude from the audience. + members: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' + description: Specifies the assets to include in the audience. + additionalProperties: + type: object + microsoft.graph.windowsUpdates.updatableAsset: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: updatableAsset + type: object + additionalProperties: + type: object + microsoft.graph.windowsUpdates.updateCategory: + title: updateCategory + enum: + - feature + - quality + - unknownFutureValue + type: string + microsoft.graph.entity: + title: entity + type: object + properties: + id: + type: string + description: Read-only. + additionalProperties: + type: object + microsoft.graph.windowsUpdates.deployableContent: + title: deployableContent + type: object + additionalProperties: + type: object + microsoft.graph.windowsUpdates.deploymentSettings: + title: deploymentSettings + type: object + properties: + monitoring: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.monitoringSettings' + rollout: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.rolloutSettings' + additionalProperties: + type: object + microsoft.graph.windowsUpdates.deploymentState: + title: deploymentState + type: object + properties: + reasons: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentStateReason' + description: Specifies the reasons the deployment has its state value. Read-only. + requestedValue: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.requestedDeploymentStateValue' + value: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentStateValue' + additionalProperties: + type: object + odata.error: + required: + - error + type: object + properties: + error: + $ref: '#/components/schemas/odata.error.main' + additionalProperties: + type: object + microsoft.graph.windowsUpdates.monitoringSettings: + title: monitoringSettings + type: object + properties: + monitoringRules: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.monitoringRule' + description: Specifies the rules through which monitoring signals can trigger actions on the deployment. Rules are combined using 'or'. + additionalProperties: + type: object + microsoft.graph.windowsUpdates.rolloutSettings: + title: rolloutSettings + type: object + properties: + devicesPerOffer: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Specifies the number of devices that are offered at the same time. Has no effect when endDateTime is set. When endDateTime and devicesPerOffer are both not set, all devices in the deployment are offered content at the same time.' + format: int32 + durationBetweenOffers: + type: string + description: Specifies duration between each set of devices being offered the update. Has an effect when endDateTime or devicesPerOffer are defined. Default value is P1D (1 day). + 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: 'Specifies the date before which all devices currently in the deployment are offered the update. Devices added after this date are offered immediately. When endDateTime and devicesPerOffer are both not set, all devices in the deployment are offered content at the same time.' + format: date-time + 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 on which devices in the deployment start receiving the update. When not set, the deployment starts as soon as devices are assigned.' + format: date-time + nullable: true + additionalProperties: + type: object + microsoft.graph.windowsUpdates.deploymentStateReason: + title: deploymentStateReason + type: object + properties: + value: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentStateReasonValue' + additionalProperties: + type: object + microsoft.graph.windowsUpdates.requestedDeploymentStateValue: + title: requestedDeploymentStateValue + enum: + - none + - paused + - archived + - unknownFutureValue + type: string + microsoft.graph.windowsUpdates.deploymentStateValue: + title: deploymentStateValue + enum: + - scheduled + - offering + - paused + - faulted + - archived + - unknownFutureValue + type: string + 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.windowsUpdates.monitoringRule: + title: monitoringRule + type: object + properties: + action: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.monitoringAction' + signal: + $ref: '#/components/schemas/microsoft.graph.windowsUpdates.monitoringSignal' + threshold: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The threshold for a signal at which to trigger action. An integer from 1 to 100 (inclusive). + format: int32 + nullable: true + additionalProperties: + type: object + microsoft.graph.windowsUpdates.deploymentStateReasonValue: + title: deploymentStateReasonValue + enum: + - scheduledByOfferWindow + - offeringByRequest + - pausedByRequest + - pausedByMonitoring + - unknownFutureValue + type: string + odata.error.detail: + required: + - code + - message + type: object + properties: + code: + type: string + message: + type: string + target: + type: string + additionalProperties: + type: object + microsoft.graph.windowsUpdates.monitoringAction: + title: monitoringAction + enum: + - alertError + - pauseDeployment + - unknownFutureValue + type: string + microsoft.graph.windowsUpdates.monitoringSignal: + title: monitoringSignal + enum: + - rollback + - unknownFutureValue + type: string + responses: + error: + description: error + content: + application/json: + schema: + $ref: '#/components/schemas/odata.error' + parameters: + top: + name: $top + in: query + description: Show only the first n items + schema: + minimum: 0 + type: integer + example: 50 + skip: + name: $skip + in: query + description: Skip the first n items + schema: + minimum: 0 + type: integer + search: + name: $search + in: query + description: Search items by search phrases + schema: + type: string + filter: + name: $filter + in: query + description: Filter items by property values + schema: + type: string + count: + name: $count + in: query + description: Include count of items + schema: + type: boolean + securitySchemes: + azureaadv2: + type: oauth2 + flows: + authorizationCode: + authorizationUrl: https://login.microsoftonline.com/common/oauth2/v2.0/authorize + tokenUrl: https://login.microsoftonline.com/common/oauth2/v2.0/token + scopes: { } +security: + - azureaadv2: [ ] \ No newline at end of file diff --git a/openApiDocs/v1.0/Applications.yml b/openApiDocs/v1.0/Applications.yml index 8879b926a4f..5b9a0dd789d 100644 --- a/openApiDocs/v1.0/Applications.yml +++ b/openApiDocs/v1.0/Applications.yml @@ -15,10 +15,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -214,6 +213,7 @@ paths: tags: - applications.application summary: Get entity from applications by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: applications.application_GetApplication parameters: - name: application-id @@ -225,10 +225,9 @@ paths: x-ms-docs-key-type: application - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -337,6 +336,7 @@ paths: tags: - applications.application summary: Update entity in applications + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: applications.application_UpdateApplication parameters: - name: application-id @@ -363,6 +363,7 @@ paths: tags: - applications.application summary: Delete entity from applications + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: applications.application_DeleteApplication parameters: - name: application-id @@ -388,6 +389,7 @@ paths: tags: - applications.directoryObject summary: Get createdOnBehalfOf from applications + description: Read-only. operationId: applications_GetCreatedOnBehalfOf parameters: - name: application-id @@ -437,6 +439,7 @@ paths: tags: - applications.directoryObject summary: Get ref of createdOnBehalfOf from applications + description: Read-only. operationId: applications_GetRefCreatedOnBehalfOf parameters: - name: application-id @@ -460,6 +463,7 @@ paths: tags: - applications.directoryObject summary: Update the ref of navigation property createdOnBehalfOf in applications + description: Read-only. operationId: applications_SetRefCreatedOnBehalfOf parameters: - name: application-id @@ -488,6 +492,7 @@ paths: tags: - applications.directoryObject summary: Delete ref of navigation property createdOnBehalfOf for applications + description: Read-only. operationId: applications_DeleteRefCreatedOnBehalfOf parameters: - name: application-id @@ -513,6 +518,7 @@ paths: tags: - applications.extensionProperty summary: Get extensionProperties from applications + description: Read-only. Nullable. operationId: applications_ListExtensionProperties parameters: - name: application-id @@ -609,6 +615,7 @@ paths: tags: - applications.extensionProperty summary: Create new navigation property to extensionProperties for applications + description: Read-only. Nullable. operationId: applications_CreateExtensionProperties parameters: - name: application-id @@ -640,6 +647,7 @@ paths: tags: - applications.extensionProperty summary: Get extensionProperties from applications + description: Read-only. Nullable. operationId: applications_GetExtensionProperties parameters: - name: application-id @@ -700,6 +708,7 @@ paths: tags: - applications.extensionProperty summary: Update the navigation property extensionProperties in applications + description: Read-only. Nullable. operationId: applications_UpdateExtensionProperties parameters: - name: application-id @@ -733,6 +742,7 @@ paths: tags: - applications.extensionProperty summary: Delete navigation property extensionProperties for applications + description: Read-only. Nullable. operationId: applications_DeleteExtensionProperties parameters: - name: application-id @@ -960,6 +970,7 @@ paths: tags: - applications.application summary: Get media content for application from applications + description: The main logo for the application. Not nullable. operationId: applications.application_GetLogo parameters: - name: application-id @@ -984,6 +995,7 @@ paths: tags: - applications.application summary: Update media content for application in applications + description: The main logo for the application. Not nullable. operationId: applications.application_SetLogo parameters: - name: application-id @@ -1342,6 +1354,7 @@ paths: tags: - applications.directoryObject summary: Get owners from applications + description: Directory objects that are owners of the application. Read-only. Nullable. operationId: applications_ListOwners parameters: - name: application-id @@ -1424,6 +1437,7 @@ paths: tags: - applications.directoryObject summary: Get ref of owners from applications + description: Directory objects that are owners of the application. Read-only. Nullable. operationId: applications_ListRefOwners parameters: - name: application-id @@ -1480,6 +1494,7 @@ paths: tags: - applications.directoryObject summary: Create new navigation property ref to owners for applications + description: Directory objects that are owners of the application. Read-only. Nullable. operationId: applications_CreateRefOwners parameters: - name: application-id @@ -1710,6 +1725,7 @@ paths: tags: - applications.tokenLifetimePolicy summary: Get tokenLifetimePolicies from applications + description: The tokenLifetimePolicies assigned to this application. operationId: applications_ListTokenLifetimePolicies parameters: - name: application-id @@ -1806,6 +1822,7 @@ paths: tags: - applications.tokenLifetimePolicy summary: Get ref of tokenLifetimePolicies from applications + description: The tokenLifetimePolicies assigned to this application. operationId: applications_ListRefTokenLifetimePolicies parameters: - name: application-id @@ -1870,6 +1887,7 @@ paths: tags: - applications.tokenLifetimePolicy summary: Create new navigation property ref to tokenLifetimePolicies for applications + description: The tokenLifetimePolicies assigned to this application. operationId: applications_CreateRefTokenLifetimePolicies parameters: - name: application-id @@ -2289,6 +2307,7 @@ paths: tags: - groups.appRoleAssignment summary: Get appRoleAssignments from groups + description: Represents the app roles a group has been granted for an application. operationId: groups_ListAppRoleAssignments parameters: - name: group-id @@ -2391,6 +2410,7 @@ paths: tags: - groups.appRoleAssignment summary: Create new navigation property to appRoleAssignments for groups + description: Represents the app roles a group has been granted for an application. operationId: groups_CreateAppRoleAssignments parameters: - name: group-id @@ -2422,6 +2442,7 @@ paths: tags: - groups.appRoleAssignment summary: Get appRoleAssignments from groups + description: Represents the app roles a group has been granted for an application. operationId: groups_GetAppRoleAssignments parameters: - name: group-id @@ -2484,6 +2505,7 @@ paths: tags: - groups.appRoleAssignment summary: Update the navigation property appRoleAssignments in groups + description: Represents the app roles a group has been granted for an application. operationId: groups_UpdateAppRoleAssignments parameters: - name: group-id @@ -2517,6 +2539,7 @@ paths: tags: - groups.appRoleAssignment summary: Delete navigation property appRoleAssignments for groups + description: Represents the app roles a group has been granted for an application. operationId: groups_DeleteAppRoleAssignments parameters: - name: group-id @@ -2553,10 +2576,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -2774,6 +2796,7 @@ paths: tags: - servicePrincipals.servicePrincipal summary: Get entity from servicePrincipals by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: servicePrincipals.servicePrincipal_GetServicePrincipal parameters: - name: servicePrincipal-id @@ -2785,10 +2808,9 @@ paths: x-ms-docs-key-type: servicePrincipal - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -2947,6 +2969,7 @@ paths: tags: - servicePrincipals.servicePrincipal summary: Update entity in servicePrincipals + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: servicePrincipals.servicePrincipal_UpdateServicePrincipal parameters: - name: servicePrincipal-id @@ -2973,6 +2996,7 @@ paths: tags: - servicePrincipals.servicePrincipal summary: Delete entity from servicePrincipals + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: servicePrincipals.servicePrincipal_DeleteServicePrincipal parameters: - name: servicePrincipal-id @@ -2998,6 +3022,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignedTo from servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.' operationId: servicePrincipals_ListAppRoleAssignedTo parameters: - name: servicePrincipal-id @@ -3100,6 +3125,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Create new navigation property to appRoleAssignedTo for servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.' operationId: servicePrincipals_CreateAppRoleAssignedTo parameters: - name: servicePrincipal-id @@ -3131,6 +3157,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignedTo from servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.' operationId: servicePrincipals_GetAppRoleAssignedTo parameters: - name: servicePrincipal-id @@ -3193,6 +3220,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Update the navigation property appRoleAssignedTo in servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.' operationId: servicePrincipals_UpdateAppRoleAssignedTo parameters: - name: servicePrincipal-id @@ -3226,6 +3254,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Delete navigation property appRoleAssignedTo for servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.' operationId: servicePrincipals_DeleteAppRoleAssignedTo parameters: - name: servicePrincipal-id @@ -3258,6 +3287,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignments from servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal.' operationId: servicePrincipals_ListAppRoleAssignments parameters: - name: servicePrincipal-id @@ -3360,6 +3390,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Create new navigation property to appRoleAssignments for servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal.' operationId: servicePrincipals_CreateAppRoleAssignments parameters: - name: servicePrincipal-id @@ -3391,6 +3422,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignments from servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal.' operationId: servicePrincipals_GetAppRoleAssignments parameters: - name: servicePrincipal-id @@ -3453,6 +3485,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Update the navigation property appRoleAssignments in servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal.' operationId: servicePrincipals_UpdateAppRoleAssignments parameters: - name: servicePrincipal-id @@ -3486,6 +3519,7 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Delete navigation property appRoleAssignments for servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal.' operationId: servicePrincipals_DeleteAppRoleAssignments parameters: - name: servicePrincipal-id @@ -3518,6 +3552,7 @@ paths: tags: - servicePrincipals.claimsMappingPolicy summary: Get claimsMappingPolicies from servicePrincipals + description: The claimsMappingPolicies assigned to this service principal. operationId: servicePrincipals_ListClaimsMappingPolicies parameters: - name: servicePrincipal-id @@ -3614,6 +3649,7 @@ paths: tags: - servicePrincipals.claimsMappingPolicy summary: Get ref of claimsMappingPolicies from servicePrincipals + description: The claimsMappingPolicies assigned to this service principal. operationId: servicePrincipals_ListRefClaimsMappingPolicies parameters: - name: servicePrincipal-id @@ -3678,6 +3714,7 @@ paths: tags: - servicePrincipals.claimsMappingPolicy summary: Create new navigation property ref to claimsMappingPolicies for servicePrincipals + description: The claimsMappingPolicies assigned to this service principal. operationId: servicePrincipals_CreateRefClaimsMappingPolicies parameters: - name: servicePrincipal-id @@ -3713,6 +3750,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get createdObjects from servicePrincipals + description: Directory objects created by this service principal. Read-only. Nullable. operationId: servicePrincipals_ListCreatedObjects parameters: - name: servicePrincipal-id @@ -3795,6 +3833,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ref of createdObjects from servicePrincipals + description: Directory objects created by this service principal. Read-only. Nullable. operationId: servicePrincipals_ListRefCreatedObjects parameters: - name: servicePrincipal-id @@ -3851,6 +3890,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Create new navigation property ref to createdObjects for servicePrincipals + description: Directory objects created by this service principal. Read-only. Nullable. operationId: servicePrincipals_CreateRefCreatedObjects parameters: - name: servicePrincipal-id @@ -3886,6 +3926,7 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Get delegatedPermissionClassifications from servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. operationId: servicePrincipals_ListDelegatedPermissionClassifications parameters: - name: servicePrincipal-id @@ -3973,6 +4014,7 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Create new navigation property to delegatedPermissionClassifications for servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. operationId: servicePrincipals_CreateDelegatedPermissionClassifications parameters: - name: servicePrincipal-id @@ -4004,6 +4046,7 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Get delegatedPermissionClassifications from servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. operationId: servicePrincipals_GetDelegatedPermissionClassifications parameters: - name: servicePrincipal-id @@ -4061,6 +4104,7 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Update the navigation property delegatedPermissionClassifications in servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. operationId: servicePrincipals_UpdateDelegatedPermissionClassifications parameters: - name: servicePrincipal-id @@ -4094,6 +4138,7 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Delete navigation property delegatedPermissionClassifications for servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. operationId: servicePrincipals_DeleteDelegatedPermissionClassifications parameters: - name: servicePrincipal-id @@ -4126,6 +4171,7 @@ paths: tags: - servicePrincipals.endpoint summary: Get endpoints from servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_ListEndpoints parameters: - name: servicePrincipal-id @@ -4222,6 +4268,7 @@ paths: tags: - servicePrincipals.endpoint summary: Create new navigation property to endpoints for servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_CreateEndpoints parameters: - name: servicePrincipal-id @@ -4253,6 +4300,7 @@ paths: tags: - servicePrincipals.endpoint summary: Get endpoints from servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_GetEndpoints parameters: - name: servicePrincipal-id @@ -4313,6 +4361,7 @@ paths: tags: - servicePrincipals.endpoint summary: Update the navigation property endpoints in servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_UpdateEndpoints parameters: - name: servicePrincipal-id @@ -4346,6 +4395,7 @@ paths: tags: - servicePrincipals.endpoint summary: Delete navigation property endpoints for servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_DeleteEndpoints parameters: - name: servicePrincipal-id @@ -4378,6 +4428,7 @@ paths: tags: - servicePrincipals.homeRealmDiscoveryPolicy summary: Get homeRealmDiscoveryPolicies from servicePrincipals + description: The homeRealmDiscoveryPolicies assigned to this service principal. operationId: servicePrincipals_ListHomeRealmDiscoveryPolicies parameters: - name: servicePrincipal-id @@ -4474,6 +4525,7 @@ paths: tags: - servicePrincipals.homeRealmDiscoveryPolicy summary: Get ref of homeRealmDiscoveryPolicies from servicePrincipals + description: The homeRealmDiscoveryPolicies assigned to this service principal. operationId: servicePrincipals_ListRefHomeRealmDiscoveryPolicies parameters: - name: servicePrincipal-id @@ -4538,6 +4590,7 @@ paths: tags: - servicePrincipals.homeRealmDiscoveryPolicy summary: Create new navigation property ref to homeRealmDiscoveryPolicies for servicePrincipals + description: The homeRealmDiscoveryPolicies assigned to this service principal. operationId: servicePrincipals_CreateRefHomeRealmDiscoveryPolicies parameters: - name: servicePrincipal-id @@ -4573,6 +4626,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get memberOf from servicePrincipals + description: 'Roles that this service principal is a member of. HTTP Methods: GET Read-only. Nullable.' operationId: servicePrincipals_ListMemberOf parameters: - name: servicePrincipal-id @@ -4655,6 +4709,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ref of memberOf from servicePrincipals + description: 'Roles that this service principal is a member of. HTTP Methods: GET Read-only. Nullable.' operationId: servicePrincipals_ListRefMemberOf parameters: - name: servicePrincipal-id @@ -4711,6 +4766,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Create new navigation property ref to memberOf for servicePrincipals + description: 'Roles that this service principal is a member of. HTTP Methods: GET Read-only. Nullable.' operationId: servicePrincipals_CreateRefMemberOf parameters: - name: servicePrincipal-id @@ -5076,6 +5132,7 @@ paths: tags: - servicePrincipals.oAuth2PermissionGrant summary: Get oauth2PermissionGrants from servicePrincipals + description: Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. operationId: servicePrincipals_ListOauth2PermissionGrants parameters: - name: servicePrincipal-id @@ -5170,6 +5227,7 @@ paths: tags: - servicePrincipals.oAuth2PermissionGrant summary: Get ref of oauth2PermissionGrants from servicePrincipals + description: Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. operationId: servicePrincipals_ListRefOauth2PermissionGrants parameters: - name: servicePrincipal-id @@ -5234,6 +5292,7 @@ paths: tags: - servicePrincipals.oAuth2PermissionGrant summary: Create new navigation property ref to oauth2PermissionGrants for servicePrincipals + description: Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. operationId: servicePrincipals_CreateRefOauth2PermissionGrants parameters: - name: servicePrincipal-id @@ -5269,6 +5328,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ownedObjects from servicePrincipals + description: Directory objects that are owned by this service principal. Read-only. Nullable. operationId: servicePrincipals_ListOwnedObjects parameters: - name: servicePrincipal-id @@ -5351,6 +5411,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ref of ownedObjects from servicePrincipals + description: Directory objects that are owned by this service principal. Read-only. Nullable. operationId: servicePrincipals_ListRefOwnedObjects parameters: - name: servicePrincipal-id @@ -5407,6 +5468,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Create new navigation property ref to ownedObjects for servicePrincipals + description: Directory objects that are owned by this service principal. Read-only. Nullable. operationId: servicePrincipals_CreateRefOwnedObjects parameters: - name: servicePrincipal-id @@ -5442,6 +5504,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get owners from servicePrincipals + description: Directory objects that are owners of this servicePrincipal. The owners are a set of non-admin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. operationId: servicePrincipals_ListOwners parameters: - name: servicePrincipal-id @@ -5524,6 +5587,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ref of owners from servicePrincipals + description: Directory objects that are owners of this servicePrincipal. The owners are a set of non-admin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. operationId: servicePrincipals_ListRefOwners parameters: - name: servicePrincipal-id @@ -5580,6 +5644,7 @@ paths: tags: - servicePrincipals.directoryObject summary: Create new navigation property ref to owners for servicePrincipals + description: Directory objects that are owners of this servicePrincipal. The owners are a set of non-admin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. operationId: servicePrincipals_CreateRefOwners parameters: - name: servicePrincipal-id @@ -5615,6 +5680,7 @@ paths: tags: - servicePrincipals.tokenIssuancePolicy summary: Get tokenIssuancePolicies from servicePrincipals + description: The tokenIssuancePolicies assigned to this service principal. operationId: servicePrincipals_ListTokenIssuancePolicies parameters: - name: servicePrincipal-id @@ -5711,6 +5777,7 @@ paths: tags: - servicePrincipals.tokenIssuancePolicy summary: Get ref of tokenIssuancePolicies from servicePrincipals + description: The tokenIssuancePolicies assigned to this service principal. operationId: servicePrincipals_ListRefTokenIssuancePolicies parameters: - name: servicePrincipal-id @@ -5775,6 +5842,7 @@ paths: tags: - servicePrincipals.tokenIssuancePolicy summary: Create new navigation property ref to tokenIssuancePolicies for servicePrincipals + description: The tokenIssuancePolicies assigned to this service principal. operationId: servicePrincipals_CreateRefTokenIssuancePolicies parameters: - name: servicePrincipal-id @@ -5810,6 +5878,7 @@ paths: tags: - servicePrincipals.tokenLifetimePolicy summary: Get tokenLifetimePolicies from servicePrincipals + description: The tokenLifetimePolicies assigned to this service principal. operationId: servicePrincipals_ListTokenLifetimePolicies parameters: - name: servicePrincipal-id @@ -5906,6 +5975,7 @@ paths: tags: - servicePrincipals.tokenLifetimePolicy summary: Get ref of tokenLifetimePolicies from servicePrincipals + description: The tokenLifetimePolicies assigned to this service principal. operationId: servicePrincipals_ListRefTokenLifetimePolicies parameters: - name: servicePrincipal-id @@ -5970,6 +6040,7 @@ paths: tags: - servicePrincipals.tokenLifetimePolicy summary: Create new navigation property ref to tokenLifetimePolicies for servicePrincipals + description: The tokenLifetimePolicies assigned to this service principal. operationId: servicePrincipals_CreateRefTokenLifetimePolicies parameters: - name: servicePrincipal-id @@ -6301,6 +6372,7 @@ paths: tags: - users.appRoleAssignment summary: Get appRoleAssignments from users + description: Represents the app roles a user has been granted for an application. operationId: users_ListAppRoleAssignments parameters: - name: user-id @@ -6403,6 +6475,7 @@ paths: tags: - users.appRoleAssignment summary: Create new navigation property to appRoleAssignments for users + description: Represents the app roles a user has been granted for an application. operationId: users_CreateAppRoleAssignments parameters: - name: user-id @@ -6434,6 +6507,7 @@ paths: tags: - users.appRoleAssignment summary: Get appRoleAssignments from users + description: Represents the app roles a user has been granted for an application. operationId: users_GetAppRoleAssignments parameters: - name: user-id @@ -6496,6 +6570,7 @@ paths: tags: - users.appRoleAssignment summary: Update the navigation property appRoleAssignments in users + description: Represents the app roles a user has been granted for an application. operationId: users_UpdateAppRoleAssignments parameters: - name: user-id @@ -6529,6 +6604,7 @@ paths: tags: - users.appRoleAssignment summary: Delete navigation property appRoleAssignments for users + description: Represents the app roles a user has been granted for an application. operationId: users_DeleteAppRoleAssignments parameters: - name: user-id @@ -6577,6 +6653,7 @@ components: nullable: true applicationTemplateId: type: string + description: Unique identifier of the applicationTemplate. nullable: true appRoles: type: array @@ -6609,6 +6686,7 @@ components: $ref: '#/components/schemas/microsoft.graph.informationalUrl' isDeviceOnlyAuthSupported: type: boolean + description: Specifies whether this application supports device authentication without a user. The default is false. nullable: true isFallbackPublicClient: type: boolean @@ -6860,7 +6938,7 @@ components: items: type: string nullable: true - description: 'The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer,Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.' + description: 'The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer, Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.' description: type: string description: A description of the application. @@ -7220,7 +7298,7 @@ components: 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).' + description: 'Indicates whether 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 principalId: type: string @@ -7547,11 +7625,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object diff --git a/openApiDocs/v1.0/Calendar.yml b/openApiDocs/v1.0/Calendar.yml index a7ff6e5bd8d..9db5c38f7ca 100644 --- a/openApiDocs/v1.0/Calendar.yml +++ b/openApiDocs/v1.0/Calendar.yml @@ -11,6 +11,7 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The group's calendar. Read-only. operationId: groups_GetCalendar parameters: - name: group-id @@ -102,6 +103,7 @@ paths: tags: - groups.calendar summary: Update the navigation property calendar in groups + description: The group's calendar. Read-only. operationId: groups_UpdateCalendar parameters: - name: group-id @@ -128,6 +130,7 @@ paths: tags: - groups.calendar summary: Delete navigation property calendar for groups + description: The group's calendar. Read-only. operationId: groups_DeleteCalendar parameters: - name: group-id @@ -153,6 +156,7 @@ paths: tags: - groups.calendar summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_ListCalendarPermissions parameters: - name: group-id @@ -246,6 +250,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_CreateCalendarPermissions parameters: - name: group-id @@ -277,6 +282,7 @@ paths: tags: - groups.calendar summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_GetCalendarPermissions parameters: - name: group-id @@ -336,6 +342,7 @@ paths: tags: - groups.calendar summary: Update the navigation property calendarPermissions in groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_UpdateCalendarPermissions parameters: - name: group-id @@ -369,6 +376,7 @@ paths: tags: - groups.calendar summary: Delete navigation property calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_DeleteCalendarPermissions parameters: - name: group-id @@ -401,6 +409,7 @@ paths: tags: - groups.calendar summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_ListCalendarView parameters: - name: group-id @@ -623,6 +632,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_CreateCalendarView parameters: - name: group-id @@ -654,6 +664,7 @@ paths: tags: - groups.calendar summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_GetCalendarView parameters: - name: group-id @@ -803,6 +814,7 @@ paths: tags: - groups.calendar summary: Update the navigation property calendarView in groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_UpdateCalendarView parameters: - name: group-id @@ -836,6 +848,7 @@ paths: tags: - groups.calendar summary: Delete navigation property calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_DeleteCalendarView parameters: - name: group-id @@ -868,6 +881,7 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_ListAttachments parameters: - name: group-id @@ -968,6 +982,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_CreateAttachments parameters: - name: group-id @@ -1006,6 +1021,7 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_GetAttachments parameters: - name: group-id @@ -1072,6 +1088,7 @@ paths: tags: - groups.calendar summary: Update the navigation property attachments in groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_UpdateAttachments parameters: - name: group-id @@ -1112,6 +1129,7 @@ paths: tags: - groups.calendar summary: Delete navigation property attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_DeleteAttachments parameters: - name: group-id @@ -1151,6 +1169,7 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.calendarView_GetCalendar parameters: - name: group-id @@ -1254,6 +1273,7 @@ paths: tags: - groups.calendar summary: Update the navigation property calendar in groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.calendarView_UpdateCalendar parameters: - name: group-id @@ -1287,6 +1307,7 @@ paths: tags: - groups.calendar summary: Delete navigation property calendar for groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.calendarView_DeleteCalendar parameters: - name: group-id @@ -1319,6 +1340,7 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_ListExtensions parameters: - name: group-id @@ -1404,6 +1426,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_CreateExtensions parameters: - name: group-id @@ -1442,6 +1465,7 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_GetExtensions parameters: - name: group-id @@ -1503,6 +1527,7 @@ paths: tags: - groups.calendar summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_UpdateExtensions parameters: - name: group-id @@ -1543,6 +1568,7 @@ paths: tags: - groups.calendar summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_DeleteExtensions parameters: - name: group-id @@ -1582,6 +1608,7 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_ListInstances parameters: - name: group-id @@ -1799,6 +1826,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_CreateInstances parameters: - name: group-id @@ -1837,6 +1865,7 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_GetInstances parameters: - name: group-id @@ -1987,6 +2016,7 @@ paths: tags: - groups.calendar summary: Update the navigation property instances in groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_UpdateInstances parameters: - name: group-id @@ -2027,6 +2057,7 @@ paths: tags: - groups.calendar summary: Delete navigation property instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_DeleteInstances parameters: - name: group-id @@ -2066,6 +2097,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_ListMultiValueExtendedProperties parameters: - name: group-id @@ -2154,6 +2186,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -2192,6 +2225,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_GetMultiValueExtendedProperties parameters: - name: group-id @@ -2254,6 +2288,7 @@ paths: tags: - groups.calendar summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -2294,6 +2329,7 @@ paths: tags: - groups.calendar summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -2333,6 +2369,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_ListSingleValueExtendedProperties parameters: - name: group-id @@ -2421,6 +2458,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -2459,6 +2497,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_GetSingleValueExtendedProperties parameters: - name: group-id @@ -2521,6 +2560,7 @@ paths: tags: - groups.calendar summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -2561,6 +2601,7 @@ paths: tags: - groups.calendar summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -2600,6 +2641,7 @@ paths: tags: - groups.calendar summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_ListEvents parameters: - name: group-id @@ -2810,6 +2852,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_CreateEvents parameters: - name: group-id @@ -2841,6 +2884,7 @@ paths: tags: - groups.calendar summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_GetEvents parameters: - name: group-id @@ -2978,6 +3022,7 @@ paths: tags: - groups.calendar summary: Update the navigation property events in groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_UpdateEvents parameters: - name: group-id @@ -3011,6 +3056,7 @@ paths: tags: - groups.calendar summary: Delete navigation property events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_DeleteEvents parameters: - name: group-id @@ -3043,6 +3089,7 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_ListAttachments parameters: - name: group-id @@ -3143,6 +3190,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_CreateAttachments parameters: - name: group-id @@ -3181,6 +3229,7 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_GetAttachments parameters: - name: group-id @@ -3247,6 +3296,7 @@ paths: tags: - groups.calendar summary: Update the navigation property attachments in groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_UpdateAttachments parameters: - name: group-id @@ -3287,6 +3337,7 @@ paths: tags: - groups.calendar summary: Delete navigation property attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_DeleteAttachments parameters: - name: group-id @@ -3326,6 +3377,7 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events_GetCalendar parameters: - name: group-id @@ -3429,6 +3481,7 @@ paths: tags: - groups.calendar summary: Update the navigation property calendar in groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events_UpdateCalendar parameters: - name: group-id @@ -3462,6 +3515,7 @@ paths: tags: - groups.calendar summary: Delete navigation property calendar for groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events_DeleteCalendar parameters: - name: group-id @@ -3494,6 +3548,7 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_ListExtensions parameters: - name: group-id @@ -3579,6 +3634,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_CreateExtensions parameters: - name: group-id @@ -3617,6 +3673,7 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_GetExtensions parameters: - name: group-id @@ -3678,6 +3735,7 @@ paths: tags: - groups.calendar summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_UpdateExtensions parameters: - name: group-id @@ -3718,6 +3776,7 @@ paths: tags: - groups.calendar summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_DeleteExtensions parameters: - name: group-id @@ -3757,6 +3816,7 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_ListInstances parameters: - name: group-id @@ -3974,6 +4034,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_CreateInstances parameters: - name: group-id @@ -4012,6 +4073,7 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_GetInstances parameters: - name: group-id @@ -4162,6 +4224,7 @@ paths: tags: - groups.calendar summary: Update the navigation property instances in groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_UpdateInstances parameters: - name: group-id @@ -4202,6 +4265,7 @@ paths: tags: - groups.calendar summary: Delete navigation property instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_DeleteInstances parameters: - name: group-id @@ -4241,6 +4305,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_ListMultiValueExtendedProperties parameters: - name: group-id @@ -4329,6 +4394,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -4367,6 +4433,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_GetMultiValueExtendedProperties parameters: - name: group-id @@ -4429,6 +4496,7 @@ paths: tags: - groups.calendar summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -4469,6 +4537,7 @@ paths: tags: - groups.calendar summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -4508,6 +4577,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_ListSingleValueExtendedProperties parameters: - name: group-id @@ -4596,6 +4666,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -4634,6 +4705,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_GetSingleValueExtendedProperties parameters: - name: group-id @@ -4696,6 +4768,7 @@ paths: tags: - groups.calendar summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -4736,6 +4809,7 @@ paths: tags: - groups.calendar summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -4775,6 +4849,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_ListMultiValueExtendedProperties parameters: - name: group-id @@ -4856,6 +4931,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -4887,6 +4963,7 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_GetMultiValueExtendedProperties parameters: - name: group-id @@ -4942,6 +5019,7 @@ paths: tags: - groups.calendar summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -4975,6 +5053,7 @@ paths: tags: - groups.calendar summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -5007,6 +5086,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_ListSingleValueExtendedProperties parameters: - name: group-id @@ -5088,6 +5168,7 @@ paths: tags: - groups.calendar summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -5119,6 +5200,7 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_GetSingleValueExtendedProperties parameters: - name: group-id @@ -5174,6 +5256,7 @@ paths: tags: - groups.calendar summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -5207,6 +5290,7 @@ paths: tags: - groups.calendar summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -5239,6 +5323,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Read-only. operationId: groups_ListCalendarView parameters: - name: group-id @@ -5461,6 +5546,7 @@ paths: tags: - groups.event summary: Create new navigation property to calendarView for groups + description: The calendar view for the calendar. Read-only. operationId: groups_CreateCalendarView parameters: - name: group-id @@ -5492,6 +5578,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Read-only. operationId: groups_GetCalendarView parameters: - name: group-id @@ -5641,6 +5728,7 @@ paths: tags: - groups.event summary: Update the navigation property calendarView in groups + description: The calendar view for the calendar. Read-only. operationId: groups_UpdateCalendarView parameters: - name: group-id @@ -5674,6 +5762,7 @@ paths: tags: - groups.event summary: Delete navigation property calendarView for groups + description: The calendar view for the calendar. Read-only. operationId: groups_DeleteCalendarView parameters: - name: group-id @@ -5706,6 +5795,7 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_ListAttachments parameters: - name: group-id @@ -5806,6 +5896,7 @@ paths: tags: - groups.event summary: Create new navigation property to attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_CreateAttachments parameters: - name: group-id @@ -5844,6 +5935,7 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_GetAttachments parameters: - name: group-id @@ -5910,6 +6002,7 @@ paths: tags: - groups.event summary: Update the navigation property attachments in groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_UpdateAttachments parameters: - name: group-id @@ -5950,6 +6043,7 @@ paths: tags: - groups.event summary: Delete navigation property attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_DeleteAttachments parameters: - name: group-id @@ -5989,6 +6083,7 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendarView_GetCalendar parameters: - name: group-id @@ -6092,6 +6187,7 @@ paths: tags: - groups.event summary: Update the navigation property calendar in groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendarView_UpdateCalendar parameters: - name: group-id @@ -6125,6 +6221,7 @@ paths: tags: - groups.event summary: Delete navigation property calendar for groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendarView_DeleteCalendar parameters: - name: group-id @@ -6157,6 +6254,7 @@ paths: tags: - groups.event summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendarView.calendar_ListCalendarPermissions parameters: - name: group-id @@ -6257,6 +6355,7 @@ paths: tags: - groups.event summary: Create new navigation property to calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendarView.calendar_CreateCalendarPermissions parameters: - name: group-id @@ -6295,6 +6394,7 @@ paths: tags: - groups.event summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendarView.calendar_GetCalendarPermissions parameters: - name: group-id @@ -6361,6 +6461,7 @@ paths: tags: - groups.event summary: Update the navigation property calendarPermissions in groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendarView.calendar_UpdateCalendarPermissions parameters: - name: group-id @@ -6401,6 +6502,7 @@ paths: tags: - groups.event summary: Delete navigation property calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendarView.calendar_DeleteCalendarPermissions parameters: - name: group-id @@ -6440,6 +6542,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_ListCalendarView parameters: - name: group-id @@ -6657,6 +6760,7 @@ paths: tags: - groups.event summary: Create new navigation property to calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_CreateCalendarView parameters: - name: group-id @@ -6695,6 +6799,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_GetCalendarView parameters: - name: group-id @@ -6845,6 +6950,7 @@ paths: tags: - groups.event summary: Update the navigation property calendarView in groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_UpdateCalendarView parameters: - name: group-id @@ -6885,6 +6991,7 @@ paths: tags: - groups.event summary: Delete navigation property calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_DeleteCalendarView parameters: - name: group-id @@ -6924,6 +7031,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_ListEvents parameters: - name: group-id @@ -7141,6 +7249,7 @@ paths: tags: - groups.event summary: Create new navigation property to events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_CreateEvents parameters: - name: group-id @@ -7179,6 +7288,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_GetEvents parameters: - name: group-id @@ -7329,6 +7439,7 @@ paths: tags: - groups.event summary: Update the navigation property events in groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_UpdateEvents parameters: - name: group-id @@ -7369,6 +7480,7 @@ paths: tags: - groups.event summary: Delete navigation property events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendarView.calendar_DeleteEvents parameters: - name: group-id @@ -7408,6 +7520,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_ListMultiValueExtendedProperties parameters: - name: group-id @@ -7496,6 +7609,7 @@ paths: tags: - groups.event summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -7534,6 +7648,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_GetMultiValueExtendedProperties parameters: - name: group-id @@ -7596,6 +7711,7 @@ paths: tags: - groups.event summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -7636,6 +7752,7 @@ paths: tags: - groups.event summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -7675,6 +7792,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_ListSingleValueExtendedProperties parameters: - name: group-id @@ -7763,6 +7881,7 @@ paths: tags: - groups.event summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -7801,6 +7920,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_GetSingleValueExtendedProperties parameters: - name: group-id @@ -7863,6 +7983,7 @@ paths: tags: - groups.event summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -7903,6 +8024,7 @@ paths: tags: - groups.event summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendarView.calendar_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -7942,6 +8064,7 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_ListExtensions parameters: - name: group-id @@ -8027,6 +8150,7 @@ paths: tags: - groups.event summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_CreateExtensions parameters: - name: group-id @@ -8065,6 +8189,7 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_GetExtensions parameters: - name: group-id @@ -8126,6 +8251,7 @@ paths: tags: - groups.event summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_UpdateExtensions parameters: - name: group-id @@ -8166,6 +8292,7 @@ paths: tags: - groups.event summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_DeleteExtensions parameters: - name: group-id @@ -8205,6 +8332,7 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_ListInstances parameters: - name: group-id @@ -8422,6 +8550,7 @@ paths: tags: - groups.event summary: Create new navigation property to instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_CreateInstances parameters: - name: group-id @@ -8460,6 +8589,7 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_GetInstances parameters: - name: group-id @@ -8610,6 +8740,7 @@ paths: tags: - groups.event summary: Update the navigation property instances in groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_UpdateInstances parameters: - name: group-id @@ -8650,6 +8781,7 @@ paths: tags: - groups.event summary: Delete navigation property instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_DeleteInstances parameters: - name: group-id @@ -8689,6 +8821,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_ListMultiValueExtendedProperties parameters: - name: group-id @@ -8777,6 +8910,7 @@ paths: tags: - groups.event summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -8815,6 +8949,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_GetMultiValueExtendedProperties parameters: - name: group-id @@ -8877,6 +9012,7 @@ paths: tags: - groups.event summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -8917,6 +9053,7 @@ paths: tags: - groups.event summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -8956,6 +9093,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_ListSingleValueExtendedProperties parameters: - name: group-id @@ -9044,6 +9182,7 @@ paths: tags: - groups.event summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -9082,6 +9221,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_GetSingleValueExtendedProperties parameters: - name: group-id @@ -9144,6 +9284,7 @@ paths: tags: - groups.event summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -9184,6 +9325,7 @@ paths: tags: - groups.event summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -9223,6 +9365,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The group's events. operationId: groups_ListEvents parameters: - name: group-id @@ -9433,6 +9576,7 @@ paths: tags: - groups.event summary: Create new navigation property to events for groups + description: The group's events. operationId: groups_CreateEvents parameters: - name: group-id @@ -9464,6 +9608,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The group's events. operationId: groups_GetEvents parameters: - name: group-id @@ -9601,6 +9746,7 @@ paths: tags: - groups.event summary: Update the navigation property events in groups + description: The group's events. operationId: groups_UpdateEvents parameters: - name: group-id @@ -9634,6 +9780,7 @@ paths: tags: - groups.event summary: Delete navigation property events for groups + description: The group's events. operationId: groups_DeleteEvents parameters: - name: group-id @@ -9666,6 +9813,7 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_ListAttachments parameters: - name: group-id @@ -9766,6 +9914,7 @@ paths: tags: - groups.event summary: Create new navigation property to attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_CreateAttachments parameters: - name: group-id @@ -9804,6 +9953,7 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_GetAttachments parameters: - name: group-id @@ -9870,6 +10020,7 @@ paths: tags: - groups.event summary: Update the navigation property attachments in groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_UpdateAttachments parameters: - name: group-id @@ -9910,6 +10061,7 @@ paths: tags: - groups.event summary: Delete navigation property attachments for groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_DeleteAttachments parameters: - name: group-id @@ -9949,6 +10101,7 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events_GetCalendar parameters: - name: group-id @@ -10052,6 +10205,7 @@ paths: tags: - groups.event summary: Update the navigation property calendar in groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events_UpdateCalendar parameters: - name: group-id @@ -10085,6 +10239,7 @@ paths: tags: - groups.event summary: Delete navigation property calendar for groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events_DeleteCalendar parameters: - name: group-id @@ -10117,6 +10272,7 @@ paths: tags: - groups.event summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.events.calendar_ListCalendarPermissions parameters: - name: group-id @@ -10217,6 +10373,7 @@ paths: tags: - groups.event summary: Create new navigation property to calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.events.calendar_CreateCalendarPermissions parameters: - name: group-id @@ -10255,6 +10412,7 @@ paths: tags: - groups.event summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.events.calendar_GetCalendarPermissions parameters: - name: group-id @@ -10321,6 +10479,7 @@ paths: tags: - groups.event summary: Update the navigation property calendarPermissions in groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.events.calendar_UpdateCalendarPermissions parameters: - name: group-id @@ -10361,6 +10520,7 @@ paths: tags: - groups.event summary: Delete navigation property calendarPermissions for groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.events.calendar_DeleteCalendarPermissions parameters: - name: group-id @@ -10400,6 +10560,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.events.calendar_ListCalendarView parameters: - name: group-id @@ -10617,6 +10778,7 @@ paths: tags: - groups.event summary: Create new navigation property to calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.events.calendar_CreateCalendarView parameters: - name: group-id @@ -10655,6 +10817,7 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.events.calendar_GetCalendarView parameters: - name: group-id @@ -10805,6 +10968,7 @@ paths: tags: - groups.event summary: Update the navigation property calendarView in groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.events.calendar_UpdateCalendarView parameters: - name: group-id @@ -10845,6 +11009,7 @@ paths: tags: - groups.event summary: Delete navigation property calendarView for groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.events.calendar_DeleteCalendarView parameters: - name: group-id @@ -10884,6 +11049,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.events.calendar_ListEvents parameters: - name: group-id @@ -11101,6 +11267,7 @@ paths: tags: - groups.event summary: Create new navigation property to events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.events.calendar_CreateEvents parameters: - name: group-id @@ -11139,6 +11306,7 @@ paths: tags: - groups.event summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.events.calendar_GetEvents parameters: - name: group-id @@ -11289,6 +11457,7 @@ paths: tags: - groups.event summary: Update the navigation property events in groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.events.calendar_UpdateEvents parameters: - name: group-id @@ -11329,6 +11498,7 @@ paths: tags: - groups.event summary: Delete navigation property events for groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.events.calendar_DeleteEvents parameters: - name: group-id @@ -11368,6 +11538,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_ListMultiValueExtendedProperties parameters: - name: group-id @@ -11456,6 +11627,7 @@ paths: tags: - groups.event summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -11494,6 +11666,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_GetMultiValueExtendedProperties parameters: - name: group-id @@ -11556,6 +11729,7 @@ paths: tags: - groups.event summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -11596,6 +11770,7 @@ paths: tags: - groups.event summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -11635,6 +11810,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_ListSingleValueExtendedProperties parameters: - name: group-id @@ -11723,6 +11899,7 @@ paths: tags: - groups.event summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -11761,6 +11938,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_GetSingleValueExtendedProperties parameters: - name: group-id @@ -11823,6 +12001,7 @@ paths: tags: - groups.event summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -11863,6 +12042,7 @@ paths: tags: - groups.event summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.events.calendar_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -11902,6 +12082,7 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_ListExtensions parameters: - name: group-id @@ -11987,6 +12168,7 @@ paths: tags: - groups.event summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_CreateExtensions parameters: - name: group-id @@ -12025,6 +12207,7 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_GetExtensions parameters: - name: group-id @@ -12086,6 +12269,7 @@ paths: tags: - groups.event summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_UpdateExtensions parameters: - name: group-id @@ -12126,6 +12310,7 @@ paths: tags: - groups.event summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_DeleteExtensions parameters: - name: group-id @@ -12165,6 +12350,7 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_ListInstances parameters: - name: group-id @@ -12382,6 +12568,7 @@ paths: tags: - groups.event summary: Create new navigation property to instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_CreateInstances parameters: - name: group-id @@ -12420,6 +12607,7 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_GetInstances parameters: - name: group-id @@ -12570,6 +12758,7 @@ paths: tags: - groups.event summary: Update the navigation property instances in groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_UpdateInstances parameters: - name: group-id @@ -12610,6 +12799,7 @@ paths: tags: - groups.event summary: Delete navigation property instances for groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_DeleteInstances parameters: - name: group-id @@ -12649,6 +12839,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_ListMultiValueExtendedProperties parameters: - name: group-id @@ -12737,6 +12928,7 @@ paths: tags: - groups.event summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -12775,6 +12967,7 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_GetMultiValueExtendedProperties parameters: - name: group-id @@ -12837,6 +13030,7 @@ paths: tags: - groups.event summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -12877,6 +13071,7 @@ paths: tags: - groups.event summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -12916,6 +13111,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_ListSingleValueExtendedProperties parameters: - name: group-id @@ -13004,6 +13200,7 @@ paths: tags: - groups.event summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -13042,6 +13239,7 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_GetSingleValueExtendedProperties parameters: - name: group-id @@ -13104,6 +13302,7 @@ paths: tags: - groups.event summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -13144,6 +13343,7 @@ paths: tags: - groups.event summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -13391,6 +13591,7 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The user's primary calendar. Read-only. operationId: users_GetCalendar parameters: - name: user-id @@ -13482,6 +13683,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendar in users + description: The user's primary calendar. Read-only. operationId: users_UpdateCalendar parameters: - name: user-id @@ -13508,6 +13710,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendar for users + description: The user's primary calendar. Read-only. operationId: users_DeleteCalendar parameters: - name: user-id @@ -13533,6 +13736,7 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_ListCalendarPermissions parameters: - name: user-id @@ -13626,6 +13830,7 @@ paths: tags: - users.calendar summary: Create new navigation property to calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_CreateCalendarPermissions parameters: - name: user-id @@ -13657,6 +13862,7 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_GetCalendarPermissions parameters: - name: user-id @@ -13716,6 +13922,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendarPermissions in users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_UpdateCalendarPermissions parameters: - name: user-id @@ -13749,6 +13956,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_DeleteCalendarPermissions parameters: - name: user-id @@ -13781,6 +13989,7 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_ListCalendarView parameters: - name: user-id @@ -14003,6 +14212,7 @@ paths: tags: - users.calendar summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_CreateCalendarView parameters: - name: user-id @@ -14034,6 +14244,7 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_GetCalendarView parameters: - name: user-id @@ -14183,6 +14394,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_UpdateCalendarView parameters: - name: user-id @@ -14216,6 +14428,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_DeleteCalendarView parameters: - name: user-id @@ -14248,6 +14461,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_ListAttachments parameters: - name: user-id @@ -14348,6 +14562,7 @@ paths: tags: - users.calendar summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_CreateAttachments parameters: - name: user-id @@ -14386,6 +14601,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_GetAttachments parameters: - name: user-id @@ -14452,6 +14668,7 @@ paths: tags: - users.calendar summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_UpdateAttachments parameters: - name: user-id @@ -14492,6 +14709,7 @@ paths: tags: - users.calendar summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_DeleteAttachments parameters: - name: user-id @@ -14531,6 +14749,7 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.calendarView_GetCalendar parameters: - name: user-id @@ -14634,6 +14853,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.calendarView_UpdateCalendar parameters: - name: user-id @@ -14667,6 +14887,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.calendarView_DeleteCalendar parameters: - name: user-id @@ -14699,6 +14920,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_ListExtensions parameters: - name: user-id @@ -14784,6 +15006,7 @@ paths: tags: - users.calendar summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_CreateExtensions parameters: - name: user-id @@ -14822,6 +15045,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_GetExtensions parameters: - name: user-id @@ -14883,6 +15107,7 @@ paths: tags: - users.calendar summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_UpdateExtensions parameters: - name: user-id @@ -14923,6 +15148,7 @@ paths: tags: - users.calendar summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_DeleteExtensions parameters: - name: user-id @@ -14962,6 +15188,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_ListInstances parameters: - name: user-id @@ -15179,6 +15406,7 @@ paths: tags: - users.calendar summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_CreateInstances parameters: - name: user-id @@ -15217,6 +15445,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_GetInstances parameters: - name: user-id @@ -15367,6 +15596,7 @@ paths: tags: - users.calendar summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_UpdateInstances parameters: - name: user-id @@ -15407,6 +15637,7 @@ paths: tags: - users.calendar summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_DeleteInstances parameters: - name: user-id @@ -15446,6 +15677,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id @@ -15534,6 +15766,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -15572,6 +15805,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id @@ -15634,6 +15868,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -15674,6 +15909,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -15713,6 +15949,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id @@ -15801,6 +16038,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -15839,6 +16077,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id @@ -15901,6 +16140,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -15941,6 +16181,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -15980,6 +16221,7 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_ListEvents parameters: - name: user-id @@ -16190,6 +16432,7 @@ paths: tags: - users.calendar summary: Create new navigation property to events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_CreateEvents parameters: - name: user-id @@ -16221,6 +16464,7 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_GetEvents parameters: - name: user-id @@ -16358,6 +16602,7 @@ paths: tags: - users.calendar summary: Update the navigation property events in users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_UpdateEvents parameters: - name: user-id @@ -16391,6 +16636,7 @@ paths: tags: - users.calendar summary: Delete navigation property events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_DeleteEvents parameters: - name: user-id @@ -16423,6 +16669,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_ListAttachments parameters: - name: user-id @@ -16523,6 +16770,7 @@ paths: tags: - users.calendar summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_CreateAttachments parameters: - name: user-id @@ -16561,6 +16809,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_GetAttachments parameters: - name: user-id @@ -16627,6 +16876,7 @@ paths: tags: - users.calendar summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_UpdateAttachments parameters: - name: user-id @@ -16667,6 +16917,7 @@ paths: tags: - users.calendar summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_DeleteAttachments parameters: - name: user-id @@ -16706,6 +16957,7 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.events_GetCalendar parameters: - name: user-id @@ -16809,6 +17061,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.events_UpdateCalendar parameters: - name: user-id @@ -16842,6 +17095,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.events_DeleteCalendar parameters: - name: user-id @@ -16874,6 +17128,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_ListExtensions parameters: - name: user-id @@ -16959,6 +17214,7 @@ paths: tags: - users.calendar summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_CreateExtensions parameters: - name: user-id @@ -16997,6 +17253,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_GetExtensions parameters: - name: user-id @@ -17058,6 +17315,7 @@ paths: tags: - users.calendar summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_UpdateExtensions parameters: - name: user-id @@ -17098,6 +17356,7 @@ paths: tags: - users.calendar summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_DeleteExtensions parameters: - name: user-id @@ -17137,6 +17396,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_ListInstances parameters: - name: user-id @@ -17354,6 +17614,7 @@ paths: tags: - users.calendar summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_CreateInstances parameters: - name: user-id @@ -17392,6 +17653,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_GetInstances parameters: - name: user-id @@ -17542,6 +17804,7 @@ paths: tags: - users.calendar summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_UpdateInstances parameters: - name: user-id @@ -17582,6 +17845,7 @@ paths: tags: - users.calendar summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_DeleteInstances parameters: - name: user-id @@ -17621,6 +17885,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_ListMultiValueExtendedProperties parameters: - name: user-id @@ -17709,6 +17974,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -17747,6 +18013,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_GetMultiValueExtendedProperties parameters: - name: user-id @@ -17809,6 +18076,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -17849,6 +18117,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -17888,6 +18157,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_ListSingleValueExtendedProperties parameters: - name: user-id @@ -17976,6 +18246,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -18014,6 +18285,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_GetSingleValueExtendedProperties parameters: - name: user-id @@ -18076,6 +18348,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -18116,6 +18389,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -18155,6 +18429,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_ListMultiValueExtendedProperties parameters: - name: user-id @@ -18236,6 +18511,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -18267,6 +18543,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_GetMultiValueExtendedProperties parameters: - name: user-id @@ -18322,6 +18599,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -18355,6 +18633,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -18387,6 +18666,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_ListSingleValueExtendedProperties parameters: - name: user-id @@ -18468,6 +18748,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -18499,6 +18780,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_GetSingleValueExtendedProperties parameters: - name: user-id @@ -18554,6 +18836,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -18587,6 +18870,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -18619,6 +18903,7 @@ paths: tags: - users.calendarGroup summary: Get calendarGroups from users + description: The user's calendar groups. Read-only. Nullable. operationId: users_ListCalendarGroups parameters: - name: user-id @@ -18708,6 +18993,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to calendarGroups for users + description: The user's calendar groups. Read-only. Nullable. operationId: users_CreateCalendarGroups parameters: - name: user-id @@ -18739,6 +19025,7 @@ paths: tags: - users.calendarGroup summary: Get calendarGroups from users + description: The user's calendar groups. Read-only. Nullable. operationId: users_GetCalendarGroups parameters: - name: user-id @@ -18804,6 +19091,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendarGroups in users + description: The user's calendar groups. Read-only. Nullable. operationId: users_UpdateCalendarGroups parameters: - name: user-id @@ -18837,6 +19125,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendarGroups for users + description: The user's calendar groups. Read-only. Nullable. operationId: users_DeleteCalendarGroups parameters: - name: user-id @@ -18869,6 +19158,7 @@ paths: tags: - users.calendarGroup summary: Get calendars from users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_ListCalendars parameters: - name: user-id @@ -19003,6 +19293,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to calendars for users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_CreateCalendars parameters: - name: user-id @@ -19041,6 +19332,7 @@ paths: tags: - users.calendarGroup summary: Get calendars from users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_GetCalendars parameters: - name: user-id @@ -19156,6 +19448,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendars in users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_UpdateCalendars parameters: - name: user-id @@ -19196,6 +19489,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendars for users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_DeleteCalendars parameters: - name: user-id @@ -19235,6 +19529,7 @@ paths: tags: - users.calendarGroup summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_ListCalendarPermissions parameters: - name: user-id @@ -19342,6 +19637,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_CreateCalendarPermissions parameters: - name: user-id @@ -19387,6 +19683,7 @@ paths: tags: - users.calendarGroup summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_GetCalendarPermissions parameters: - name: user-id @@ -19460,6 +19757,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendarPermissions in users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_UpdateCalendarPermissions parameters: - name: user-id @@ -19507,6 +19805,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_DeleteCalendarPermissions parameters: - name: user-id @@ -19553,6 +19852,7 @@ paths: tags: - users.calendarGroup summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_ListCalendarView parameters: - name: user-id @@ -19777,6 +20077,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_CreateCalendarView parameters: - name: user-id @@ -19822,6 +20123,7 @@ paths: tags: - users.calendarGroup summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_GetCalendarView parameters: - name: user-id @@ -19985,6 +20287,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_UpdateCalendarView parameters: - name: user-id @@ -20032,6 +20335,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_DeleteCalendarView parameters: - name: user-id @@ -20078,6 +20382,7 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_ListAttachments parameters: - name: user-id @@ -20192,6 +20497,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_CreateAttachments parameters: - name: user-id @@ -20244,6 +20550,7 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_GetAttachments parameters: - name: user-id @@ -20324,6 +20631,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_UpdateAttachments parameters: - name: user-id @@ -20378,6 +20686,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_DeleteAttachments parameters: - name: user-id @@ -20431,6 +20740,7 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.calendarView_GetCalendar parameters: - name: user-id @@ -20558,6 +20868,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.calendarView_UpdateCalendar parameters: - name: user-id @@ -20605,6 +20916,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.calendarView_DeleteCalendar parameters: - name: user-id @@ -20651,6 +20963,7 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_ListExtensions parameters: - name: user-id @@ -20750,6 +21063,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_CreateExtensions parameters: - name: user-id @@ -20802,6 +21116,7 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_GetExtensions parameters: - name: user-id @@ -20877,6 +21192,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_UpdateExtensions parameters: - name: user-id @@ -20931,6 +21247,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_DeleteExtensions parameters: - name: user-id @@ -20984,6 +21301,7 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_ListInstances parameters: - name: user-id @@ -21215,6 +21533,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_CreateInstances parameters: - name: user-id @@ -21267,6 +21586,7 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_GetInstances parameters: - name: user-id @@ -21443,6 +21763,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_UpdateInstances parameters: - name: user-id @@ -21497,6 +21818,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_DeleteInstances parameters: - name: user-id @@ -21550,6 +21872,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id @@ -21652,6 +21975,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -21704,6 +22028,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id @@ -21780,6 +22105,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -21834,6 +22160,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -21887,6 +22214,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id @@ -21989,6 +22317,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -22041,6 +22370,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id @@ -22117,6 +22447,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -22171,6 +22502,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -22224,6 +22556,7 @@ paths: tags: - users.calendarGroup summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_ListEvents parameters: - name: user-id @@ -22448,6 +22781,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_CreateEvents parameters: - name: user-id @@ -22493,6 +22827,7 @@ paths: tags: - users.calendarGroup summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_GetEvents parameters: - name: user-id @@ -22656,6 +22991,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property events in users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_UpdateEvents parameters: - name: user-id @@ -22703,6 +23039,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_DeleteEvents parameters: - name: user-id @@ -22749,6 +23086,7 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_ListAttachments parameters: - name: user-id @@ -22863,6 +23201,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_CreateAttachments parameters: - name: user-id @@ -22915,6 +23254,7 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_GetAttachments parameters: - name: user-id @@ -22995,6 +23335,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_UpdateAttachments parameters: - name: user-id @@ -23049,6 +23390,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_DeleteAttachments parameters: - name: user-id @@ -23102,6 +23444,7 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.events_GetCalendar parameters: - name: user-id @@ -23229,6 +23572,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.events_UpdateCalendar parameters: - name: user-id @@ -23276,6 +23620,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.events_DeleteCalendar parameters: - name: user-id @@ -23322,6 +23667,7 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_ListExtensions parameters: - name: user-id @@ -23421,6 +23767,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_CreateExtensions parameters: - name: user-id @@ -23473,6 +23820,7 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_GetExtensions parameters: - name: user-id @@ -23548,6 +23896,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_UpdateExtensions parameters: - name: user-id @@ -23602,6 +23951,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_DeleteExtensions parameters: - name: user-id @@ -23655,6 +24005,7 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_ListInstances parameters: - name: user-id @@ -23886,6 +24237,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_CreateInstances parameters: - name: user-id @@ -23938,6 +24290,7 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_GetInstances parameters: - name: user-id @@ -24114,6 +24467,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_UpdateInstances parameters: - name: user-id @@ -24168,6 +24522,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_DeleteInstances parameters: - name: user-id @@ -24221,6 +24576,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_ListMultiValueExtendedProperties parameters: - name: user-id @@ -24323,6 +24679,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -24375,6 +24732,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_GetMultiValueExtendedProperties parameters: - name: user-id @@ -24451,6 +24809,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -24505,6 +24864,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -24558,6 +24918,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_ListSingleValueExtendedProperties parameters: - name: user-id @@ -24660,6 +25021,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -24712,6 +25074,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_GetSingleValueExtendedProperties parameters: - name: user-id @@ -24788,6 +25151,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -24842,6 +25206,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -24895,6 +25260,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_ListMultiValueExtendedProperties parameters: - name: user-id @@ -24990,6 +25356,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -25035,6 +25402,7 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_GetMultiValueExtendedProperties parameters: - name: user-id @@ -25104,6 +25472,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -25151,6 +25520,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -25197,6 +25567,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_ListSingleValueExtendedProperties parameters: - name: user-id @@ -25292,6 +25663,7 @@ paths: tags: - users.calendarGroup summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -25337,6 +25709,7 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_GetSingleValueExtendedProperties parameters: - name: user-id @@ -25406,6 +25779,7 @@ paths: tags: - users.calendarGroup summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -25453,6 +25827,7 @@ paths: tags: - users.calendarGroup summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -25499,6 +25874,7 @@ paths: tags: - users.calendar summary: Get calendars from users + description: The user's calendars. Read-only. Nullable. operationId: users_ListCalendars parameters: - name: user-id @@ -25626,6 +26002,7 @@ paths: tags: - users.calendar summary: Create new navigation property to calendars for users + description: The user's calendars. Read-only. Nullable. operationId: users_CreateCalendars parameters: - name: user-id @@ -25657,6 +26034,7 @@ paths: tags: - users.calendar summary: Get calendars from users + description: The user's calendars. Read-only. Nullable. operationId: users_GetCalendars parameters: - name: user-id @@ -25760,6 +26138,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendars in users + description: The user's calendars. Read-only. Nullable. operationId: users_UpdateCalendars parameters: - name: user-id @@ -25793,6 +26172,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendars for users + description: The user's calendars. Read-only. Nullable. operationId: users_DeleteCalendars parameters: - name: user-id @@ -25825,6 +26205,7 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_ListCalendarPermissions parameters: - name: user-id @@ -25925,6 +26306,7 @@ paths: tags: - users.calendar summary: Create new navigation property to calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_CreateCalendarPermissions parameters: - name: user-id @@ -25963,6 +26345,7 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_GetCalendarPermissions parameters: - name: user-id @@ -26029,6 +26412,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendarPermissions in users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_UpdateCalendarPermissions parameters: - name: user-id @@ -26069,6 +26453,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_DeleteCalendarPermissions parameters: - name: user-id @@ -26108,6 +26493,7 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_ListCalendarView parameters: - name: user-id @@ -26337,6 +26723,7 @@ paths: tags: - users.calendar summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_CreateCalendarView parameters: - name: user-id @@ -26375,6 +26762,7 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_GetCalendarView parameters: - name: user-id @@ -26537,6 +26925,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_UpdateCalendarView parameters: - name: user-id @@ -26577,6 +26966,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_DeleteCalendarView parameters: - name: user-id @@ -26616,6 +27006,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_ListAttachments parameters: - name: user-id @@ -26723,6 +27114,7 @@ paths: tags: - users.calendar summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_CreateAttachments parameters: - name: user-id @@ -26768,6 +27160,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_GetAttachments parameters: - name: user-id @@ -26841,6 +27234,7 @@ paths: tags: - users.calendar summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_UpdateAttachments parameters: - name: user-id @@ -26888,6 +27282,7 @@ paths: tags: - users.calendar summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_DeleteAttachments parameters: - name: user-id @@ -26934,6 +27329,7 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.calendarView_GetCalendar parameters: - name: user-id @@ -27049,6 +27445,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.calendarView_UpdateCalendar parameters: - name: user-id @@ -27089,6 +27486,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.calendarView_DeleteCalendar parameters: - name: user-id @@ -27128,6 +27526,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_ListExtensions parameters: - name: user-id @@ -27220,6 +27619,7 @@ paths: tags: - users.calendar summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_CreateExtensions parameters: - name: user-id @@ -27265,6 +27665,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_GetExtensions parameters: - name: user-id @@ -27333,6 +27734,7 @@ paths: tags: - users.calendar summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_UpdateExtensions parameters: - name: user-id @@ -27380,6 +27782,7 @@ paths: tags: - users.calendar summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_DeleteExtensions parameters: - name: user-id @@ -27426,6 +27829,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_ListInstances parameters: - name: user-id @@ -27650,6 +28054,7 @@ paths: tags: - users.calendar summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_CreateInstances parameters: - name: user-id @@ -27695,6 +28100,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_GetInstances parameters: - name: user-id @@ -27858,6 +28264,7 @@ paths: tags: - users.calendar summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_UpdateInstances parameters: - name: user-id @@ -27905,6 +28312,7 @@ paths: tags: - users.calendar summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_DeleteInstances parameters: - name: user-id @@ -27951,6 +28359,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id @@ -28046,6 +28455,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -28091,6 +28501,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id @@ -28160,6 +28571,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -28207,6 +28619,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -28253,6 +28666,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id @@ -28348,6 +28762,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -28393,6 +28808,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id @@ -28462,6 +28878,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -28509,6 +28926,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -28555,6 +28973,7 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_ListEvents parameters: - name: user-id @@ -28772,6 +29191,7 @@ paths: tags: - users.calendar summary: Create new navigation property to events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_CreateEvents parameters: - name: user-id @@ -28810,6 +29230,7 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_GetEvents parameters: - name: user-id @@ -28960,6 +29381,7 @@ paths: tags: - users.calendar summary: Update the navigation property events in users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_UpdateEvents parameters: - name: user-id @@ -29000,6 +29422,7 @@ paths: tags: - users.calendar summary: Delete navigation property events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_DeleteEvents parameters: - name: user-id @@ -29039,6 +29462,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_ListAttachments parameters: - name: user-id @@ -29146,6 +29570,7 @@ paths: tags: - users.calendar summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_CreateAttachments parameters: - name: user-id @@ -29191,6 +29616,7 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_GetAttachments parameters: - name: user-id @@ -29264,6 +29690,7 @@ paths: tags: - users.calendar summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_UpdateAttachments parameters: - name: user-id @@ -29311,6 +29738,7 @@ paths: tags: - users.calendar summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_DeleteAttachments parameters: - name: user-id @@ -29357,6 +29785,7 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.events_GetCalendar parameters: - name: user-id @@ -29472,6 +29901,7 @@ paths: tags: - users.calendar summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.events_UpdateCalendar parameters: - name: user-id @@ -29512,6 +29942,7 @@ paths: tags: - users.calendar summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.events_DeleteCalendar parameters: - name: user-id @@ -29551,6 +29982,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_ListExtensions parameters: - name: user-id @@ -29643,6 +30075,7 @@ paths: tags: - users.calendar summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_CreateExtensions parameters: - name: user-id @@ -29688,6 +30121,7 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_GetExtensions parameters: - name: user-id @@ -29756,6 +30190,7 @@ paths: tags: - users.calendar summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_UpdateExtensions parameters: - name: user-id @@ -29803,6 +30238,7 @@ paths: tags: - users.calendar summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_DeleteExtensions parameters: - name: user-id @@ -29849,6 +30285,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_ListInstances parameters: - name: user-id @@ -30073,6 +30510,7 @@ paths: tags: - users.calendar summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_CreateInstances parameters: - name: user-id @@ -30118,6 +30556,7 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_GetInstances parameters: - name: user-id @@ -30281,6 +30720,7 @@ paths: tags: - users.calendar summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_UpdateInstances parameters: - name: user-id @@ -30328,6 +30768,7 @@ paths: tags: - users.calendar summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_DeleteInstances parameters: - name: user-id @@ -30374,6 +30815,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_ListMultiValueExtendedProperties parameters: - name: user-id @@ -30469,6 +30911,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -30514,6 +30957,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_GetMultiValueExtendedProperties parameters: - name: user-id @@ -30583,6 +31027,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -30630,6 +31075,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -30676,6 +31122,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_ListSingleValueExtendedProperties parameters: - name: user-id @@ -30771,6 +31218,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -30816,6 +31264,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_GetSingleValueExtendedProperties parameters: - name: user-id @@ -30885,6 +31334,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -30932,6 +31382,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -30978,6 +31429,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_ListMultiValueExtendedProperties parameters: - name: user-id @@ -31066,6 +31518,7 @@ paths: tags: - users.calendar summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -31104,6 +31557,7 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_GetMultiValueExtendedProperties parameters: - name: user-id @@ -31166,6 +31620,7 @@ paths: tags: - users.calendar summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -31206,6 +31661,7 @@ paths: tags: - users.calendar summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -31245,6 +31701,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_ListSingleValueExtendedProperties parameters: - name: user-id @@ -31333,6 +31790,7 @@ paths: tags: - users.calendar summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -31371,6 +31829,7 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_GetSingleValueExtendedProperties parameters: - name: user-id @@ -31433,6 +31892,7 @@ paths: tags: - users.calendar summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -31473,6 +31933,7 @@ paths: tags: - users.calendar summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -31512,6 +31973,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_ListCalendarView parameters: - name: user-id @@ -31734,6 +32196,7 @@ paths: tags: - users.event summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_CreateCalendarView parameters: - name: user-id @@ -31765,6 +32228,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_GetCalendarView parameters: - name: user-id @@ -31914,6 +32378,7 @@ paths: tags: - users.event summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_UpdateCalendarView parameters: - name: user-id @@ -31947,6 +32412,7 @@ paths: tags: - users.event summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_DeleteCalendarView parameters: - name: user-id @@ -31979,6 +32445,7 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_ListAttachments parameters: - name: user-id @@ -32079,6 +32546,7 @@ paths: tags: - users.event summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_CreateAttachments parameters: - name: user-id @@ -32117,6 +32585,7 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_GetAttachments parameters: - name: user-id @@ -32183,6 +32652,7 @@ paths: tags: - users.event summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_UpdateAttachments parameters: - name: user-id @@ -32223,6 +32693,7 @@ paths: tags: - users.event summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_DeleteAttachments parameters: - name: user-id @@ -32262,6 +32733,7 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarView_GetCalendar parameters: - name: user-id @@ -32365,6 +32837,7 @@ paths: tags: - users.event summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarView_UpdateCalendar parameters: - name: user-id @@ -32398,6 +32871,7 @@ paths: tags: - users.event summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarView_DeleteCalendar parameters: - name: user-id @@ -32430,6 +32904,7 @@ paths: tags: - users.event summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarView.calendar_ListCalendarPermissions parameters: - name: user-id @@ -32530,6 +33005,7 @@ paths: tags: - users.event summary: Create new navigation property to calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarView.calendar_CreateCalendarPermissions parameters: - name: user-id @@ -32568,6 +33044,7 @@ paths: tags: - users.event summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarView.calendar_GetCalendarPermissions parameters: - name: user-id @@ -32634,6 +33111,7 @@ paths: tags: - users.event summary: Update the navigation property calendarPermissions in users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarView.calendar_UpdateCalendarPermissions parameters: - name: user-id @@ -32674,6 +33152,7 @@ paths: tags: - users.event summary: Delete navigation property calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarView.calendar_DeleteCalendarPermissions parameters: - name: user-id @@ -32713,6 +33192,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_ListCalendarView parameters: - name: user-id @@ -32930,6 +33410,7 @@ paths: tags: - users.event summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_CreateCalendarView parameters: - name: user-id @@ -32968,6 +33449,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_GetCalendarView parameters: - name: user-id @@ -33118,6 +33600,7 @@ paths: tags: - users.event summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_UpdateCalendarView parameters: - name: user-id @@ -33158,6 +33641,7 @@ paths: tags: - users.event summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_DeleteCalendarView parameters: - name: user-id @@ -33197,6 +33681,7 @@ paths: tags: - users.event summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_ListEvents parameters: - name: user-id @@ -33414,6 +33899,7 @@ paths: tags: - users.event summary: Create new navigation property to events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_CreateEvents parameters: - name: user-id @@ -33452,6 +33938,7 @@ paths: tags: - users.event summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_GetEvents parameters: - name: user-id @@ -33602,6 +34089,7 @@ paths: tags: - users.event summary: Update the navigation property events in users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_UpdateEvents parameters: - name: user-id @@ -33642,6 +34130,7 @@ paths: tags: - users.event summary: Delete navigation property events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarView.calendar_DeleteEvents parameters: - name: user-id @@ -33681,6 +34170,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_ListMultiValueExtendedProperties parameters: - name: user-id @@ -33769,6 +34259,7 @@ paths: tags: - users.event summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -33807,6 +34298,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_GetMultiValueExtendedProperties parameters: - name: user-id @@ -33869,6 +34361,7 @@ paths: tags: - users.event summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -33909,6 +34402,7 @@ paths: tags: - users.event summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -33948,6 +34442,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_ListSingleValueExtendedProperties parameters: - name: user-id @@ -34036,6 +34531,7 @@ paths: tags: - users.event summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -34074,6 +34570,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_GetSingleValueExtendedProperties parameters: - name: user-id @@ -34136,6 +34633,7 @@ paths: tags: - users.event summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -34176,6 +34674,7 @@ paths: tags: - users.event summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarView.calendar_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -34215,6 +34714,7 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_ListExtensions parameters: - name: user-id @@ -34300,6 +34800,7 @@ paths: tags: - users.event summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_CreateExtensions parameters: - name: user-id @@ -34338,6 +34839,7 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_GetExtensions parameters: - name: user-id @@ -34399,6 +34901,7 @@ paths: tags: - users.event summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_UpdateExtensions parameters: - name: user-id @@ -34439,6 +34942,7 @@ paths: tags: - users.event summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_DeleteExtensions parameters: - name: user-id @@ -34478,6 +34982,7 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_ListInstances parameters: - name: user-id @@ -34695,6 +35200,7 @@ paths: tags: - users.event summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_CreateInstances parameters: - name: user-id @@ -34733,6 +35239,7 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_GetInstances parameters: - name: user-id @@ -34883,6 +35390,7 @@ paths: tags: - users.event summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_UpdateInstances parameters: - name: user-id @@ -34923,6 +35431,7 @@ paths: tags: - users.event summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_DeleteInstances parameters: - name: user-id @@ -34962,6 +35471,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id @@ -35050,6 +35560,7 @@ paths: tags: - users.event summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -35088,6 +35599,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id @@ -35150,6 +35662,7 @@ paths: tags: - users.event summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -35190,6 +35703,7 @@ paths: tags: - users.event summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -35229,6 +35743,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id @@ -35317,6 +35832,7 @@ paths: tags: - users.event summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -35355,6 +35871,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id @@ -35417,6 +35934,7 @@ paths: tags: - users.event summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -35457,6 +35975,7 @@ paths: tags: - users.event summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -35496,6 +36015,7 @@ paths: tags: - users.event summary: Get events from users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_ListEvents parameters: - name: user-id @@ -35706,6 +36226,7 @@ paths: tags: - users.event summary: Create new navigation property to events for users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_CreateEvents parameters: - name: user-id @@ -35737,6 +36258,7 @@ paths: tags: - users.event summary: Get events from users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_GetEvents parameters: - name: user-id @@ -35874,6 +36396,7 @@ paths: tags: - users.event summary: Update the navigation property events in users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_UpdateEvents parameters: - name: user-id @@ -35907,6 +36430,7 @@ paths: tags: - users.event summary: Delete navigation property events for users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_DeleteEvents parameters: - name: user-id @@ -35939,6 +36463,7 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_ListAttachments parameters: - name: user-id @@ -36039,6 +36564,7 @@ paths: tags: - users.event summary: Create new navigation property to attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_CreateAttachments parameters: - name: user-id @@ -36077,6 +36603,7 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_GetAttachments parameters: - name: user-id @@ -36143,6 +36670,7 @@ paths: tags: - users.event summary: Update the navigation property attachments in users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_UpdateAttachments parameters: - name: user-id @@ -36183,6 +36711,7 @@ paths: tags: - users.event summary: Delete navigation property attachments for users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_DeleteAttachments parameters: - name: user-id @@ -36222,6 +36751,7 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.events_GetCalendar parameters: - name: user-id @@ -36325,6 +36855,7 @@ paths: tags: - users.event summary: Update the navigation property calendar in users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.events_UpdateCalendar parameters: - name: user-id @@ -36358,6 +36889,7 @@ paths: tags: - users.event summary: Delete navigation property calendar for users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.events_DeleteCalendar parameters: - name: user-id @@ -36390,6 +36922,7 @@ paths: tags: - users.event summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.events.calendar_ListCalendarPermissions parameters: - name: user-id @@ -36490,6 +37023,7 @@ paths: tags: - users.event summary: Create new navigation property to calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.events.calendar_CreateCalendarPermissions parameters: - name: user-id @@ -36528,6 +37062,7 @@ paths: tags: - users.event summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.events.calendar_GetCalendarPermissions parameters: - name: user-id @@ -36594,6 +37129,7 @@ paths: tags: - users.event summary: Update the navigation property calendarPermissions in users + description: The permissions of the users with whom the calendar is shared. operationId: users.events.calendar_UpdateCalendarPermissions parameters: - name: user-id @@ -36634,6 +37170,7 @@ paths: tags: - users.event summary: Delete navigation property calendarPermissions for users + description: The permissions of the users with whom the calendar is shared. operationId: users.events.calendar_DeleteCalendarPermissions parameters: - name: user-id @@ -36673,6 +37210,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.events.calendar_ListCalendarView parameters: - name: user-id @@ -36890,6 +37428,7 @@ paths: tags: - users.event summary: Create new navigation property to calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.events.calendar_CreateCalendarView parameters: - name: user-id @@ -36928,6 +37467,7 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.events.calendar_GetCalendarView parameters: - name: user-id @@ -37078,6 +37618,7 @@ paths: tags: - users.event summary: Update the navigation property calendarView in users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.events.calendar_UpdateCalendarView parameters: - name: user-id @@ -37118,6 +37659,7 @@ paths: tags: - users.event summary: Delete navigation property calendarView for users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.events.calendar_DeleteCalendarView parameters: - name: user-id @@ -37157,6 +37699,7 @@ paths: tags: - users.event summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.events.calendar_ListEvents parameters: - name: user-id @@ -37374,6 +37917,7 @@ paths: tags: - users.event summary: Create new navigation property to events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.events.calendar_CreateEvents parameters: - name: user-id @@ -37412,6 +37956,7 @@ paths: tags: - users.event summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.events.calendar_GetEvents parameters: - name: user-id @@ -37562,6 +38107,7 @@ paths: tags: - users.event summary: Update the navigation property events in users + description: The events in the calendar. Navigation property. Read-only. operationId: users.events.calendar_UpdateEvents parameters: - name: user-id @@ -37602,6 +38148,7 @@ paths: tags: - users.event summary: Delete navigation property events for users + description: The events in the calendar. Navigation property. Read-only. operationId: users.events.calendar_DeleteEvents parameters: - name: user-id @@ -37641,6 +38188,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_ListMultiValueExtendedProperties parameters: - name: user-id @@ -37729,6 +38277,7 @@ paths: tags: - users.event summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -37767,6 +38316,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_GetMultiValueExtendedProperties parameters: - name: user-id @@ -37829,6 +38379,7 @@ paths: tags: - users.event summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -37869,6 +38420,7 @@ paths: tags: - users.event summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -37908,6 +38460,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_ListSingleValueExtendedProperties parameters: - name: user-id @@ -37996,6 +38549,7 @@ paths: tags: - users.event summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -38034,6 +38588,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_GetSingleValueExtendedProperties parameters: - name: user-id @@ -38096,6 +38651,7 @@ paths: tags: - users.event summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -38136,6 +38692,7 @@ paths: tags: - users.event summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.events.calendar_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -38175,6 +38732,7 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_ListExtensions parameters: - name: user-id @@ -38260,6 +38818,7 @@ paths: tags: - users.event summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_CreateExtensions parameters: - name: user-id @@ -38298,6 +38857,7 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_GetExtensions parameters: - name: user-id @@ -38359,6 +38919,7 @@ paths: tags: - users.event summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_UpdateExtensions parameters: - name: user-id @@ -38399,6 +38960,7 @@ paths: tags: - users.event summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_DeleteExtensions parameters: - name: user-id @@ -38438,6 +39000,7 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_ListInstances parameters: - name: user-id @@ -38655,6 +39218,7 @@ paths: tags: - users.event summary: Create new navigation property to instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_CreateInstances parameters: - name: user-id @@ -38693,6 +39257,7 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_GetInstances parameters: - name: user-id @@ -38843,6 +39408,7 @@ paths: tags: - users.event summary: Update the navigation property instances in users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_UpdateInstances parameters: - name: user-id @@ -38883,6 +39449,7 @@ paths: tags: - users.event summary: Delete navigation property instances for users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_DeleteInstances parameters: - name: user-id @@ -38922,6 +39489,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_ListMultiValueExtendedProperties parameters: - name: user-id @@ -39010,6 +39578,7 @@ paths: tags: - users.event summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -39048,6 +39617,7 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_GetMultiValueExtendedProperties parameters: - name: user-id @@ -39110,6 +39680,7 @@ paths: tags: - users.event summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -39150,6 +39721,7 @@ paths: tags: - users.event summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -39189,6 +39761,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_ListSingleValueExtendedProperties parameters: - name: user-id @@ -39277,6 +39850,7 @@ paths: tags: - users.event summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -39315,6 +39889,7 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_GetSingleValueExtendedProperties parameters: - name: user-id @@ -39377,6 +39952,7 @@ paths: tags: - users.event summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -39417,6 +39993,7 @@ paths: tags: - users.event summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_DeleteSingleValueExtendedProperties parameters: - name: user-id diff --git a/openApiDocs/v1.0/CloudCommunications.yml b/openApiDocs/v1.0/CloudCommunications.yml index 3fbeea0a0ee..392e662beb7 100644 --- a/openApiDocs/v1.0/CloudCommunications.yml +++ b/openApiDocs/v1.0/CloudCommunications.yml @@ -324,6 +324,7 @@ paths: tags: - communications.callRecord summary: Get sessions from communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_ListSessions parameters: - name: callRecord-id @@ -422,6 +423,7 @@ paths: tags: - communications.callRecord summary: Create new navigation property to sessions for communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_CreateSessions parameters: - name: callRecord-id @@ -453,6 +455,7 @@ paths: tags: - communications.callRecord summary: Get sessions from communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_GetSessions parameters: - name: callRecord-id @@ -521,6 +524,7 @@ paths: tags: - communications.callRecord summary: Update the navigation property sessions in communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_UpdateSessions parameters: - name: callRecord-id @@ -554,6 +558,7 @@ paths: tags: - communications.callRecord summary: Delete navigation property sessions for communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_DeleteSessions parameters: - name: callRecord-id @@ -586,6 +591,7 @@ paths: tags: - communications.callRecord summary: Get segments from communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_ListSegments parameters: - name: callRecord-id @@ -689,6 +695,7 @@ paths: tags: - communications.callRecord summary: Create new navigation property to segments for communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_CreateSegments parameters: - name: callRecord-id @@ -727,6 +734,7 @@ paths: tags: - communications.callRecord summary: Get segments from communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_GetSegments parameters: - name: callRecord-id @@ -794,6 +802,7 @@ paths: tags: - communications.callRecord summary: Update the navigation property segments in communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_UpdateSegments parameters: - name: callRecord-id @@ -834,6 +843,7 @@ paths: tags: - communications.callRecord summary: Delete navigation property segments for communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_DeleteSegments parameters: - name: callRecord-id @@ -1662,6 +1672,7 @@ paths: tags: - communications.call summary: Get operations from communications + description: Read-only. Nullable. operationId: communications.calls_ListOperations parameters: - name: call-id @@ -1749,6 +1760,7 @@ paths: tags: - communications.call summary: Create new navigation property to operations for communications + description: Read-only. Nullable. operationId: communications.calls_CreateOperations parameters: - name: call-id @@ -1780,6 +1792,7 @@ paths: tags: - communications.call summary: Get operations from communications + description: Read-only. Nullable. operationId: communications.calls_GetOperations parameters: - name: call-id @@ -1837,6 +1850,7 @@ paths: tags: - communications.call summary: Update the navigation property operations in communications + description: Read-only. Nullable. operationId: communications.calls_UpdateOperations parameters: - name: call-id @@ -1870,6 +1884,7 @@ paths: tags: - communications.call summary: Delete navigation property operations for communications + description: Read-only. Nullable. operationId: communications.calls_DeleteOperations parameters: - name: call-id @@ -1902,6 +1917,7 @@ paths: tags: - communications.call summary: Get participants from communications + description: Read-only. Nullable. operationId: communications.calls_ListParticipants parameters: - name: call-id @@ -1995,6 +2011,7 @@ paths: tags: - communications.call summary: Create new navigation property to participants for communications + description: Read-only. Nullable. operationId: communications.calls_CreateParticipants parameters: - name: call-id @@ -2026,6 +2043,7 @@ paths: tags: - communications.call summary: Get participants from communications + description: Read-only. Nullable. operationId: communications.calls_GetParticipants parameters: - name: call-id @@ -2085,6 +2103,7 @@ paths: tags: - communications.call summary: Update the navigation property participants in communications + description: Read-only. Nullable. operationId: communications.calls_UpdateParticipants parameters: - name: call-id @@ -2118,6 +2137,7 @@ paths: tags: - communications.call summary: Delete navigation property participants for communications + description: Read-only. Nullable. operationId: communications.calls_DeleteParticipants parameters: - name: call-id @@ -3685,6 +3705,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: diff --git a/openApiDocs/v1.0/CrossDeviceExperiences.yml b/openApiDocs/v1.0/CrossDeviceExperiences.yml index 09d73c1c716..e55e9f2a072 100644 --- a/openApiDocs/v1.0/CrossDeviceExperiences.yml +++ b/openApiDocs/v1.0/CrossDeviceExperiences.yml @@ -11,6 +11,7 @@ paths: tags: - users.userActivity summary: Get activities from users + description: The user's activities across devices. Read-only. Nullable. operationId: users_ListActivities parameters: - name: user-id @@ -130,6 +131,7 @@ paths: tags: - users.userActivity summary: Create new navigation property to activities for users + description: The user's activities across devices. Read-only. Nullable. operationId: users_CreateActivities parameters: - name: user-id @@ -161,6 +163,7 @@ paths: tags: - users.userActivity summary: Get activities from users + description: The user's activities across devices. Read-only. Nullable. operationId: users_GetActivities parameters: - name: user-id @@ -236,6 +239,7 @@ paths: tags: - users.userActivity summary: Update the navigation property activities in users + description: The user's activities across devices. Read-only. Nullable. operationId: users_UpdateActivities parameters: - name: user-id @@ -269,6 +273,7 @@ paths: tags: - users.userActivity summary: Delete navigation property activities for users + description: The user's activities across devices. Read-only. Nullable. operationId: users_DeleteActivities parameters: - name: user-id @@ -301,6 +306,7 @@ paths: tags: - users.userActivity summary: Get historyItems from users + description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. operationId: users.activities_ListHistoryItems parameters: - name: user-id @@ -412,6 +418,7 @@ paths: tags: - users.userActivity summary: Create new navigation property to historyItems for users + description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. operationId: users.activities_CreateHistoryItems parameters: - name: user-id @@ -450,6 +457,7 @@ paths: tags: - users.userActivity summary: Get historyItems from users + description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. operationId: users.activities_GetHistoryItems parameters: - name: user-id @@ -528,6 +536,7 @@ paths: tags: - users.userActivity summary: Update the navigation property historyItems in users + description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. operationId: users.activities_UpdateHistoryItems parameters: - name: user-id @@ -568,6 +577,7 @@ paths: tags: - users.userActivity summary: Delete navigation property historyItems for users + description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. operationId: users.activities_DeleteHistoryItems parameters: - name: user-id @@ -607,6 +617,7 @@ paths: tags: - users.userActivity summary: Get activity from users + description: Optional. NavigationProperty/Containment; navigation property to the associated activity. operationId: users.activities.historyItems_GetActivity parameters: - name: user-id @@ -691,6 +702,7 @@ paths: tags: - users.userActivity summary: Get ref of activity from users + description: Optional. NavigationProperty/Containment; navigation property to the associated activity. operationId: users.activities.historyItems_GetRefActivity parameters: - name: user-id @@ -735,6 +747,7 @@ paths: tags: - users.userActivity summary: Update the ref of navigation property activity in users + description: Optional. NavigationProperty/Containment; navigation property to the associated activity. operationId: users.activities.historyItems_SetRefActivity parameters: - name: user-id @@ -777,6 +790,7 @@ paths: tags: - users.userActivity summary: Delete ref of navigation property activity for users + description: Optional. NavigationProperty/Containment; navigation property to the associated activity. operationId: users.activities.historyItems_DeleteRefActivity parameters: - name: user-id diff --git a/openApiDocs/v1.0/DeviceManagement.Actions.yml b/openApiDocs/v1.0/DeviceManagement.Actions.yml index cbc6466fb49..6a2f6956eac 100644 --- a/openApiDocs/v1.0/DeviceManagement.Actions.yml +++ b/openApiDocs/v1.0/DeviceManagement.Actions.yml @@ -221,11 +221,44 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + /deviceManagement/importedWindowsAutopilotDeviceIdentities/microsoft.graph.import: + post: + tags: + - deviceManagement.Actions + summary: Invoke action import + operationId: deviceManagement.importedWindowsAutopilotDeviceIdentities_import + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + importedWindowsAutopilotDeviceIdentities: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentity' + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentity' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock': post: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.managedDevices_bypassActivationLock parameters: - name: managedDevice-id @@ -246,6 +279,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.managedDevices_cleanWindowsDevice parameters: - name: managedDevice-id @@ -279,6 +313,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.managedDevices_deleteUserFromSharedAppleDevice parameters: - name: managedDevice-id @@ -312,6 +347,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.managedDevices_disableLostMode parameters: - name: managedDevice-id @@ -332,6 +368,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.managedDevices_locateDevice parameters: - name: managedDevice-id @@ -352,6 +389,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.managedDevices_logoutSharedAppleDeviceActiveUser parameters: - name: managedDevice-id @@ -372,6 +410,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.managedDevices_rebootNow parameters: - name: managedDevice-id @@ -392,6 +431,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.managedDevices_recoverPasscode parameters: - name: managedDevice-id @@ -412,6 +452,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.managedDevices_remoteLock parameters: - name: managedDevice-id @@ -432,6 +473,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action requestRemoteAssistance + description: Request remote assistance operationId: deviceManagement.managedDevices_requestRemoteAssistance parameters: - name: managedDevice-id @@ -452,6 +494,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action resetPasscode + description: Reset passcode operationId: deviceManagement.managedDevices_resetPasscode parameters: - name: managedDevice-id @@ -472,6 +515,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action retire + description: Retire a device operationId: deviceManagement.managedDevices_retire parameters: - name: managedDevice-id @@ -492,6 +536,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.managedDevices_shutDown parameters: - name: managedDevice-id @@ -617,6 +662,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.managedDevices_wipe parameters: - name: managedDevice-id @@ -644,6 +690,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true additionalProperties: type: object required: true @@ -658,6 +708,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action sendTestMessage + description: Sends test message using the specified notificationMessageTemplate in the default locale operationId: deviceManagement.notificationMessageTemplates_sendTestMessage parameters: - name: notificationMessageTemplate-id @@ -678,6 +729,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action beginOnboarding + description: A request to start onboarding. Must be coupled with the appropriate TeamViewer account information operationId: deviceManagement.remoteAssistancePartners_beginOnboarding parameters: - name: remoteAssistancePartner-id @@ -698,6 +750,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disconnect + description: A request to remove the active TeamViewer connector operationId: deviceManagement.remoteAssistancePartners_disconnect parameters: - name: remoteAssistancePartner-id @@ -713,6 +766,107 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.assignUserToDevice': + post: + tags: + - deviceManagement.Actions + summary: Invoke action assignUserToDevice + description: Assigns user to Autopilot devices. + operationId: deviceManagement.windowsAutopilotDeviceIdentities_assignUserToDevice + parameters: + - name: windowsAutopilotDeviceIdentity-id + in: path + description: 'key: id of windowsAutopilotDeviceIdentity' + required: true + schema: + type: string + x-ms-docs-key-type: windowsAutopilotDeviceIdentity + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + userPrincipalName: + type: string + nullable: true + addressableUserName: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.unassignUserFromDevice': + post: + tags: + - deviceManagement.Actions + summary: Invoke action unassignUserFromDevice + description: Unassigns the user from an Autopilot device. + operationId: deviceManagement.windowsAutopilotDeviceIdentities_unassignUserFromDevice + parameters: + - name: windowsAutopilotDeviceIdentity-id + in: path + description: 'key: id of windowsAutopilotDeviceIdentity' + required: true + schema: + type: string + x-ms-docs-key-type: windowsAutopilotDeviceIdentity + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.updateDeviceProperties': + post: + tags: + - deviceManagement.Actions + summary: Invoke action updateDeviceProperties + description: Updates properties on Autopilot devices. + operationId: deviceManagement.windowsAutopilotDeviceIdentities_updateDeviceProperties + parameters: + - name: windowsAutopilotDeviceIdentity-id + in: path + description: 'key: id of windowsAutopilotDeviceIdentity' + required: true + schema: + type: string + x-ms-docs-key-type: windowsAutopilotDeviceIdentity + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + userPrincipalName: + type: string + nullable: true + addressableUserName: + type: string + nullable: true + groupTag: + type: string + nullable: true + displayName: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action components: schemas: microsoft.graph.deviceCompliancePolicyAssignment: @@ -772,6 +926,42 @@ components: - fullSync - deltaSync type: string + microsoft.graph.importedWindowsAutopilotDeviceIdentity: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: importedWindowsAutopilotDeviceIdentity + type: object + properties: + assignedUserPrincipalName: + type: string + description: UPN of the user the device will be assigned + nullable: true + groupTag: + type: string + description: Group Tag of the Windows autopilot device. + nullable: true + hardwareIdentifier: + type: string + description: Hardware Blob of the Windows autopilot device. + format: base64url + nullable: true + importId: + type: string + description: The Import Id of the Windows autopilot device. + nullable: true + productKey: + type: string + description: Product Key of the Windows autopilot device. + nullable: true + serialNumber: + type: string + description: Serial number of the Windows autopilot device. + nullable: true + state: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentityState' + additionalProperties: + type: object + description: Imported windows autopilot devices. microsoft.graph.updateWindowsDeviceAccountActionParameter: title: updateWindowsDeviceAccountActionParameter type: object @@ -842,6 +1032,28 @@ components: additionalProperties: type: object description: Scheduled Action Configuration + microsoft.graph.importedWindowsAutopilotDeviceIdentityState: + title: importedWindowsAutopilotDeviceIdentityState + type: object + properties: + deviceErrorCode: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Device error code reported by Device Directory Service(DDS). + format: int32 + deviceErrorName: + type: string + description: Device error name reported by Device Directory Service(DDS). + nullable: true + deviceImportStatus: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentityImportStatus' + deviceRegistrationId: + type: string + description: Device Registration ID for successfully added device reported by Device Directory Service(DDS). + nullable: true + additionalProperties: + type: object microsoft.graph.windowsDeviceAccount: title: windowsDeviceAccount type: object @@ -872,6 +1084,15 @@ components: - removeResourceAccessProfiles - pushNotification type: string + microsoft.graph.importedWindowsAutopilotDeviceIdentityImportStatus: + title: importedWindowsAutopilotDeviceIdentityImportStatus + enum: + - unknown + - pending + - partial + - complete + - error + type: string odata.error.main: required: - code diff --git a/openApiDocs/v1.0/DeviceManagement.Administration.yml b/openApiDocs/v1.0/DeviceManagement.Administration.yml index 5d287934c85..f4bd3605185 100644 --- a/openApiDocs/v1.0/DeviceManagement.Administration.yml +++ b/openApiDocs/v1.0/DeviceManagement.Administration.yml @@ -11,6 +11,7 @@ paths: tags: - deviceManagement.applePushNotificationCertificate summary: Get applePushNotificationCertificate from deviceManagement + description: Apple push notification certificate. operationId: deviceManagement_GetApplePushNotificationCertificate parameters: - name: $select @@ -26,6 +27,7 @@ paths: - id - appleIdentifier - certificate + - certificateSerialNumber - expirationDateTime - lastModifiedDateTime - topicIdentifier @@ -56,6 +58,7 @@ paths: tags: - deviceManagement.applePushNotificationCertificate summary: Update the navigation property applePushNotificationCertificate in deviceManagement + description: Apple push notification certificate. operationId: deviceManagement_UpdateApplePushNotificationCertificate requestBody: description: New navigation property values @@ -74,6 +77,7 @@ paths: tags: - deviceManagement.applePushNotificationCertificate summary: Delete navigation property applePushNotificationCertificate for deviceManagement + description: Apple push notification certificate. operationId: deviceManagement_DeleteApplePushNotificationCertificate parameters: - name: If-Match @@ -92,6 +96,7 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Get complianceManagementPartners from deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_ListComplianceManagementPartners parameters: - $ref: '#/components/parameters/top' @@ -190,6 +195,7 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Create new navigation property to complianceManagementPartners for deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_CreateComplianceManagementPartners requestBody: description: New navigation property @@ -213,6 +219,7 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Get complianceManagementPartners from deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_GetComplianceManagementPartners parameters: - name: complianceManagementPartner-id @@ -269,6 +276,7 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Update the navigation property complianceManagementPartners in deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_UpdateComplianceManagementPartners parameters: - name: complianceManagementPartner-id @@ -295,6 +303,7 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Delete navigation property complianceManagementPartners for deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_DeleteComplianceManagementPartners parameters: - name: complianceManagementPartner-id @@ -320,6 +329,7 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Get deviceManagementPartners from deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_ListDeviceManagementPartners parameters: - $ref: '#/components/parameters/top' @@ -415,6 +425,7 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Create new navigation property to deviceManagementPartners for deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_CreateDeviceManagementPartners requestBody: description: New navigation property @@ -438,6 +449,7 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Get deviceManagementPartners from deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_GetDeviceManagementPartners parameters: - name: deviceManagementPartner-id @@ -493,6 +505,7 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Update the navigation property deviceManagementPartners in deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_UpdateDeviceManagementPartners parameters: - name: deviceManagementPartner-id @@ -519,6 +532,7 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Delete navigation property deviceManagementPartners for deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_DeleteDeviceManagementPartners parameters: - name: deviceManagementPartner-id @@ -544,6 +558,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Get exchangeConnectors from deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_ListExchangeConnectors parameters: - $ref: '#/components/parameters/top' @@ -642,6 +657,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Create new navigation property to exchangeConnectors for deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_CreateExchangeConnectors requestBody: description: New navigation property @@ -665,6 +681,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Get exchangeConnectors from deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_GetExchangeConnectors parameters: - name: deviceManagementExchangeConnector-id @@ -721,6 +738,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Update the navigation property exchangeConnectors in deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_UpdateExchangeConnectors parameters: - name: deviceManagementExchangeConnector-id @@ -747,6 +765,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Delete navigation property exchangeConnectors for deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_DeleteExchangeConnectors parameters: - name: deviceManagementExchangeConnector-id @@ -772,6 +791,7 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Get iosUpdateStatuses from deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_ListIosUpdateStatuses parameters: - $ref: '#/components/parameters/top' @@ -876,6 +896,7 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Create new navigation property to iosUpdateStatuses for deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_CreateIosUpdateStatuses requestBody: description: New navigation property @@ -899,6 +920,7 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Get iosUpdateStatuses from deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_GetIosUpdateStatuses parameters: - name: iosUpdateDeviceStatus-id @@ -957,6 +979,7 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Update the navigation property iosUpdateStatuses in deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_UpdateIosUpdateStatuses parameters: - name: iosUpdateDeviceStatus-id @@ -983,6 +1006,7 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Delete navigation property iosUpdateStatuses for deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_DeleteIosUpdateStatuses parameters: - name: iosUpdateDeviceStatus-id @@ -1008,6 +1032,7 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Get mobileThreatDefenseConnectors from deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_ListMobileThreatDefenseConnectors parameters: - $ref: '#/components/parameters/top' @@ -1103,6 +1128,7 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Create new navigation property to mobileThreatDefenseConnectors for deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_CreateMobileThreatDefenseConnectors requestBody: description: New navigation property @@ -1126,6 +1152,7 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Get mobileThreatDefenseConnectors from deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_GetMobileThreatDefenseConnectors parameters: - name: mobileThreatDefenseConnector-id @@ -1181,6 +1208,7 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Update the navigation property mobileThreatDefenseConnectors in deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_UpdateMobileThreatDefenseConnectors parameters: - name: mobileThreatDefenseConnector-id @@ -1207,6 +1235,7 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Delete navigation property mobileThreatDefenseConnectors for deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_DeleteMobileThreatDefenseConnectors parameters: - name: mobileThreatDefenseConnector-id @@ -1232,6 +1261,7 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Get remoteAssistancePartners from deviceManagement + description: The remote assist partners. operationId: deviceManagement_ListRemoteAssistancePartners parameters: - $ref: '#/components/parameters/top' @@ -1315,6 +1345,7 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Create new navigation property to remoteAssistancePartners for deviceManagement + description: The remote assist partners. operationId: deviceManagement_CreateRemoteAssistancePartners requestBody: description: New navigation property @@ -1338,6 +1369,7 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Get remoteAssistancePartners from deviceManagement + description: The remote assist partners. operationId: deviceManagement_GetRemoteAssistancePartners parameters: - name: remoteAssistancePartner-id @@ -1389,6 +1421,7 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Update the navigation property remoteAssistancePartners in deviceManagement + description: The remote assist partners. operationId: deviceManagement_UpdateRemoteAssistancePartners parameters: - name: remoteAssistancePartner-id @@ -1415,6 +1448,7 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Delete navigation property remoteAssistancePartners for deviceManagement + description: The remote assist partners. operationId: deviceManagement_DeleteRemoteAssistancePartners parameters: - name: remoteAssistancePartner-id @@ -1440,6 +1474,7 @@ paths: tags: - deviceManagement.resourceOperation summary: Get resourceOperations from deviceManagement + description: The Resource Operations. operationId: deviceManagement_ListResourceOperations parameters: - $ref: '#/components/parameters/top' @@ -1520,6 +1555,7 @@ paths: tags: - deviceManagement.resourceOperation summary: Create new navigation property to resourceOperations for deviceManagement + description: The Resource Operations. operationId: deviceManagement_CreateResourceOperations requestBody: description: New navigation property @@ -1543,6 +1579,7 @@ paths: tags: - deviceManagement.resourceOperation summary: Get resourceOperations from deviceManagement + description: The Resource Operations. operationId: deviceManagement_GetResourceOperations parameters: - name: resourceOperation-id @@ -1593,6 +1630,7 @@ paths: tags: - deviceManagement.resourceOperation summary: Update the navigation property resourceOperations in deviceManagement + description: The Resource Operations. operationId: deviceManagement_UpdateResourceOperations parameters: - name: resourceOperation-id @@ -1619,6 +1657,7 @@ paths: tags: - deviceManagement.resourceOperation summary: Delete navigation property resourceOperations for deviceManagement + description: The Resource Operations. operationId: deviceManagement_DeleteResourceOperations parameters: - name: resourceOperation-id @@ -1644,6 +1683,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Get roleAssignments from deviceManagement + description: The Role Assignments. operationId: deviceManagement_ListRoleAssignments parameters: - $ref: '#/components/parameters/top' @@ -1729,6 +1769,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Create new navigation property to roleAssignments for deviceManagement + description: The Role Assignments. operationId: deviceManagement_CreateRoleAssignments requestBody: description: New navigation property @@ -1752,6 +1793,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Get roleAssignments from deviceManagement + description: The Role Assignments. operationId: deviceManagement_GetRoleAssignments parameters: - name: deviceAndAppManagementRoleAssignment-id @@ -1810,6 +1852,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Update the navigation property roleAssignments in deviceManagement + description: The Role Assignments. operationId: deviceManagement_UpdateRoleAssignments parameters: - name: deviceAndAppManagementRoleAssignment-id @@ -1836,6 +1879,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Delete navigation property roleAssignments for deviceManagement + description: The Role Assignments. operationId: deviceManagement_DeleteRoleAssignments parameters: - name: deviceAndAppManagementRoleAssignment-id @@ -1861,6 +1905,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleDefinitions from deviceManagement + description: The Role Definitions. operationId: deviceManagement_ListRoleDefinitions parameters: - $ref: '#/components/parameters/top' @@ -1946,6 +1991,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Create new navigation property to roleDefinitions for deviceManagement + description: The Role Definitions. operationId: deviceManagement_CreateRoleDefinitions requestBody: description: New navigation property @@ -1969,6 +2015,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleDefinitions from deviceManagement + description: The Role Definitions. operationId: deviceManagement_GetRoleDefinitions parameters: - name: roleDefinition-id @@ -2027,6 +2074,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Update the navigation property roleDefinitions in deviceManagement + description: The Role Definitions. operationId: deviceManagement_UpdateRoleDefinitions parameters: - name: roleDefinition-id @@ -2053,6 +2101,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Delete navigation property roleDefinitions for deviceManagement + description: The Role Definitions. operationId: deviceManagement_DeleteRoleDefinitions parameters: - name: roleDefinition-id @@ -2078,6 +2127,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleAssignments from deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_ListRoleAssignments parameters: - name: roleDefinition-id @@ -2167,6 +2217,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Create new navigation property to roleAssignments for deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_CreateRoleAssignments parameters: - name: roleDefinition-id @@ -2198,6 +2249,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleAssignments from deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_GetRoleAssignments parameters: - name: roleDefinition-id @@ -2263,6 +2315,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Update the navigation property roleAssignments in deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_UpdateRoleAssignments parameters: - name: roleDefinition-id @@ -2296,6 +2349,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Delete navigation property roleAssignments for deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_DeleteRoleAssignments parameters: - name: roleDefinition-id @@ -2328,6 +2382,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleDefinition from deviceManagement + description: Role definition this assignment is part of. operationId: deviceManagement.roleDefinitions.roleAssignments_GetRoleDefinition parameters: - name: roleDefinition-id @@ -2395,6 +2450,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get ref of roleDefinition from deviceManagement + description: Role definition this assignment is part of. operationId: deviceManagement.roleDefinitions.roleAssignments_GetRefRoleDefinition parameters: - name: roleDefinition-id @@ -2431,6 +2487,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Update the ref of navigation property roleDefinition in deviceManagement + description: Role definition this assignment is part of. operationId: deviceManagement.roleDefinitions.roleAssignments_SetRefRoleDefinition parameters: - name: roleDefinition-id @@ -2466,6 +2523,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Delete ref of navigation property roleDefinition for deviceManagement + description: Role definition this assignment is part of. operationId: deviceManagement.roleDefinitions.roleAssignments_DeleteRefRoleDefinition parameters: - name: roleDefinition-id @@ -2498,6 +2556,7 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Get telecomExpenseManagementPartners from deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_ListTelecomExpenseManagementPartners parameters: - $ref: '#/components/parameters/top' @@ -2584,6 +2643,7 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Create new navigation property to telecomExpenseManagementPartners for deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_CreateTelecomExpenseManagementPartners requestBody: description: New navigation property @@ -2607,6 +2667,7 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Get telecomExpenseManagementPartners from deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_GetTelecomExpenseManagementPartners parameters: - name: telecomExpenseManagementPartner-id @@ -2659,6 +2720,7 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Update the navigation property telecomExpenseManagementPartners in deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_UpdateTelecomExpenseManagementPartners parameters: - name: telecomExpenseManagementPartner-id @@ -2685,6 +2747,7 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Delete navigation property telecomExpenseManagementPartners for deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_DeleteTelecomExpenseManagementPartners parameters: - name: telecomExpenseManagementPartner-id @@ -2710,6 +2773,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get termsAndConditions from deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_ListTermsAndConditions parameters: - $ref: '#/components/parameters/top' @@ -2809,6 +2873,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Create new navigation property to termsAndConditions for deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_CreateTermsAndConditions requestBody: description: New navigation property @@ -2832,6 +2897,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get termsAndConditions from deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_GetTermsAndConditions parameters: - name: termsAndConditions-id @@ -2900,6 +2966,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Update the navigation property termsAndConditions in deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_UpdateTermsAndConditions parameters: - name: termsAndConditions-id @@ -2926,6 +2993,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Delete navigation property termsAndConditions for deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_DeleteTermsAndConditions parameters: - name: termsAndConditions-id @@ -2951,6 +3019,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get acceptanceStatuses from deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_ListAcceptanceStatuses parameters: - name: termsAndConditions-id @@ -3043,6 +3112,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Create new navigation property to acceptanceStatuses for deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_CreateAcceptanceStatuses parameters: - name: termsAndConditions-id @@ -3074,6 +3144,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get acceptanceStatuses from deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_GetAcceptanceStatuses parameters: - name: termsAndConditions-id @@ -3140,6 +3211,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Update the navigation property acceptanceStatuses in deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_UpdateAcceptanceStatuses parameters: - name: termsAndConditions-id @@ -3173,6 +3245,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Delete navigation property acceptanceStatuses for deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_DeleteAcceptanceStatuses parameters: - name: termsAndConditions-id @@ -3205,6 +3278,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get termsAndConditions from deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.acceptanceStatuses_GetTermsAndConditions parameters: - name: termsAndConditions-id @@ -3283,6 +3357,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get ref of termsAndConditions from deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.acceptanceStatuses_GetRefTermsAndConditions parameters: - name: termsAndConditions-id @@ -3324,6 +3399,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Update the ref of navigation property termsAndConditions in deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.acceptanceStatuses_SetRefTermsAndConditions parameters: - name: termsAndConditions-id @@ -3359,6 +3435,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Delete ref of navigation property termsAndConditions for deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.acceptanceStatuses_DeleteRefTermsAndConditions parameters: - name: termsAndConditions-id @@ -3391,6 +3468,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get assignments from deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_ListAssignments parameters: - name: termsAndConditions-id @@ -3472,6 +3550,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Create new navigation property to assignments for deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_CreateAssignments parameters: - name: termsAndConditions-id @@ -3503,6 +3582,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get assignments from deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_GetAssignments parameters: - name: termsAndConditions-id @@ -3558,6 +3638,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Update the navigation property assignments in deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_UpdateAssignments parameters: - name: termsAndConditions-id @@ -3591,6 +3672,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Delete navigation property assignments for deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_DeleteAssignments parameters: - name: termsAndConditions-id @@ -3634,6 +3716,10 @@ components: type: string description: Not yet documented nullable: true + certificateSerialNumber: + type: string + description: Certificate serial number. This property is read-only. + 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 diff --git a/openApiDocs/v1.0/DeviceManagement.Enrolment.yml b/openApiDocs/v1.0/DeviceManagement.Enrolment.yml index 07b19404816..2395d2efeed 100644 --- a/openApiDocs/v1.0/DeviceManagement.Enrolment.yml +++ b/openApiDocs/v1.0/DeviceManagement.Enrolment.yml @@ -11,6 +11,7 @@ paths: tags: - deviceManagement.onPremisesConditionalAccessSettings summary: Get conditionalAccessSettings from deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement_GetConditionalAccessSettings parameters: - name: $select @@ -55,6 +56,7 @@ paths: tags: - deviceManagement.onPremisesConditionalAccessSettings summary: Update the navigation property conditionalAccessSettings in deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement_UpdateConditionalAccessSettings requestBody: description: New navigation property values @@ -73,6 +75,7 @@ paths: tags: - deviceManagement.onPremisesConditionalAccessSettings summary: Delete navigation property conditionalAccessSettings for deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement_DeleteConditionalAccessSettings parameters: - name: If-Match @@ -91,6 +94,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get deviceEnrollmentConfigurations from deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_ListDeviceEnrollmentConfigurations parameters: - $ref: '#/components/parameters/top' @@ -182,6 +186,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Create new navigation property to deviceEnrollmentConfigurations for deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_CreateDeviceEnrollmentConfigurations requestBody: description: New navigation property @@ -205,6 +210,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get deviceEnrollmentConfigurations from deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_GetDeviceEnrollmentConfigurations parameters: - name: deviceEnrollmentConfiguration-id @@ -265,6 +271,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Update the navigation property deviceEnrollmentConfigurations in deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_UpdateDeviceEnrollmentConfigurations parameters: - name: deviceEnrollmentConfiguration-id @@ -291,6 +298,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Delete navigation property deviceEnrollmentConfigurations for deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_DeleteDeviceEnrollmentConfigurations parameters: - name: deviceEnrollmentConfiguration-id @@ -316,6 +324,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get assignments from deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_ListAssignments parameters: - name: deviceEnrollmentConfiguration-id @@ -397,6 +406,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Create new navigation property to assignments for deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_CreateAssignments parameters: - name: deviceEnrollmentConfiguration-id @@ -428,6 +438,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get assignments from deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_GetAssignments parameters: - name: deviceEnrollmentConfiguration-id @@ -483,6 +494,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Update the navigation property assignments in deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_UpdateAssignments parameters: - name: deviceEnrollmentConfiguration-id @@ -516,6 +528,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Delete navigation property assignments for deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_DeleteAssignments parameters: - name: deviceEnrollmentConfiguration-id @@ -543,6 +556,492 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + /deviceManagement/importedWindowsAutopilotDeviceIdentities: + get: + tags: + - deviceManagement.importedWindowsAutopilotDeviceIdentity + summary: Get importedWindowsAutopilotDeviceIdentities from deviceManagement + description: Collection of imported Windows autopilot devices. + operationId: deviceManagement_ListImportedWindowsAutopilotDeviceIdentities + 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 + - assignedUserPrincipalName + - assignedUserPrincipalName desc + - groupTag + - groupTag desc + - hardwareIdentifier + - hardwareIdentifier desc + - importId + - importId desc + - productKey + - productKey desc + - serialNumber + - serialNumber 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 + - assignedUserPrincipalName + - groupTag + - hardwareIdentifier + - importId + - productKey + - serialNumber + - 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 importedWindowsAutopilotDeviceIdentity + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentity' + '@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.importedWindowsAutopilotDeviceIdentity + summary: Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement + description: Collection of imported Windows autopilot devices. + operationId: deviceManagement_CreateImportedWindowsAutopilotDeviceIdentities + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentity' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentity' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}': + get: + tags: + - deviceManagement.importedWindowsAutopilotDeviceIdentity + summary: Get importedWindowsAutopilotDeviceIdentities from deviceManagement + description: Collection of imported Windows autopilot devices. + operationId: deviceManagement_GetImportedWindowsAutopilotDeviceIdentities + parameters: + - name: importedWindowsAutopilotDeviceIdentity-id + in: path + description: 'key: id of importedWindowsAutopilotDeviceIdentity' + required: true + schema: + type: string + x-ms-docs-key-type: importedWindowsAutopilotDeviceIdentity + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignedUserPrincipalName + - groupTag + - hardwareIdentifier + - importId + - productKey + - serialNumber + - 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.importedWindowsAutopilotDeviceIdentity' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - deviceManagement.importedWindowsAutopilotDeviceIdentity + summary: Update the navigation property importedWindowsAutopilotDeviceIdentities in deviceManagement + description: Collection of imported Windows autopilot devices. + operationId: deviceManagement_UpdateImportedWindowsAutopilotDeviceIdentities + parameters: + - name: importedWindowsAutopilotDeviceIdentity-id + in: path + description: 'key: id of importedWindowsAutopilotDeviceIdentity' + required: true + schema: + type: string + x-ms-docs-key-type: importedWindowsAutopilotDeviceIdentity + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentity' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - deviceManagement.importedWindowsAutopilotDeviceIdentity + summary: Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement + description: Collection of imported Windows autopilot devices. + operationId: deviceManagement_DeleteImportedWindowsAutopilotDeviceIdentities + parameters: + - name: importedWindowsAutopilotDeviceIdentity-id + in: path + description: 'key: id of importedWindowsAutopilotDeviceIdentity' + required: true + schema: + type: string + x-ms-docs-key-type: importedWindowsAutopilotDeviceIdentity + - 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/windowsAutopilotDeviceIdentities: + get: + tags: + - deviceManagement.windowsAutopilotDeviceIdentity + summary: Get windowsAutopilotDeviceIdentities from deviceManagement + description: The Windows autopilot device identities contained collection. + operationId: deviceManagement_ListWindowsAutopilotDeviceIdentities + 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 + - addressableUserName + - addressableUserName desc + - azureActiveDirectoryDeviceId + - azureActiveDirectoryDeviceId desc + - displayName + - displayName desc + - enrollmentState + - enrollmentState desc + - groupTag + - groupTag desc + - lastContactedDateTime + - lastContactedDateTime desc + - managedDeviceId + - managedDeviceId desc + - manufacturer + - manufacturer desc + - model + - model desc + - productKey + - productKey desc + - purchaseOrderIdentifier + - purchaseOrderIdentifier desc + - resourceName + - resourceName desc + - serialNumber + - serialNumber desc + - skuNumber + - skuNumber desc + - systemFamily + - systemFamily desc + - userPrincipalName + - userPrincipalName 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 + - addressableUserName + - azureActiveDirectoryDeviceId + - displayName + - enrollmentState + - groupTag + - lastContactedDateTime + - managedDeviceId + - manufacturer + - model + - productKey + - purchaseOrderIdentifier + - resourceName + - serialNumber + - skuNumber + - systemFamily + - userPrincipalName + 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 windowsAutopilotDeviceIdentity + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsAutopilotDeviceIdentity' + '@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.windowsAutopilotDeviceIdentity + summary: Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement + description: The Windows autopilot device identities contained collection. + operationId: deviceManagement_CreateWindowsAutopilotDeviceIdentities + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsAutopilotDeviceIdentity' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsAutopilotDeviceIdentity' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}': + get: + tags: + - deviceManagement.windowsAutopilotDeviceIdentity + summary: Get windowsAutopilotDeviceIdentities from deviceManagement + description: The Windows autopilot device identities contained collection. + operationId: deviceManagement_GetWindowsAutopilotDeviceIdentities + parameters: + - name: windowsAutopilotDeviceIdentity-id + in: path + description: 'key: id of windowsAutopilotDeviceIdentity' + required: true + schema: + type: string + x-ms-docs-key-type: windowsAutopilotDeviceIdentity + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - addressableUserName + - azureActiveDirectoryDeviceId + - displayName + - enrollmentState + - groupTag + - lastContactedDateTime + - managedDeviceId + - manufacturer + - model + - productKey + - purchaseOrderIdentifier + - resourceName + - serialNumber + - skuNumber + - systemFamily + - userPrincipalName + 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.windowsAutopilotDeviceIdentity' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - deviceManagement.windowsAutopilotDeviceIdentity + summary: Update the navigation property windowsAutopilotDeviceIdentities in deviceManagement + description: The Windows autopilot device identities contained collection. + operationId: deviceManagement_UpdateWindowsAutopilotDeviceIdentities + parameters: + - name: windowsAutopilotDeviceIdentity-id + in: path + description: 'key: id of windowsAutopilotDeviceIdentity' + required: true + schema: + type: string + x-ms-docs-key-type: windowsAutopilotDeviceIdentity + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.windowsAutopilotDeviceIdentity' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - deviceManagement.windowsAutopilotDeviceIdentity + summary: Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement + description: The Windows autopilot device identities contained collection. + operationId: deviceManagement_DeleteWindowsAutopilotDeviceIdentities + parameters: + - name: windowsAutopilotDeviceIdentity-id + in: path + description: 'key: id of windowsAutopilotDeviceIdentity' + required: true + schema: + type: string + x-ms-docs-key-type: windowsAutopilotDeviceIdentity + - 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: get: tags: @@ -686,6 +1185,114 @@ components: additionalProperties: type: object description: Enrollment Configuration Assignment + microsoft.graph.importedWindowsAutopilotDeviceIdentity: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: importedWindowsAutopilotDeviceIdentity + type: object + properties: + assignedUserPrincipalName: + type: string + description: UPN of the user the device will be assigned + nullable: true + groupTag: + type: string + description: Group Tag of the Windows autopilot device. + nullable: true + hardwareIdentifier: + type: string + description: Hardware Blob of the Windows autopilot device. + format: base64url + nullable: true + importId: + type: string + description: The Import Id of the Windows autopilot device. + nullable: true + productKey: + type: string + description: Product Key of the Windows autopilot device. + nullable: true + serialNumber: + type: string + description: Serial number of the Windows autopilot device. + nullable: true + state: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentityState' + additionalProperties: + type: object + description: Imported windows autopilot devices. + microsoft.graph.windowsAutopilotDeviceIdentity: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: windowsAutopilotDeviceIdentity + type: object + properties: + addressableUserName: + type: string + description: Addressable user name. + nullable: true + azureActiveDirectoryDeviceId: + type: string + description: AAD Device ID - to be deprecated + nullable: true + displayName: + type: string + description: Display Name + nullable: true + enrollmentState: + $ref: '#/components/schemas/microsoft.graph.enrollmentState' + groupTag: + type: string + description: Group Tag of the Windows autopilot device. + nullable: true + lastContactedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Intune Last Contacted Date Time of the Windows autopilot device. + format: date-time + managedDeviceId: + type: string + description: Managed Device ID + nullable: true + manufacturer: + type: string + description: Oem manufacturer of the Windows autopilot device. + nullable: true + model: + type: string + description: Model name of the Windows autopilot device. + nullable: true + productKey: + type: string + description: Product Key of the Windows autopilot device. + nullable: true + purchaseOrderIdentifier: + type: string + description: Purchase Order Identifier of the Windows autopilot device. + nullable: true + resourceName: + type: string + description: Resource Name. + nullable: true + serialNumber: + type: string + description: Serial number of the Windows autopilot device. + nullable: true + skuNumber: + type: string + description: SKU Number + nullable: true + systemFamily: + type: string + description: System Family + nullable: true + userPrincipalName: + type: string + description: User Principal Name. + nullable: true + additionalProperties: + type: object + description: The windowsAutopilotDeviceIdentity resource represents a Windows Autopilot Device. microsoft.graph.roleManagement: title: roleManagement type: object @@ -706,6 +1313,37 @@ components: additionalProperties: type: object description: Base type for assignment targets. + microsoft.graph.importedWindowsAutopilotDeviceIdentityState: + title: importedWindowsAutopilotDeviceIdentityState + type: object + properties: + deviceErrorCode: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Device error code reported by Device Directory Service(DDS). + format: int32 + deviceErrorName: + type: string + description: Device error name reported by Device Directory Service(DDS). + nullable: true + deviceImportStatus: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentityImportStatus' + deviceRegistrationId: + type: string + description: Device Registration ID for successfully added device reported by Device Directory Service(DDS). + nullable: true + additionalProperties: + type: object + microsoft.graph.enrollmentState: + title: enrollmentState + enum: + - unknown + - enrolled + - pendingReset + - failed + - notContacted + type: string odata.error: required: - error @@ -715,6 +1353,15 @@ components: $ref: '#/components/schemas/odata.error.main' additionalProperties: type: object + microsoft.graph.importedWindowsAutopilotDeviceIdentityImportStatus: + title: importedWindowsAutopilotDeviceIdentityImportStatus + enum: + - unknown + - pending + - partial + - complete + - error + type: string odata.error.main: required: - code diff --git a/openApiDocs/v1.0/DeviceManagement.Functions.yml b/openApiDocs/v1.0/DeviceManagement.Functions.yml index 5ea86a7abad..0c70180034c 100644 --- a/openApiDocs/v1.0/DeviceManagement.Functions.yml +++ b/openApiDocs/v1.0/DeviceManagement.Functions.yml @@ -11,6 +11,7 @@ paths: tags: - deviceManagement.Functions summary: Invoke function downloadApplePushNotificationCertificateSigningRequest + description: Download Apple push notification certificate signing request operationId: deviceManagement.applePushNotificationCertificate_downloadApplePushNotificationCertificateSigningRequest responses: '200': @@ -28,6 +29,7 @@ paths: tags: - deviceManagement.Functions summary: Invoke function getEffectivePermissions + description: Retrieves the effective permissions of the currently authenticated user operationId: deviceManagement_getEffectivePermissions parameters: - name: scope diff --git a/openApiDocs/v1.0/DeviceManagement.yml b/openApiDocs/v1.0/DeviceManagement.yml index 999dca29bdd..ae3dad5fdb4 100644 --- a/openApiDocs/v1.0/DeviceManagement.yml +++ b/openApiDocs/v1.0/DeviceManagement.yml @@ -47,6 +47,8 @@ paths: - detectedApps - managedDeviceOverview - managedDevices + - importedWindowsAutopilotDeviceIdentities + - windowsAutopilotDeviceIdentities - notificationMessageTemplates - resourceOperations - roleAssignments @@ -87,6 +89,8 @@ paths: - detectedApps - managedDeviceOverview - managedDevices + - importedWindowsAutopilotDeviceIdentities + - windowsAutopilotDeviceIdentities - notificationMessageTemplates - resourceOperations - roleAssignments @@ -143,6 +147,10 @@ paths: operationId: deviceManagement.GetManagedDeviceOverview managedDevices: operationId: deviceManagement.ListManagedDevices + importedWindowsAutopilotDeviceIdentities: + operationId: deviceManagement.ListImportedWindowsAutopilotDeviceIdentities + windowsAutopilotDeviceIdentities: + operationId: deviceManagement.ListWindowsAutopilotDeviceIdentities notificationMessageTemplates: operationId: deviceManagement.ListNotificationMessageTemplates resourceOperations: @@ -187,6 +195,7 @@ paths: tags: - deviceManagement.detectedApp summary: Get detectedApps from deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_ListDetectedApps parameters: - $ref: '#/components/parameters/top' @@ -272,6 +281,7 @@ paths: tags: - deviceManagement.detectedApp summary: Create new navigation property to detectedApps for deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_CreateDetectedApps requestBody: description: New navigation property @@ -295,6 +305,7 @@ paths: tags: - deviceManagement.detectedApp summary: Get detectedApps from deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_GetDetectedApps parameters: - name: detectedApp-id @@ -353,6 +364,7 @@ paths: tags: - deviceManagement.detectedApp summary: Update the navigation property detectedApps in deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_UpdateDetectedApps parameters: - name: detectedApp-id @@ -379,6 +391,7 @@ paths: tags: - deviceManagement.detectedApp summary: Delete navigation property detectedApps for deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_DeleteDetectedApps parameters: - name: detectedApp-id @@ -404,6 +417,7 @@ paths: tags: - deviceManagement.detectedApp summary: Get managedDevices from deviceManagement + description: The devices that have the discovered application installed operationId: deviceManagement.detectedApps_ListManagedDevices parameters: - name: detectedApp-id @@ -466,6 +480,8 @@ paths: - emailAddress desc - enrolledDateTime - enrolledDateTime desc + - ethernetMacAddress + - ethernetMacAddress desc - exchangeAccessState - exchangeAccessState desc - exchangeAccessStateReason @@ -474,6 +490,8 @@ paths: - exchangeLastSuccessfulSyncDateTime desc - freeStorageSpaceInBytes - freeStorageSpaceInBytes desc + - iccid + - iccid desc - imei - imei desc - isEncrypted @@ -496,6 +514,8 @@ paths: - meid desc - model - model desc + - notes + - notes desc - operatingSystem - operatingSystem desc - osVersion @@ -504,6 +524,8 @@ paths: - partnerReportedThreatState desc - phoneNumber - phoneNumber desc + - physicalMemoryInBytes + - physicalMemoryInBytes desc - remoteAssistanceSessionErrorDetails - remoteAssistanceSessionErrorDetails desc - remoteAssistanceSessionUrl @@ -514,6 +536,8 @@ paths: - subscriberCarrier desc - totalStorageSpaceInBytes - totalStorageSpaceInBytes desc + - udid + - udid desc - userDisplayName - userDisplayName desc - userId @@ -552,10 +576,12 @@ paths: - easDeviceId - emailAddress - enrolledDateTime + - ethernetMacAddress - exchangeAccessState - exchangeAccessStateReason - exchangeLastSuccessfulSyncDateTime - freeStorageSpaceInBytes + - iccid - imei - isEncrypted - isSupervised @@ -567,15 +593,18 @@ paths: - manufacturer - meid - model + - notes - operatingSystem - osVersion - partnerReportedThreatState - phoneNumber + - physicalMemoryInBytes - remoteAssistanceSessionErrorDetails - remoteAssistanceSessionUrl - serialNumber - subscriberCarrier - totalStorageSpaceInBytes + - udid - userDisplayName - userId - userPrincipalName @@ -627,6 +656,7 @@ paths: tags: - deviceManagement.detectedApp summary: Get ref of managedDevices from deviceManagement + description: The devices that have the discovered application installed operationId: deviceManagement.detectedApps_ListRefManagedDevices parameters: - name: detectedApp-id @@ -689,6 +719,8 @@ paths: - emailAddress desc - enrolledDateTime - enrolledDateTime desc + - ethernetMacAddress + - ethernetMacAddress desc - exchangeAccessState - exchangeAccessState desc - exchangeAccessStateReason @@ -697,6 +729,8 @@ paths: - exchangeLastSuccessfulSyncDateTime desc - freeStorageSpaceInBytes - freeStorageSpaceInBytes desc + - iccid + - iccid desc - imei - imei desc - isEncrypted @@ -719,6 +753,8 @@ paths: - meid desc - model - model desc + - notes + - notes desc - operatingSystem - operatingSystem desc - osVersion @@ -727,6 +763,8 @@ paths: - partnerReportedThreatState desc - phoneNumber - phoneNumber desc + - physicalMemoryInBytes + - physicalMemoryInBytes desc - remoteAssistanceSessionErrorDetails - remoteAssistanceSessionErrorDetails desc - remoteAssistanceSessionUrl @@ -737,6 +775,8 @@ paths: - subscriberCarrier desc - totalStorageSpaceInBytes - totalStorageSpaceInBytes desc + - udid + - udid desc - userDisplayName - userDisplayName desc - userId @@ -773,6 +813,7 @@ paths: tags: - deviceManagement.detectedApp summary: Create new navigation property ref to managedDevices for deviceManagement + description: The devices that have the discovered application installed operationId: deviceManagement.detectedApps_CreateRefManagedDevices parameters: - name: detectedApp-id @@ -808,6 +849,7 @@ paths: tags: - deviceManagement.deviceCategory summary: Get deviceCategories from deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_ListDeviceCategories parameters: - $ref: '#/components/parameters/top' @@ -885,6 +927,7 @@ paths: tags: - deviceManagement.deviceCategory summary: Create new navigation property to deviceCategories for deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_CreateDeviceCategories requestBody: description: New navigation property @@ -908,6 +951,7 @@ paths: tags: - deviceManagement.deviceCategory summary: Get deviceCategories from deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_GetDeviceCategories parameters: - name: deviceCategory-id @@ -957,6 +1001,7 @@ paths: tags: - deviceManagement.deviceCategory summary: Update the navigation property deviceCategories in deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_UpdateDeviceCategories parameters: - name: deviceCategory-id @@ -983,6 +1028,7 @@ paths: tags: - deviceManagement.deviceCategory summary: Delete navigation property deviceCategories for deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_DeleteDeviceCategories parameters: - name: deviceCategory-id @@ -1008,6 +1054,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceCompliancePolicies from deviceManagement + description: The device compliance policies. operationId: deviceManagement_ListDeviceCompliancePolicies parameters: - $ref: '#/components/parameters/top' @@ -1108,6 +1155,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to deviceCompliancePolicies for deviceManagement + description: The device compliance policies. operationId: deviceManagement_CreateDeviceCompliancePolicies requestBody: description: New navigation property @@ -1131,6 +1179,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceCompliancePolicies from deviceManagement + description: The device compliance policies. operationId: deviceManagement_GetDeviceCompliancePolicies parameters: - name: deviceCompliancePolicy-id @@ -1226,6 +1275,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceCompliancePolicies in deviceManagement + description: The device compliance policies. operationId: deviceManagement_UpdateDeviceCompliancePolicies parameters: - name: deviceCompliancePolicy-id @@ -1252,6 +1302,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceCompliancePolicies for deviceManagement + description: The device compliance policies. operationId: deviceManagement_DeleteDeviceCompliancePolicies parameters: - name: deviceCompliancePolicy-id @@ -1277,6 +1328,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get assignments from deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_ListAssignments parameters: - name: deviceCompliancePolicy-id @@ -1358,6 +1410,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to assignments for deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_CreateAssignments parameters: - name: deviceCompliancePolicy-id @@ -1389,6 +1442,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get assignments from deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_GetAssignments parameters: - name: deviceCompliancePolicy-id @@ -1444,6 +1498,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property assignments in deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_UpdateAssignments parameters: - name: deviceCompliancePolicy-id @@ -1477,6 +1532,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property assignments for deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_DeleteAssignments parameters: - name: deviceCompliancePolicy-id @@ -1509,6 +1565,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceSettingStateSummaries from deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_ListDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id @@ -1614,6 +1671,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to deviceSettingStateSummaries for deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_CreateDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id @@ -1645,6 +1703,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceSettingStateSummaries from deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_GetDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id @@ -1708,6 +1767,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceSettingStateSummaries in deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_UpdateDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id @@ -1741,6 +1801,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceSettingStateSummaries for deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_DeleteDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id @@ -1773,6 +1834,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatuses from deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_ListDeviceStatuses parameters: - name: deviceCompliancePolicy-id @@ -1872,6 +1934,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to deviceStatuses for deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_CreateDeviceStatuses parameters: - name: deviceCompliancePolicy-id @@ -1903,6 +1966,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatuses from deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_GetDeviceStatuses parameters: - name: deviceCompliancePolicy-id @@ -1964,6 +2028,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceStatuses in deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_UpdateDeviceStatuses parameters: - name: deviceCompliancePolicy-id @@ -1997,6 +2062,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceStatuses for deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_DeleteDeviceStatuses parameters: - name: deviceCompliancePolicy-id @@ -2029,6 +2095,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatusOverview from deviceManagement + description: Device compliance devices status overview operationId: deviceManagement.deviceCompliancePolicies_GetDeviceStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -2083,6 +2150,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceStatusOverview in deviceManagement + description: Device compliance devices status overview operationId: deviceManagement.deviceCompliancePolicies_UpdateDeviceStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -2109,6 +2177,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceStatusOverview for deviceManagement + description: Device compliance devices status overview operationId: deviceManagement.deviceCompliancePolicies_DeleteDeviceStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -2134,6 +2203,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_ListScheduledActionsForRule parameters: - name: deviceCompliancePolicy-id @@ -2217,6 +2287,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to scheduledActionsForRule for deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_CreateScheduledActionsForRule parameters: - name: deviceCompliancePolicy-id @@ -2248,6 +2319,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_GetScheduledActionsForRule parameters: - name: deviceCompliancePolicy-id @@ -2311,6 +2383,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property scheduledActionsForRule in deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_UpdateScheduledActionsForRule parameters: - name: deviceCompliancePolicy-id @@ -2344,6 +2417,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property scheduledActionsForRule for deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_DeleteScheduledActionsForRule parameters: - name: deviceCompliancePolicy-id @@ -2376,6 +2450,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement + description: The list of scheduled action configurations for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule_ListScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id @@ -2473,6 +2548,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to scheduledActionConfigurations for deviceManagement + description: The list of scheduled action configurations for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule_CreateScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id @@ -2511,6 +2587,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement + description: The list of scheduled action configurations for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule_GetScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id @@ -2576,6 +2653,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property scheduledActionConfigurations in deviceManagement + description: The list of scheduled action configurations for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule_UpdateScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id @@ -2616,6 +2694,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property scheduledActionConfigurations for deviceManagement + description: The list of scheduled action configurations for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule_DeleteScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id @@ -2655,6 +2734,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatuses from deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_ListUserStatuses parameters: - name: deviceCompliancePolicy-id @@ -2748,6 +2828,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to userStatuses for deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_CreateUserStatuses parameters: - name: deviceCompliancePolicy-id @@ -2779,6 +2860,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatuses from deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_GetUserStatuses parameters: - name: deviceCompliancePolicy-id @@ -2838,6 +2920,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property userStatuses in deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_UpdateUserStatuses parameters: - name: deviceCompliancePolicy-id @@ -2871,6 +2954,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property userStatuses for deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_DeleteUserStatuses parameters: - name: deviceCompliancePolicy-id @@ -2903,6 +2987,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatusOverview from deviceManagement + description: Device compliance users status overview operationId: deviceManagement.deviceCompliancePolicies_GetUserStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -2957,6 +3042,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property userStatusOverview in deviceManagement + description: Device compliance users status overview operationId: deviceManagement.deviceCompliancePolicies_UpdateUserStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -2983,6 +3069,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property userStatusOverview for deviceManagement + description: Device compliance users status overview operationId: deviceManagement.deviceCompliancePolicies_DeleteUserStatusOverview parameters: - name: deviceCompliancePolicy-id @@ -3008,6 +3095,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicyDeviceStateSummary summary: Get deviceCompliancePolicyDeviceStateSummary from deviceManagement + description: The device compliance state summary for this account. operationId: deviceManagement_GetDeviceCompliancePolicyDeviceStateSummary parameters: - name: $select @@ -3057,6 +3145,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicyDeviceStateSummary summary: Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement + description: The device compliance state summary for this account. operationId: deviceManagement_UpdateDeviceCompliancePolicyDeviceStateSummary requestBody: description: New navigation property values @@ -3075,6 +3164,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicyDeviceStateSummary summary: Delete navigation property deviceCompliancePolicyDeviceStateSummary for deviceManagement + description: The device compliance state summary for this account. operationId: deviceManagement_DeleteDeviceCompliancePolicyDeviceStateSummary parameters: - name: If-Match @@ -3093,6 +3183,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceCompliancePolicySettingStateSummaries from deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_ListDeviceCompliancePolicySettingStateSummaries parameters: - $ref: '#/components/parameters/top' @@ -3196,6 +3287,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_CreateDeviceCompliancePolicySettingStateSummaries requestBody: description: New navigation property @@ -3219,6 +3311,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceCompliancePolicySettingStateSummaries from deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_GetDeviceCompliancePolicySettingStateSummaries parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -3283,6 +3376,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_UpdateDeviceCompliancePolicySettingStateSummaries parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -3309,6 +3403,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_DeleteDeviceCompliancePolicySettingStateSummaries parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -3334,6 +3429,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceComplianceSettingStates from deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_ListDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -3445,6 +3541,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Create new navigation property to deviceComplianceSettingStates for deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_CreateDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -3476,6 +3573,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceComplianceSettingStates from deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_GetDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -3541,6 +3639,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Update the navigation property deviceComplianceSettingStates in deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_UpdateDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -3574,6 +3673,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Delete navigation property deviceComplianceSettingStates for deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_DeleteDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id @@ -3606,6 +3706,7 @@ paths: tags: - deviceManagement.deviceConfigurationDeviceStateSummary summary: Get deviceConfigurationDeviceStateSummaries from deviceManagement + description: The device configuration device state summary for this account. operationId: deviceManagement_GetDeviceConfigurationDeviceStateSummaries parameters: - name: $select @@ -3653,6 +3754,7 @@ paths: tags: - deviceManagement.deviceConfigurationDeviceStateSummary summary: Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement + description: The device configuration device state summary for this account. operationId: deviceManagement_UpdateDeviceConfigurationDeviceStateSummaries requestBody: description: New navigation property values @@ -3671,6 +3773,7 @@ paths: tags: - deviceManagement.deviceConfigurationDeviceStateSummary summary: Delete navigation property deviceConfigurationDeviceStateSummaries for deviceManagement + description: The device configuration device state summary for this account. operationId: deviceManagement_DeleteDeviceConfigurationDeviceStateSummaries parameters: - name: If-Match @@ -3689,6 +3792,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceConfigurations from deviceManagement + description: The device configurations. operationId: deviceManagement_ListDeviceConfigurations parameters: - $ref: '#/components/parameters/top' @@ -3787,6 +3891,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Create new navigation property to deviceConfigurations for deviceManagement + description: The device configurations. operationId: deviceManagement_CreateDeviceConfigurations requestBody: description: New navigation property @@ -3810,6 +3915,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceConfigurations from deviceManagement + description: The device configurations. operationId: deviceManagement_GetDeviceConfigurations parameters: - name: deviceConfiguration-id @@ -3899,6 +4005,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceConfigurations in deviceManagement + description: The device configurations. operationId: deviceManagement_UpdateDeviceConfigurations parameters: - name: deviceConfiguration-id @@ -3925,6 +4032,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceConfigurations for deviceManagement + description: The device configurations. operationId: deviceManagement_DeleteDeviceConfigurations parameters: - name: deviceConfiguration-id @@ -3950,6 +4058,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get assignments from deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_ListAssignments parameters: - name: deviceConfiguration-id @@ -4031,6 +4140,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Create new navigation property to assignments for deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_CreateAssignments parameters: - name: deviceConfiguration-id @@ -4062,6 +4172,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get assignments from deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_GetAssignments parameters: - name: deviceConfiguration-id @@ -4117,6 +4228,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property assignments in deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_UpdateAssignments parameters: - name: deviceConfiguration-id @@ -4150,6 +4262,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property assignments for deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_DeleteAssignments parameters: - name: deviceConfiguration-id @@ -4182,6 +4295,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceSettingStateSummaries from deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_ListDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id @@ -4287,6 +4401,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Create new navigation property to deviceSettingStateSummaries for deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_CreateDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id @@ -4318,6 +4433,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceSettingStateSummaries from deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_GetDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id @@ -4381,6 +4497,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceSettingStateSummaries in deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_UpdateDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id @@ -4414,6 +4531,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceSettingStateSummaries for deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_DeleteDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id @@ -4446,6 +4564,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatuses from deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_ListDeviceStatuses parameters: - name: deviceConfiguration-id @@ -4545,6 +4664,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Create new navigation property to deviceStatuses for deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_CreateDeviceStatuses parameters: - name: deviceConfiguration-id @@ -4576,6 +4696,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatuses from deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_GetDeviceStatuses parameters: - name: deviceConfiguration-id @@ -4637,6 +4758,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceStatuses in deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_UpdateDeviceStatuses parameters: - name: deviceConfiguration-id @@ -4670,6 +4792,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceStatuses for deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_DeleteDeviceStatuses parameters: - name: deviceConfiguration-id @@ -4702,6 +4825,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatusOverview from deviceManagement + description: Device Configuration devices status overview operationId: deviceManagement.deviceConfigurations_GetDeviceStatusOverview parameters: - name: deviceConfiguration-id @@ -4756,6 +4880,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceStatusOverview in deviceManagement + description: Device Configuration devices status overview operationId: deviceManagement.deviceConfigurations_UpdateDeviceStatusOverview parameters: - name: deviceConfiguration-id @@ -4782,6 +4907,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceStatusOverview for deviceManagement + description: Device Configuration devices status overview operationId: deviceManagement.deviceConfigurations_DeleteDeviceStatusOverview parameters: - name: deviceConfiguration-id @@ -4807,6 +4933,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get userStatuses from deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_ListUserStatuses parameters: - name: deviceConfiguration-id @@ -4900,6 +5027,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Create new navigation property to userStatuses for deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_CreateUserStatuses parameters: - name: deviceConfiguration-id @@ -4931,6 +5059,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get userStatuses from deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_GetUserStatuses parameters: - name: deviceConfiguration-id @@ -4990,6 +5119,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property userStatuses in deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_UpdateUserStatuses parameters: - name: deviceConfiguration-id @@ -5023,6 +5153,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property userStatuses for deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_DeleteUserStatuses parameters: - name: deviceConfiguration-id @@ -5055,6 +5186,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get userStatusOverview from deviceManagement + description: Device Configuration users status overview operationId: deviceManagement.deviceConfigurations_GetUserStatusOverview parameters: - name: deviceConfiguration-id @@ -5109,6 +5241,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property userStatusOverview in deviceManagement + description: Device Configuration users status overview operationId: deviceManagement.deviceConfigurations_UpdateUserStatusOverview parameters: - name: deviceConfiguration-id @@ -5135,6 +5268,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property userStatusOverview for deviceManagement + description: Device Configuration users status overview operationId: deviceManagement.deviceConfigurations_DeleteUserStatusOverview parameters: - name: deviceConfiguration-id @@ -5160,6 +5294,7 @@ paths: tags: - deviceManagement.managedDeviceOverview summary: Get managedDeviceOverview from deviceManagement + description: Device overview operationId: deviceManagement_GetManagedDeviceOverview parameters: - name: $select @@ -5206,6 +5341,7 @@ paths: tags: - deviceManagement.managedDeviceOverview summary: Get ref of managedDeviceOverview from deviceManagement + description: Device overview operationId: deviceManagement_GetRefManagedDeviceOverview responses: '200': @@ -5221,6 +5357,7 @@ paths: tags: - deviceManagement.managedDeviceOverview summary: Update the ref of navigation property managedDeviceOverview in deviceManagement + description: Device overview operationId: deviceManagement_SetRefManagedDeviceOverview requestBody: description: New navigation property ref values @@ -5241,6 +5378,7 @@ paths: tags: - deviceManagement.managedDeviceOverview summary: Delete ref of navigation property managedDeviceOverview for deviceManagement + description: Device overview operationId: deviceManagement_DeleteRefManagedDeviceOverview parameters: - name: If-Match @@ -5259,6 +5397,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDevices from deviceManagement + description: The list of managed devices. operationId: deviceManagement_ListManagedDevices parameters: - $ref: '#/components/parameters/top' @@ -5314,6 +5453,8 @@ paths: - emailAddress desc - enrolledDateTime - enrolledDateTime desc + - ethernetMacAddress + - ethernetMacAddress desc - exchangeAccessState - exchangeAccessState desc - exchangeAccessStateReason @@ -5322,6 +5463,8 @@ paths: - exchangeLastSuccessfulSyncDateTime desc - freeStorageSpaceInBytes - freeStorageSpaceInBytes desc + - iccid + - iccid desc - imei - imei desc - isEncrypted @@ -5344,6 +5487,8 @@ paths: - meid desc - model - model desc + - notes + - notes desc - operatingSystem - operatingSystem desc - osVersion @@ -5352,6 +5497,8 @@ paths: - partnerReportedThreatState desc - phoneNumber - phoneNumber desc + - physicalMemoryInBytes + - physicalMemoryInBytes desc - remoteAssistanceSessionErrorDetails - remoteAssistanceSessionErrorDetails desc - remoteAssistanceSessionUrl @@ -5362,6 +5509,8 @@ paths: - subscriberCarrier desc - totalStorageSpaceInBytes - totalStorageSpaceInBytes desc + - udid + - udid desc - userDisplayName - userDisplayName desc - userId @@ -5400,10 +5549,12 @@ paths: - easDeviceId - emailAddress - enrolledDateTime + - ethernetMacAddress - exchangeAccessState - exchangeAccessStateReason - exchangeLastSuccessfulSyncDateTime - freeStorageSpaceInBytes + - iccid - imei - isEncrypted - isSupervised @@ -5415,15 +5566,18 @@ paths: - manufacturer - meid - model + - notes - operatingSystem - osVersion - partnerReportedThreatState - phoneNumber + - physicalMemoryInBytes - remoteAssistanceSessionErrorDetails - remoteAssistanceSessionUrl - serialNumber - subscriberCarrier - totalStorageSpaceInBytes + - udid - userDisplayName - userId - userPrincipalName @@ -5474,6 +5628,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to managedDevices for deviceManagement + description: The list of managed devices. operationId: deviceManagement_CreateManagedDevices requestBody: description: New navigation property @@ -5497,6 +5652,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDevices from deviceManagement + description: The list of managed devices. operationId: deviceManagement_GetManagedDevices parameters: - name: managedDevice-id @@ -5535,10 +5691,12 @@ paths: - easDeviceId - emailAddress - enrolledDateTime + - ethernetMacAddress - exchangeAccessState - exchangeAccessStateReason - exchangeLastSuccessfulSyncDateTime - freeStorageSpaceInBytes + - iccid - imei - isEncrypted - isSupervised @@ -5550,15 +5708,18 @@ paths: - manufacturer - meid - model + - notes - operatingSystem - osVersion - partnerReportedThreatState - phoneNumber + - physicalMemoryInBytes - remoteAssistanceSessionErrorDetails - remoteAssistanceSessionUrl - serialNumber - subscriberCarrier - totalStorageSpaceInBytes + - udid - userDisplayName - userId - userPrincipalName @@ -5609,6 +5770,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property managedDevices in deviceManagement + description: The list of managed devices. operationId: deviceManagement_UpdateManagedDevices parameters: - name: managedDevice-id @@ -5635,6 +5797,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property managedDevices for deviceManagement + description: The list of managed devices. operationId: deviceManagement_DeleteManagedDevices parameters: - name: managedDevice-id @@ -5660,6 +5823,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCategory from deviceManagement + description: Device category operationId: deviceManagement.managedDevices_GetDeviceCategory parameters: - name: managedDevice-id @@ -5709,6 +5873,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceCategory in deviceManagement + description: Device category operationId: deviceManagement.managedDevices_UpdateDeviceCategory parameters: - name: managedDevice-id @@ -5735,6 +5900,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceCategory for deviceManagement + description: Device category operationId: deviceManagement.managedDevices_DeleteDeviceCategory parameters: - name: managedDevice-id @@ -5760,6 +5926,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_ListDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -5856,6 +6023,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to deviceCompliancePolicyStates for deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_CreateDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -5887,6 +6055,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_GetDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -5947,6 +6116,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceCompliancePolicyStates in deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_UpdateDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -5980,6 +6150,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceCompliancePolicyStates for deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_DeleteDeviceCompliancePolicyStates parameters: - name: managedDevice-id @@ -6012,6 +6183,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_ListDeviceConfigurationStates parameters: - name: managedDevice-id @@ -6108,6 +6280,7 @@ paths: tags: - deviceManagement.managedDevice summary: Create new navigation property to deviceConfigurationStates for deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_CreateDeviceConfigurationStates parameters: - name: managedDevice-id @@ -6139,6 +6312,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_GetDeviceConfigurationStates parameters: - name: managedDevice-id @@ -6199,6 +6373,7 @@ paths: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceConfigurationStates in deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_UpdateDeviceConfigurationStates parameters: - name: managedDevice-id @@ -6232,6 +6407,7 @@ paths: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceConfigurationStates for deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_DeleteDeviceConfigurationStates parameters: - name: managedDevice-id @@ -6264,6 +6440,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get notificationMessageTemplates from deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_ListNotificationMessageTemplates parameters: - $ref: '#/components/parameters/top' @@ -6349,6 +6526,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Create new navigation property to notificationMessageTemplates for deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_CreateNotificationMessageTemplates requestBody: description: New navigation property @@ -6372,6 +6550,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get notificationMessageTemplates from deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_GetNotificationMessageTemplates parameters: - name: notificationMessageTemplate-id @@ -6430,6 +6609,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Update the navigation property notificationMessageTemplates in deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_UpdateNotificationMessageTemplates parameters: - name: notificationMessageTemplate-id @@ -6456,6 +6636,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Delete navigation property notificationMessageTemplates for deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_DeleteNotificationMessageTemplates parameters: - name: notificationMessageTemplate-id @@ -6481,6 +6662,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get localizedNotificationMessages from deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_ListLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id @@ -6574,6 +6756,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Create new navigation property to localizedNotificationMessages for deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_CreateLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id @@ -6605,6 +6788,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get localizedNotificationMessages from deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_GetLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id @@ -6664,6 +6848,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Update the navigation property localizedNotificationMessages in deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_UpdateLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id @@ -6697,6 +6882,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Delete navigation property localizedNotificationMessages for deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_DeleteLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id @@ -6729,6 +6915,7 @@ paths: tags: - deviceManagement.softwareUpdateStatusSummary summary: Get softwareUpdateStatusSummary from deviceManagement + description: The software update status summary. operationId: deviceManagement_GetSoftwareUpdateStatusSummary parameters: - name: $select @@ -6785,6 +6972,7 @@ paths: tags: - deviceManagement.softwareUpdateStatusSummary summary: Get ref of softwareUpdateStatusSummary from deviceManagement + description: The software update status summary. operationId: deviceManagement_GetRefSoftwareUpdateStatusSummary responses: '200': @@ -6800,6 +6988,7 @@ paths: tags: - deviceManagement.softwareUpdateStatusSummary summary: Update the ref of navigation property softwareUpdateStatusSummary in deviceManagement + description: The software update status summary. operationId: deviceManagement_SetRefSoftwareUpdateStatusSummary requestBody: description: New navigation property ref values @@ -6820,6 +7009,7 @@ paths: tags: - deviceManagement.softwareUpdateStatusSummary summary: Delete ref of navigation property softwareUpdateStatusSummary for deviceManagement + description: The software update status summary. operationId: deviceManagement_DeleteRefSoftwareUpdateStatusSummary parameters: - name: If-Match @@ -6838,6 +7028,7 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Get troubleshootingEvents from deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_ListTroubleshootingEvents parameters: - $ref: '#/components/parameters/top' @@ -6915,6 +7106,7 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Create new navigation property to troubleshootingEvents for deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_CreateTroubleshootingEvents requestBody: description: New navigation property @@ -6938,6 +7130,7 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Get troubleshootingEvents from deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_GetTroubleshootingEvents parameters: - name: deviceManagementTroubleshootingEvent-id @@ -6987,6 +7180,7 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Update the navigation property troubleshootingEvents in deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_UpdateTroubleshootingEvents parameters: - name: deviceManagementTroubleshootingEvent-id @@ -7013,6 +7207,7 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Delete navigation property troubleshootingEvents for deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_DeleteTroubleshootingEvents parameters: - name: deviceManagementTroubleshootingEvent-id @@ -7038,6 +7233,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Get windowsInformationProtectionAppLearningSummaries from deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_ListWindowsInformationProtectionAppLearningSummaries parameters: - $ref: '#/components/parameters/top' @@ -7118,6 +7314,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Create new navigation property to windowsInformationProtectionAppLearningSummaries for deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_CreateWindowsInformationProtectionAppLearningSummaries requestBody: description: New navigation property @@ -7141,6 +7338,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Get windowsInformationProtectionAppLearningSummaries from deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_GetWindowsInformationProtectionAppLearningSummaries parameters: - name: windowsInformationProtectionAppLearningSummary-id @@ -7191,6 +7389,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Update the navigation property windowsInformationProtectionAppLearningSummaries in deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_UpdateWindowsInformationProtectionAppLearningSummaries parameters: - name: windowsInformationProtectionAppLearningSummary-id @@ -7217,6 +7416,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Delete navigation property windowsInformationProtectionAppLearningSummaries for deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_DeleteWindowsInformationProtectionAppLearningSummaries parameters: - name: windowsInformationProtectionAppLearningSummary-id @@ -7242,6 +7442,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Get windowsInformationProtectionNetworkLearningSummaries from deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_ListWindowsInformationProtectionNetworkLearningSummaries parameters: - $ref: '#/components/parameters/top' @@ -7319,6 +7520,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Create new navigation property to windowsInformationProtectionNetworkLearningSummaries for deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_CreateWindowsInformationProtectionNetworkLearningSummaries requestBody: description: New navigation property @@ -7342,6 +7544,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Get windowsInformationProtectionNetworkLearningSummaries from deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_GetWindowsInformationProtectionNetworkLearningSummaries parameters: - name: windowsInformationProtectionNetworkLearningSummary-id @@ -7391,6 +7594,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Update the navigation property windowsInformationProtectionNetworkLearningSummaries in deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_UpdateWindowsInformationProtectionNetworkLearningSummaries parameters: - name: windowsInformationProtectionNetworkLearningSummary-id @@ -7417,6 +7621,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Delete navigation property windowsInformationProtectionNetworkLearningSummaries for deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_DeleteWindowsInformationProtectionNetworkLearningSummaries parameters: - name: windowsInformationProtectionNetworkLearningSummary-id @@ -7533,6 +7738,16 @@ components: items: $ref: '#/components/schemas/microsoft.graph.managedDevice' description: The list of managed devices. + importedWindowsAutopilotDeviceIdentities: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentity' + description: Collection of imported Windows autopilot devices. + windowsAutopilotDeviceIdentities: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsAutopilotDeviceIdentity' + description: The Windows autopilot device identities contained collection. notificationMessageTemplates: type: array items: @@ -7684,6 +7899,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -7697,6 +7916,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -7736,6 +7959,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -7750,6 +7977,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -7770,6 +8001,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -9369,6 +9604,10 @@ components: type: string description: Not yet documented nullable: true + certificateSerialNumber: + type: string + description: Certificate serial number. This property is read-only. + 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 @@ -9386,6 +9625,114 @@ components: additionalProperties: type: object description: Apple push notification certificate. + microsoft.graph.importedWindowsAutopilotDeviceIdentity: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: importedWindowsAutopilotDeviceIdentity + type: object + properties: + assignedUserPrincipalName: + type: string + description: UPN of the user the device will be assigned + nullable: true + groupTag: + type: string + description: Group Tag of the Windows autopilot device. + nullable: true + hardwareIdentifier: + type: string + description: Hardware Blob of the Windows autopilot device. + format: base64url + nullable: true + importId: + type: string + description: The Import Id of the Windows autopilot device. + nullable: true + productKey: + type: string + description: Product Key of the Windows autopilot device. + nullable: true + serialNumber: + type: string + description: Serial number of the Windows autopilot device. + nullable: true + state: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentityState' + additionalProperties: + type: object + description: Imported windows autopilot devices. + microsoft.graph.windowsAutopilotDeviceIdentity: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: windowsAutopilotDeviceIdentity + type: object + properties: + addressableUserName: + type: string + description: Addressable user name. + nullable: true + azureActiveDirectoryDeviceId: + type: string + description: AAD Device ID - to be deprecated + nullable: true + displayName: + type: string + description: Display Name + nullable: true + enrollmentState: + $ref: '#/components/schemas/microsoft.graph.enrollmentState' + groupTag: + type: string + description: Group Tag of the Windows autopilot device. + nullable: true + lastContactedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Intune Last Contacted Date Time of the Windows autopilot device. + format: date-time + managedDeviceId: + type: string + description: Managed Device ID + nullable: true + manufacturer: + type: string + description: Oem manufacturer of the Windows autopilot device. + nullable: true + model: + type: string + description: Model name of the Windows autopilot device. + nullable: true + productKey: + type: string + description: Product Key of the Windows autopilot device. + nullable: true + purchaseOrderIdentifier: + type: string + description: Purchase Order Identifier of the Windows autopilot device. + nullable: true + resourceName: + type: string + description: Resource Name. + nullable: true + serialNumber: + type: string + description: Serial number of the Windows autopilot device. + nullable: true + skuNumber: + type: string + description: SKU Number + nullable: true + systemFamily: + type: string + description: System Family + nullable: true + userPrincipalName: + type: string + description: User Principal Name. + nullable: true + additionalProperties: + type: object + description: The windowsAutopilotDeviceIdentity resource represents a Windows Autopilot Device. microsoft.graph.resourceOperation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -9576,6 +9923,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState @@ -10200,6 +10550,37 @@ components: - enabled - unresponsive type: string + microsoft.graph.importedWindowsAutopilotDeviceIdentityState: + title: importedWindowsAutopilotDeviceIdentityState + type: object + properties: + deviceErrorCode: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Device error code reported by Device Directory Service(DDS). + format: int32 + deviceErrorName: + type: string + description: Device error name reported by Device Directory Service(DDS). + nullable: true + deviceImportStatus: + $ref: '#/components/schemas/microsoft.graph.importedWindowsAutopilotDeviceIdentityImportStatus' + deviceRegistrationId: + type: string + description: Device Registration ID for successfully added device reported by Device Directory Service(DDS). + nullable: true + additionalProperties: + type: object + microsoft.graph.enrollmentState: + title: enrollmentState + enum: + - unknown + - enrolled + - pendingReset + - failed + - notContacted + type: string microsoft.graph.roleAssignment: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -10292,6 +10673,15 @@ components: description: The structure of this object is service-specific additionalProperties: type: object + microsoft.graph.importedWindowsAutopilotDeviceIdentityImportStatus: + title: importedWindowsAutopilotDeviceIdentityImportStatus + enum: + - unknown + - pending + - partial + - complete + - error + type: string microsoft.graph.resourceAction: title: resourceAction type: object diff --git a/openApiDocs/v1.0/Devices.CloudPrint.yml b/openApiDocs/v1.0/Devices.CloudPrint.yml index 1fca7f92f55..37fdeb53c15 100644 --- a/openApiDocs/v1.0/Devices.CloudPrint.yml +++ b/openApiDocs/v1.0/Devices.CloudPrint.yml @@ -95,6 +95,7 @@ paths: tags: - print.printConnector summary: Get connectors from print + description: The list of available print connectors. operationId: print_ListConnectors parameters: - $ref: '#/components/parameters/top' @@ -184,6 +185,7 @@ paths: tags: - print.printConnector summary: Create new navigation property to connectors for print + description: The list of available print connectors. operationId: print_CreateConnectors requestBody: description: New navigation property @@ -207,6 +209,7 @@ paths: tags: - print.printConnector summary: Get connectors from print + description: The list of available print connectors. operationId: print_GetConnectors parameters: - name: printConnector-id @@ -260,6 +263,7 @@ paths: tags: - print.printConnector summary: Update the navigation property connectors in print + description: The list of available print connectors. operationId: print_UpdateConnectors parameters: - name: printConnector-id @@ -286,6 +290,7 @@ paths: tags: - print.printConnector summary: Delete navigation property connectors for print + description: The list of available print connectors. operationId: print_DeleteConnectors parameters: - name: printConnector-id @@ -311,6 +316,7 @@ paths: tags: - print.printOperation summary: Get operations from print + description: The list of print long running operations. operationId: print_ListOperations parameters: - $ref: '#/components/parameters/top' @@ -388,6 +394,7 @@ paths: tags: - print.printOperation summary: Create new navigation property to operations for print + description: The list of print long running operations. operationId: print_CreateOperations requestBody: description: New navigation property @@ -411,6 +418,7 @@ paths: tags: - print.printOperation summary: Get operations from print + description: The list of print long running operations. operationId: print_GetOperations parameters: - name: printOperation-id @@ -460,6 +468,7 @@ paths: tags: - print.printOperation summary: Update the navigation property operations in print + description: The list of print long running operations. operationId: print_UpdateOperations parameters: - name: printOperation-id @@ -486,6 +495,7 @@ paths: tags: - print.printOperation summary: Delete navigation property operations for print + description: The list of print long running operations. operationId: print_DeleteOperations parameters: - name: printOperation-id @@ -511,6 +521,7 @@ paths: tags: - print.printer summary: Get printers from print + description: The list of printers registered in the tenant. operationId: print_ListPrinters parameters: - $ref: '#/components/parameters/top' @@ -626,6 +637,7 @@ paths: tags: - print.printer summary: Create new navigation property to printers for print + description: The list of printers registered in the tenant. operationId: print_CreatePrinters requestBody: description: New navigation property @@ -649,6 +661,7 @@ paths: tags: - print.printer summary: Get printers from print + description: The list of printers registered in the tenant. operationId: print_GetPrinters parameters: - name: printer-id @@ -733,6 +746,7 @@ paths: tags: - print.printer summary: Update the navigation property printers in print + description: The list of printers registered in the tenant. operationId: print_UpdatePrinters parameters: - name: printer-id @@ -759,6 +773,7 @@ paths: tags: - print.printer summary: Delete navigation property printers for print + description: The list of printers registered in the tenant. operationId: print_DeletePrinters parameters: - name: printer-id @@ -784,6 +799,7 @@ paths: tags: - print.printer summary: Get connectors from print + description: The connectors that are associated with the printer. operationId: print.printers_ListConnectors parameters: - name: printer-id @@ -881,6 +897,7 @@ paths: tags: - print.printer summary: Get ref of connectors from print + description: The connectors that are associated with the printer. operationId: print.printers_ListRefConnectors parameters: - name: printer-id @@ -947,6 +964,7 @@ paths: tags: - print.printer summary: Create new navigation property ref to connectors for print + description: The connectors that are associated with the printer. operationId: print.printers_CreateRefConnectors parameters: - name: printer-id @@ -1002,6 +1020,7 @@ paths: tags: - print.printer summary: Get shares from print + description: 'The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable.' operationId: print.printers_ListShares parameters: - name: printer-id @@ -1119,6 +1138,7 @@ paths: tags: - print.printer summary: Get ref of shares from print + description: 'The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable.' operationId: print.printers_ListRefShares parameters: - name: printer-id @@ -1193,6 +1213,7 @@ paths: tags: - print.printer summary: Create new navigation property ref to shares for print + description: 'The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable.' operationId: print.printers_CreateRefShares parameters: - name: printer-id @@ -1228,6 +1249,7 @@ paths: tags: - print.printer summary: Get taskTriggers from print + description: A list of task triggers that are associated with the printer. operationId: print.printers_ListTaskTriggers parameters: - name: printer-id @@ -1311,6 +1333,7 @@ paths: tags: - print.printer summary: Create new navigation property to taskTriggers for print + description: A list of task triggers that are associated with the printer. operationId: print.printers_CreateTaskTriggers parameters: - name: printer-id @@ -1342,6 +1365,7 @@ paths: tags: - print.printer summary: Get taskTriggers from print + description: A list of task triggers that are associated with the printer. operationId: print.printers_GetTaskTriggers parameters: - name: printer-id @@ -1405,6 +1429,7 @@ paths: tags: - print.printer summary: Update the navigation property taskTriggers in print + description: A list of task triggers that are associated with the printer. operationId: print.printers_UpdateTaskTriggers parameters: - name: printer-id @@ -1438,6 +1463,7 @@ paths: tags: - print.printer summary: Delete navigation property taskTriggers for print + description: A list of task triggers that are associated with the printer. operationId: print.printers_DeleteTaskTriggers parameters: - name: printer-id @@ -1470,6 +1496,7 @@ paths: tags: - print.printer summary: Get definition from print + description: An abstract definition that will be used to create a printTask when triggered by a print event. Read-only. operationId: print.printers.taskTriggers_GetDefinition parameters: - name: printer-id @@ -1535,6 +1562,7 @@ paths: tags: - print.printer summary: Get ref of definition from print + description: An abstract definition that will be used to create a printTask when triggered by a print event. Read-only. operationId: print.printers.taskTriggers_GetRefDefinition parameters: - name: printer-id @@ -1571,6 +1599,7 @@ paths: tags: - print.printer summary: Update the ref of navigation property definition in print + description: An abstract definition that will be used to create a printTask when triggered by a print event. Read-only. operationId: print.printers.taskTriggers_SetRefDefinition parameters: - name: printer-id @@ -1606,6 +1635,7 @@ paths: tags: - print.printer summary: Delete ref of navigation property definition for print + description: An abstract definition that will be used to create a printTask when triggered by a print event. Read-only. operationId: print.printers.taskTriggers_DeleteRefDefinition parameters: - name: printer-id @@ -1678,6 +1708,7 @@ paths: tags: - print.printService summary: Get services from print + description: The list of available Universal Print service endpoints. operationId: print_ListServices parameters: - $ref: '#/components/parameters/top' @@ -1751,6 +1782,7 @@ paths: tags: - print.printService summary: Create new navigation property to services for print + description: The list of available Universal Print service endpoints. operationId: print_CreateServices requestBody: description: New navigation property @@ -1774,6 +1806,7 @@ paths: tags: - print.printService summary: Get services from print + description: The list of available Universal Print service endpoints. operationId: print_GetServices parameters: - name: printService-id @@ -1828,6 +1861,7 @@ paths: tags: - print.printService summary: Update the navigation property services in print + description: The list of available Universal Print service endpoints. operationId: print_UpdateServices parameters: - name: printService-id @@ -1854,6 +1888,7 @@ paths: tags: - print.printService summary: Delete navigation property services for print + description: The list of available Universal Print service endpoints. operationId: print_DeleteServices parameters: - name: printService-id @@ -1879,6 +1914,7 @@ paths: tags: - print.printService summary: Get endpoints from print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_ListEndpoints parameters: - name: printService-id @@ -1963,6 +1999,7 @@ paths: tags: - print.printService summary: Create new navigation property to endpoints for print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_CreateEndpoints parameters: - name: printService-id @@ -1994,6 +2031,7 @@ paths: tags: - print.printService summary: Get endpoints from print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_GetEndpoints parameters: - name: printService-id @@ -2050,6 +2088,7 @@ paths: tags: - print.printService summary: Update the navigation property endpoints in print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_UpdateEndpoints parameters: - name: printService-id @@ -2083,6 +2122,7 @@ paths: tags: - print.printService summary: Delete navigation property endpoints for print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_DeleteEndpoints parameters: - name: printService-id @@ -2115,6 +2155,7 @@ paths: tags: - print.printerShare summary: Get shares from print + description: The list of printer shares registered in the tenant. operationId: print_ListShares parameters: - $ref: '#/components/parameters/top' @@ -2224,6 +2265,7 @@ paths: tags: - print.printerShare summary: Create new navigation property to shares for print + description: The list of printer shares registered in the tenant. operationId: print_CreateShares requestBody: description: New navigation property @@ -2247,6 +2289,7 @@ paths: tags: - print.printerShare summary: Get shares from print + description: The list of printer shares registered in the tenant. operationId: print_GetShares parameters: - name: printerShare-id @@ -2329,6 +2372,7 @@ paths: tags: - print.printerShare summary: Update the navigation property shares in print + description: The list of printer shares registered in the tenant. operationId: print_UpdateShares parameters: - name: printerShare-id @@ -2355,6 +2399,7 @@ paths: tags: - print.printerShare summary: Delete navigation property shares for print + description: The list of printer shares registered in the tenant. operationId: print_DeleteShares parameters: - name: printerShare-id @@ -2380,6 +2425,7 @@ paths: tags: - print.printerShare summary: Get allowedGroups from print + description: The groups whose users have access to print using the printer. operationId: print.shares_ListAllowedGroups parameters: - name: printerShare-id @@ -2627,6 +2673,7 @@ paths: tags: - print.printerShare summary: Get ref of allowedGroups from print + description: The groups whose users have access to print using the printer. operationId: print.shares_ListRefAllowedGroups parameters: - name: printerShare-id @@ -2757,6 +2804,7 @@ paths: tags: - print.printerShare summary: Create new navigation property ref to allowedGroups for print + description: The groups whose users have access to print using the printer. operationId: print.shares_CreateRefAllowedGroups parameters: - name: printerShare-id @@ -2792,6 +2840,7 @@ paths: tags: - print.printerShare summary: Get allowedUsers from print + description: The users who have access to print using the printer. operationId: print.shares_ListAllowedUsers parameters: - name: printerShare-id @@ -3082,6 +3131,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -3139,6 +3189,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -3171,6 +3222,7 @@ paths: tags: - print.printerShare summary: Get ref of allowedUsers from print + description: The users who have access to print using the printer. operationId: print.shares_ListRefAllowedUsers parameters: - name: printerShare-id @@ -3365,6 +3417,7 @@ paths: tags: - print.printerShare summary: Create new navigation property ref to allowedUsers for print + description: The users who have access to print using the printer. operationId: print.shares_CreateRefAllowedUsers parameters: - name: printerShare-id @@ -3400,6 +3453,7 @@ paths: tags: - print.printerShare summary: Get printer from print + description: The printer that this printer share is related to. operationId: print.shares_GetPrinter parameters: - name: printerShare-id @@ -3485,6 +3539,7 @@ paths: tags: - print.printerShare summary: Get ref of printer from print + description: The printer that this printer share is related to. operationId: print.shares_GetRefPrinter parameters: - name: printerShare-id @@ -3525,6 +3580,7 @@ paths: tags: - print.printerShare summary: Update the ref of navigation property printer in print + description: The printer that this printer share is related to. operationId: print.shares_SetRefPrinter parameters: - name: printerShare-id @@ -3553,6 +3609,7 @@ paths: tags: - print.printerShare summary: Delete ref of navigation property printer for print + description: The printer that this printer share is related to. operationId: print.shares_DeleteRefPrinter parameters: - name: printerShare-id @@ -3598,6 +3655,7 @@ paths: tags: - print.printTaskDefinition summary: Get taskDefinitions from print + description: List of abstract definition for a task that can be triggered when various events occur within Universal Print. operationId: print_ListTaskDefinitions parameters: - $ref: '#/components/parameters/top' @@ -3677,6 +3735,7 @@ paths: tags: - print.printTaskDefinition summary: Create new navigation property to taskDefinitions for print + description: List of abstract definition for a task that can be triggered when various events occur within Universal Print. operationId: print_CreateTaskDefinitions requestBody: description: New navigation property @@ -3700,6 +3759,7 @@ paths: tags: - print.printTaskDefinition summary: Get taskDefinitions from print + description: List of abstract definition for a task that can be triggered when various events occur within Universal Print. operationId: print_GetTaskDefinitions parameters: - name: printTaskDefinition-id @@ -3756,6 +3816,7 @@ paths: tags: - print.printTaskDefinition summary: Update the navigation property taskDefinitions in print + description: List of abstract definition for a task that can be triggered when various events occur within Universal Print. operationId: print_UpdateTaskDefinitions parameters: - name: printTaskDefinition-id @@ -3782,6 +3843,7 @@ paths: tags: - print.printTaskDefinition summary: Delete navigation property taskDefinitions for print + description: List of abstract definition for a task that can be triggered when various events occur within Universal Print. operationId: print_DeleteTaskDefinitions parameters: - name: printTaskDefinition-id @@ -3807,6 +3869,7 @@ paths: tags: - print.printTaskDefinition summary: Get tasks from print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_ListTasks parameters: - name: printTaskDefinition-id @@ -3895,6 +3958,7 @@ paths: tags: - print.printTaskDefinition summary: Create new navigation property to tasks for print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_CreateTasks parameters: - name: printTaskDefinition-id @@ -3926,6 +3990,7 @@ paths: tags: - print.printTaskDefinition summary: Get tasks from print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_GetTasks parameters: - name: printTaskDefinition-id @@ -3997,6 +4062,7 @@ paths: tags: - print.printTaskDefinition summary: Update the navigation property tasks in print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_UpdateTasks parameters: - name: printTaskDefinition-id @@ -4030,6 +4096,7 @@ paths: tags: - print.printTaskDefinition summary: Delete navigation property tasks for print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_DeleteTasks parameters: - name: printTaskDefinition-id @@ -4062,6 +4129,7 @@ paths: tags: - print.printTaskDefinition summary: Get definition from print + description: The printTaskDefinition that was used to create this task. Read-only. operationId: print.taskDefinitions.tasks_GetDefinition parameters: - name: printTaskDefinition-id @@ -4127,6 +4195,7 @@ paths: tags: - print.printTaskDefinition summary: Get ref of definition from print + description: The printTaskDefinition that was used to create this task. Read-only. operationId: print.taskDefinitions.tasks_GetRefDefinition parameters: - name: printTaskDefinition-id @@ -4163,6 +4232,7 @@ paths: tags: - print.printTaskDefinition summary: Update the ref of navigation property definition in print + description: The printTaskDefinition that was used to create this task. Read-only. operationId: print.taskDefinitions.tasks_SetRefDefinition parameters: - name: printTaskDefinition-id @@ -4198,6 +4268,7 @@ paths: tags: - print.printTaskDefinition summary: Delete ref of navigation property definition for print + description: The printTaskDefinition that was used to create this task. Read-only. operationId: print.taskDefinitions.tasks_DeleteRefDefinition parameters: - name: printTaskDefinition-id @@ -4230,6 +4301,7 @@ paths: tags: - print.printTaskDefinition summary: Get trigger from print + description: The printTaskTrigger that triggered this task's execution. Read-only. operationId: print.taskDefinitions.tasks_GetTrigger parameters: - name: printTaskDefinition-id @@ -4294,6 +4366,7 @@ paths: tags: - print.printTaskDefinition summary: Get ref of trigger from print + description: The printTaskTrigger that triggered this task's execution. Read-only. operationId: print.taskDefinitions.tasks_GetRefTrigger parameters: - name: printTaskDefinition-id @@ -4330,6 +4403,7 @@ paths: tags: - print.printTaskDefinition summary: Update the ref of navigation property trigger in print + description: The printTaskTrigger that triggered this task's execution. Read-only. operationId: print.taskDefinitions.tasks_SetRefTrigger parameters: - name: printTaskDefinition-id @@ -4365,6 +4439,7 @@ paths: tags: - print.printTaskDefinition summary: Delete ref of navigation property trigger for print + description: The printTaskTrigger that triggered this task's execution. Read-only. operationId: print.taskDefinitions.tasks_DeleteRefTrigger parameters: - name: printTaskDefinition-id @@ -4809,6 +4884,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -4910,7 +4986,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -4923,7 +4999,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -4935,12 +5011,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -4949,11 +5025,11 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -4969,7 +5045,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -4987,7 +5063,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -5006,7 +5082,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -5025,11 +5101,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -5037,7 +5113,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -5084,7 +5160,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -5093,7 +5169,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredLanguage: type: string @@ -5121,15 +5197,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -5137,7 +5213,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -5373,6 +5449,10 @@ components: $ref: '#/components/schemas/microsoft.graph.presence' authentication: $ref: '#/components/schemas/microsoft.graph.authentication' + chats: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' joinedTeams: type: array items: @@ -5723,7 +5803,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -6291,7 +6371,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true displayName: type: string @@ -6401,7 +6481,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -6607,7 +6687,7 @@ components: 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).' + description: 'Indicates whether 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 principalId: type: string @@ -6893,6 +6973,10 @@ components: type: string description: The mailFolder's display name. nullable: true + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. + nullable: true parentFolderId: type: string description: The unique identifier for the mailFolder's parent mailFolder. @@ -7298,6 +7382,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -7311,6 +7399,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -7350,6 +7442,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -7364,6 +7460,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -7384,6 +7484,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -7723,6 +7827,51 @@ components: $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 + 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 + topic: + type: string + description: (Optional) Subject or topic for the chat. Only available for group chats. + 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' @@ -7866,13 +8015,13 @@ components: items: type: string nullable: true - description: 'The media sizes supported by the printer. Supports standard size names for ISO and ANSI media sizes, along with any custom sizes supported by the associated printer.' + description: The media sizes supported by the printer. Supports standard size names for ISO and ANSI media sizes. Valid values are in the following table. mediaTypes: type: array items: type: string nullable: true - description: The media types supported by the printer. Valid values are described in the following table. + description: The media types supported by the printer. multipageLayouts: type: array items: @@ -7977,11 +8126,11 @@ components: nullable: true mediaSize: type: string - description: 'The default media size to use. Supports standard size names for ISO and ANSI media sizes, along with any custom sizes supported by the associated printer.' + description: The default media size to use. Supports standard size names for ISO and ANSI media sizes. Valid values are listed in the printerCapabilities topic. nullable: true mediaType: type: string - description: The default media (such as paper) type to print the document on. Valid values are described in the following table. + description: The default media (such as paper) type to print the document on. nullable: true multipageLayout: $ref: '#/components/schemas/microsoft.graph.printMultipageLayout' @@ -9851,6 +10000,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState @@ -10550,6 +10702,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: @@ -10645,6 +10798,130 @@ components: $ref: '#/components/schemas/microsoft.graph.device' additionalProperties: type: object + microsoft.graph.chatType: + title: chatType + enum: + - oneOnOne + - group + - meeting + - unknownFutureValue + type: string + 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 + 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: 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. 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.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.userScopeTeamsAppInstallation: allOf: - $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation' @@ -10913,11 +11190,11 @@ components: $ref: '#/components/schemas/microsoft.graph.printMargin' mediaSize: type: string - description: 'The media sizeto use when printing. Supports standard size names for ISO and ANSI media sizes, along with any custom sizes supported by the associated printer.' + description: The media sizeto use when printing. Supports standard size names for ISO and ANSI media sizes. Valid values are listed in the printerCapabilities topic. nullable: true mediaType: type: string - description: The default media (such as paper) type to print the document on. Valid values are described in the following table. + description: The default media (such as paper) type to print the document on. nullable: true multipageLayout: $ref: '#/components/schemas/microsoft.graph.printMultipageLayout' @@ -10946,27 +11223,21 @@ components: additionalProperties: type: object microsoft.graph.userIdentity: - title: userIdentity - type: object - properties: - displayName: - type: string - description: The identity's display name. Note that this may not always be available or up-to-date. - nullable: true - id: - type: string - description: Unique identifier for the identity. - nullable: true - 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 + 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.printJobStatus: title: printJobStatus type: object @@ -12524,162 +12795,46 @@ components: - private - unknownFutureValue type: string - microsoft.graph.chatMessage: + microsoft.graph.teamsApp: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: chatMessage + - title: teamsApp type: object properties: - attachments: + 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.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: + $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: + createdBy: + $ref: '#/components/schemas/microsoft.graph.identitySet' + description: type: string - description: 'If the message was sent in a chat, represents the identity of the chat.' + description: Verbose description of the application. 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])$' + displayName: type: string - description: Timestamp of when the chat message was created. - format: date-time + description: The name of the app provided by the app developer. 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. 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.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.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: - 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: + 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 @@ -12692,7 +12847,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -13528,7 +13683,7 @@ components: 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -13543,6 +13698,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -13558,128 +13714,225 @@ components: - weak - unknown type: string - 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 - 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 - topic: - type: string - description: (Optional) Subject or topic for the chat. Only available for group chats. - 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.wellknownListName: - title: wellknownListName - enum: - - none - - defaultList - - flaggedEmails - - unknownFutureValue - type: string - microsoft.graph.todoTask: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: todoTask - type: object - properties: - body: - $ref: '#/components/schemas/microsoft.graph.itemBody' - bodyLastModifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 task was last modified. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' - format: date-time - completedDateTime: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 task was created. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' - format: date-time - dueDateTime: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - importance: - $ref: '#/components/schemas/microsoft.graph.importance' - isReminderOn: - type: boolean - description: Set to true if an alert is set to remind the user of the task. - 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 task was last modified. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' - format: date-time - recurrence: - $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' - reminderDateTime: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - status: - $ref: '#/components/schemas/microsoft.graph.taskStatus' - title: - type: string - description: A brief description of the task. - nullable: true - extensions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.extension' - description: The collection of open extensions defined for the task. Nullable. - linkedResources: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.linkedResource' - description: A collection of resources linked to the task. - additionalProperties: - type: object - odata.error.detail: - required: - - code - - message + microsoft.graph.chatMessageAttachment: + title: chatMessageAttachment type: object properties: - code: + content: type: string - message: + description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' + nullable: true + contentType: type: string - target: + description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' + nullable: true + contentUrl: type: string - additionalProperties: - type: object - microsoft.graph.printMargin: + description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' + nullable: true + id: + type: string + description: Read-only. Unique id of the attachment. + nullable: true + name: + type: string + description: Name of the attachment. + nullable: true + thumbnailUrl: + type: string + description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' + 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: + - normal + - high + - urgent + - unknownFutureValue + type: string + microsoft.graph.chatMessageMention: + title: chatMessageMention + type: object + properties: + id: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' + format: int32 + nullable: true + mentioned: + $ref: '#/components/schemas/microsoft.graph.identitySet' + mentionText: + type: string + description: 'String used to represent the mention. For example, a user''s display name, a team name.' + nullable: true + additionalProperties: + type: object + microsoft.graph.chatMessageType: + title: chatMessageType + enum: + - message + - chatEvent + - typing + - unknownFutureValue + type: string + microsoft.graph.chatMessagePolicyViolation: + title: chatMessagePolicyViolation + type: object + properties: + dlpAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' + justificationText: + type: string + description: Justification text provided by the sender of the message when overriding a policy violation. + nullable: true + policyTip: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' + userAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' + verdictDetails: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' + additionalProperties: + type: object + microsoft.graph.chatMessageReaction: + title: chatMessageReaction + 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: 'The Timestamp type represents date and time information using ISO 8601 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 + description: 'Supported values are like, angry, sad, laugh, heart, surprised.' + user: + $ref: '#/components/schemas/microsoft.graph.identitySet' + additionalProperties: + type: object + microsoft.graph.chatMessageHostedContent: + allOf: + - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' + - title: chatMessageHostedContent + type: object + additionalProperties: + type: object + 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.wellknownListName: + title: wellknownListName + enum: + - none + - defaultList + - flaggedEmails + - unknownFutureValue + type: string + microsoft.graph.todoTask: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: todoTask + type: object + properties: + body: + $ref: '#/components/schemas/microsoft.graph.itemBody' + bodyLastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 task was last modified. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' + format: date-time + completedDateTime: + $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 task was created. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' + format: date-time + dueDateTime: + $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' + importance: + $ref: '#/components/schemas/microsoft.graph.importance' + isReminderOn: + type: boolean + description: Set to true if an alert is set to remind the user of the task. + 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 task was last modified. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' + format: date-time + recurrence: + $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' + reminderDateTime: + $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' + status: + $ref: '#/components/schemas/microsoft.graph.taskStatus' + title: + type: string + description: A brief description of the task. + nullable: true + extensions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.extension' + description: The collection of open extensions defined for the task. Nullable. + linkedResources: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.linkedResource' + description: A collection of resources linked to the task. + additionalProperties: + type: object + odata.error.detail: + required: + - code + - message + type: object + properties: + code: + type: string + message: + type: string + target: + type: string + additionalProperties: + type: object + microsoft.graph.printMargin: title: printMargin type: object properties: @@ -14295,148 +14548,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.chatMessageAttachment: - title: chatMessageAttachment - type: object - properties: - content: - type: string - description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' - nullable: true - contentType: - type: string - description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' - nullable: true - contentUrl: - type: string - description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' - nullable: true - id: - type: string - description: Read-only. Unique id of the attachment. - nullable: true - name: - type: string - description: Name of the attachment. - nullable: true - thumbnailUrl: - type: string - description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' - 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: - - normal - - high - - urgent - - unknownFutureValue - type: string - microsoft.graph.chatMessageMention: - title: chatMessageMention - type: object - properties: - id: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' - format: int32 - nullable: true - mentioned: - $ref: '#/components/schemas/microsoft.graph.identitySet' - mentionText: - type: string - description: 'String used to represent the mention. For example, a user''s display name, a team name.' - nullable: true - additionalProperties: - type: object - microsoft.graph.chatMessageType: - title: chatMessageType - enum: - - message - - chatEvent - - typing - - unknownFutureValue - type: string - microsoft.graph.chatMessagePolicyViolation: - title: chatMessagePolicyViolation - type: object - properties: - dlpAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' - justificationText: - type: string - description: Justification text provided by the sender of the message when overriding a policy violation. - nullable: true - policyTip: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' - userAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' - verdictDetails: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' - additionalProperties: - type: object - microsoft.graph.chatMessageReaction: - title: chatMessageReaction - 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: 'The Timestamp type represents date and time information using ISO 8601 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 - description: 'Supported values are like, angry, sad, laugh, heart, surprised.' - user: - $ref: '#/components/schemas/microsoft.graph.identitySet' - additionalProperties: - type: object - microsoft.graph.chatMessageHostedContent: - allOf: - - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' - - title: chatMessageHostedContent - type: object - additionalProperties: - type: object - 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.teamsAppDistributionMethod: title: teamsAppDistributionMethod enum: @@ -14589,14 +14700,66 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.chatType: - title: chatType + microsoft.graph.chatMessagePolicyViolationDlpActionTypes: + title: chatMessagePolicyViolationDlpActionTypes enum: - - oneOnOne - - group - - meeting - - unknownFutureValue + - 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.taskStatus: title: taskStatus enum: @@ -14870,66 +15033,6 @@ components: $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.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 38fb91608f1..542ed744736 100644 --- a/openApiDocs/v1.0/Devices.CorporateManagement.yml +++ b/openApiDocs/v1.0/Devices.CorporateManagement.yml @@ -131,6 +131,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get androidManagedAppProtections from deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_ListAndroidManagedAppProtections parameters: - $ref: '#/components/parameters/top' @@ -331,6 +332,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Create new navigation property to androidManagedAppProtections for deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_CreateAndroidManagedAppProtections requestBody: description: New navigation property @@ -354,6 +356,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get androidManagedAppProtections from deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_GetAndroidManagedAppProtections parameters: - name: androidManagedAppProtection-id @@ -461,6 +464,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Update the navigation property androidManagedAppProtections in deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_UpdateAndroidManagedAppProtections parameters: - name: androidManagedAppProtection-id @@ -487,6 +491,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Delete navigation property androidManagedAppProtections for deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_DeleteAndroidManagedAppProtections parameters: - name: androidManagedAppProtection-id @@ -512,6 +517,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_ListApps parameters: - name: androidManagedAppProtection-id @@ -596,6 +602,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Create new navigation property to apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_CreateApps parameters: - name: androidManagedAppProtection-id @@ -627,6 +634,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_GetApps parameters: - name: androidManagedAppProtection-id @@ -683,6 +691,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Update the navigation property apps in deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_UpdateApps parameters: - name: androidManagedAppProtection-id @@ -716,6 +725,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Delete navigation property apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_DeleteApps parameters: - name: androidManagedAppProtection-id @@ -748,6 +758,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.androidManagedAppProtections_GetDeploymentSummary parameters: - name: androidManagedAppProtection-id @@ -800,6 +811,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Update the navigation property deploymentSummary in deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.androidManagedAppProtections_UpdateDeploymentSummary parameters: - name: androidManagedAppProtection-id @@ -826,6 +838,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Delete navigation property deploymentSummary for deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.androidManagedAppProtections_DeleteDeploymentSummary parameters: - name: androidManagedAppProtection-id @@ -851,6 +864,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get defaultManagedAppProtections from deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_ListDefaultManagedAppProtections parameters: - $ref: '#/components/parameters/top' @@ -1052,6 +1066,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Create new navigation property to defaultManagedAppProtections for deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_CreateDefaultManagedAppProtections requestBody: description: New navigation property @@ -1075,6 +1090,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get defaultManagedAppProtections from deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_GetDefaultManagedAppProtections parameters: - name: defaultManagedAppProtection-id @@ -1177,6 +1193,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Update the navigation property defaultManagedAppProtections in deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_UpdateDefaultManagedAppProtections parameters: - name: defaultManagedAppProtection-id @@ -1203,6 +1220,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Delete navigation property defaultManagedAppProtections for deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_DeleteDefaultManagedAppProtections parameters: - name: defaultManagedAppProtection-id @@ -1228,6 +1246,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_ListApps parameters: - name: defaultManagedAppProtection-id @@ -1312,6 +1331,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Create new navigation property to apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_CreateApps parameters: - name: defaultManagedAppProtection-id @@ -1343,6 +1363,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_GetApps parameters: - name: defaultManagedAppProtection-id @@ -1399,6 +1420,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Update the navigation property apps in deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_UpdateApps parameters: - name: defaultManagedAppProtection-id @@ -1432,6 +1454,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Delete navigation property apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_DeleteApps parameters: - name: defaultManagedAppProtection-id @@ -1464,6 +1487,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.defaultManagedAppProtections_GetDeploymentSummary parameters: - name: defaultManagedAppProtection-id @@ -1516,6 +1540,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Update the navigation property deploymentSummary in deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.defaultManagedAppProtections_UpdateDeploymentSummary parameters: - name: defaultManagedAppProtection-id @@ -1542,6 +1567,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Delete navigation property deploymentSummary for deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.defaultManagedAppProtections_DeleteDeploymentSummary parameters: - name: defaultManagedAppProtection-id @@ -1567,6 +1593,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get iosManagedAppProtections from deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_ListIosManagedAppProtections parameters: - $ref: '#/components/parameters/top' @@ -1758,6 +1785,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Create new navigation property to iosManagedAppProtections for deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_CreateIosManagedAppProtections requestBody: description: New navigation property @@ -1781,6 +1809,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get iosManagedAppProtections from deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_GetIosManagedAppProtections parameters: - name: iosManagedAppProtection-id @@ -1885,6 +1914,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Update the navigation property iosManagedAppProtections in deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_UpdateIosManagedAppProtections parameters: - name: iosManagedAppProtection-id @@ -1911,6 +1941,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Delete navigation property iosManagedAppProtections for deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_DeleteIosManagedAppProtections parameters: - name: iosManagedAppProtection-id @@ -1936,6 +1967,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_ListApps parameters: - name: iosManagedAppProtection-id @@ -2020,6 +2052,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Create new navigation property to apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_CreateApps parameters: - name: iosManagedAppProtection-id @@ -2051,6 +2084,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_GetApps parameters: - name: iosManagedAppProtection-id @@ -2107,6 +2141,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Update the navigation property apps in deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_UpdateApps parameters: - name: iosManagedAppProtection-id @@ -2140,6 +2175,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Delete navigation property apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_DeleteApps parameters: - name: iosManagedAppProtection-id @@ -2172,6 +2208,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.iosManagedAppProtections_GetDeploymentSummary parameters: - name: iosManagedAppProtection-id @@ -2224,6 +2261,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Update the navigation property deploymentSummary in deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.iosManagedAppProtections_UpdateDeploymentSummary parameters: - name: iosManagedAppProtection-id @@ -2250,6 +2288,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Delete navigation property deploymentSummary for deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.iosManagedAppProtections_DeleteDeploymentSummary parameters: - name: iosManagedAppProtection-id @@ -2275,6 +2314,7 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Get managedAppPolicies from deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_ListManagedAppPolicies parameters: - $ref: '#/components/parameters/top' @@ -2361,6 +2401,7 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Create new navigation property to managedAppPolicies for deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_CreateManagedAppPolicies requestBody: description: New navigation property @@ -2384,6 +2425,7 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Get managedAppPolicies from deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_GetManagedAppPolicies parameters: - name: managedAppPolicy-id @@ -2436,6 +2478,7 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Update the navigation property managedAppPolicies in deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_UpdateManagedAppPolicies parameters: - name: managedAppPolicy-id @@ -2462,6 +2505,7 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Delete navigation property managedAppPolicies for deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_DeleteManagedAppPolicies parameters: - name: managedAppPolicy-id @@ -2623,6 +2667,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get managedAppRegistrations from deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_ListManagedAppRegistrations parameters: - $ref: '#/components/parameters/top' @@ -2736,6 +2781,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to managedAppRegistrations for deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_CreateManagedAppRegistrations requestBody: description: New navigation property @@ -2759,6 +2805,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get managedAppRegistrations from deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_GetManagedAppRegistrations parameters: - name: managedAppRegistration-id @@ -2837,6 +2884,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property managedAppRegistrations in deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_UpdateManagedAppRegistrations parameters: - name: managedAppRegistration-id @@ -2863,6 +2911,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property managedAppRegistrations for deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_DeleteManagedAppRegistrations parameters: - name: managedAppRegistration-id @@ -2888,6 +2937,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get appliedPolicies from deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_ListAppliedPolicies parameters: - name: managedAppRegistration-id @@ -2981,6 +3031,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to appliedPolicies for deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_CreateAppliedPolicies parameters: - name: managedAppRegistration-id @@ -3012,6 +3063,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get appliedPolicies from deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_GetAppliedPolicies parameters: - name: managedAppRegistration-id @@ -3071,6 +3123,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property appliedPolicies in deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_UpdateAppliedPolicies parameters: - name: managedAppRegistration-id @@ -3104,6 +3157,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property appliedPolicies for deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_DeleteAppliedPolicies parameters: - name: managedAppRegistration-id @@ -3300,6 +3354,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get intendedPolicies from deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_ListIntendedPolicies parameters: - name: managedAppRegistration-id @@ -3393,6 +3448,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to intendedPolicies for deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_CreateIntendedPolicies parameters: - name: managedAppRegistration-id @@ -3424,6 +3480,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get intendedPolicies from deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_GetIntendedPolicies parameters: - name: managedAppRegistration-id @@ -3483,6 +3540,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property intendedPolicies in deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_UpdateIntendedPolicies parameters: - name: managedAppRegistration-id @@ -3516,6 +3574,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property intendedPolicies for deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_DeleteIntendedPolicies parameters: - name: managedAppRegistration-id @@ -3712,6 +3771,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get operations from deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_ListOperations parameters: - name: managedAppRegistration-id @@ -3802,6 +3862,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to operations for deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_CreateOperations parameters: - name: managedAppRegistration-id @@ -3833,6 +3894,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get operations from deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_GetOperations parameters: - name: managedAppRegistration-id @@ -3891,6 +3953,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property operations in deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_UpdateOperations parameters: - name: managedAppRegistration-id @@ -3924,6 +3987,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property operations for deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_DeleteOperations parameters: - name: managedAppRegistration-id @@ -3975,6 +4039,7 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Get managedAppStatuses from deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_ListManagedAppStatuses parameters: - $ref: '#/components/parameters/top' @@ -4052,6 +4117,7 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Create new navigation property to managedAppStatuses for deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_CreateManagedAppStatuses requestBody: description: New navigation property @@ -4075,6 +4141,7 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Get managedAppStatuses from deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_GetManagedAppStatuses parameters: - name: managedAppStatus-id @@ -4124,6 +4191,7 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Update the navigation property managedAppStatuses in deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_UpdateManagedAppStatuses parameters: - name: managedAppStatus-id @@ -4150,6 +4218,7 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Delete navigation property managedAppStatuses for deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_DeleteManagedAppStatuses parameters: - name: managedAppStatus-id @@ -4175,6 +4244,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get managedEBooks from deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_ListManagedEBooks parameters: - $ref: '#/components/parameters/top' @@ -4281,6 +4351,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Create new navigation property to managedEBooks for deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_CreateManagedEBooks requestBody: description: New navigation property @@ -4304,6 +4375,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get managedEBooks from deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_GetManagedEBooks parameters: - name: managedEBook-id @@ -4385,6 +4457,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property managedEBooks in deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_UpdateManagedEBooks parameters: - name: managedEBook-id @@ -4411,6 +4484,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property managedEBooks for deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_DeleteManagedEBooks parameters: - name: managedEBook-id @@ -4436,6 +4510,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get assignments from deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_ListAssignments parameters: - name: managedEBook-id @@ -4520,6 +4595,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Create new navigation property to assignments for deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_CreateAssignments parameters: - name: managedEBook-id @@ -4551,6 +4627,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get assignments from deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_GetAssignments parameters: - name: managedEBook-id @@ -4607,6 +4684,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property assignments in deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_UpdateAssignments parameters: - name: managedEBook-id @@ -4640,6 +4718,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property assignments for deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_DeleteAssignments parameters: - name: managedEBook-id @@ -4672,6 +4751,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_ListDeviceStates parameters: - name: managedEBook-id @@ -4774,6 +4854,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Create new navigation property to deviceStates for deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_CreateDeviceStates parameters: - name: managedEBook-id @@ -4805,6 +4886,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_GetDeviceStates parameters: - name: managedEBook-id @@ -4867,6 +4949,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property deviceStates in deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_UpdateDeviceStates parameters: - name: managedEBook-id @@ -4900,6 +4983,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property deviceStates for deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_DeleteDeviceStates parameters: - name: managedEBook-id @@ -4932,6 +5016,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get installSummary from deviceAppManagement + description: Mobile App Install Summary. operationId: deviceAppManagement.managedEBooks_GetInstallSummary parameters: - name: managedEBook-id @@ -4985,6 +5070,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property installSummary in deviceAppManagement + description: Mobile App Install Summary. operationId: deviceAppManagement.managedEBooks_UpdateInstallSummary parameters: - name: managedEBook-id @@ -5011,6 +5097,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property installSummary for deviceAppManagement + description: Mobile App Install Summary. operationId: deviceAppManagement.managedEBooks_DeleteInstallSummary parameters: - name: managedEBook-id @@ -5070,6 +5157,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get userStateSummary from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_ListUserStateSummary parameters: - name: managedEBook-id @@ -5162,6 +5250,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Create new navigation property to userStateSummary for deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_CreateUserStateSummary parameters: - name: managedEBook-id @@ -5193,6 +5282,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get userStateSummary from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_GetUserStateSummary parameters: - name: managedEBook-id @@ -5259,6 +5349,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property userStateSummary in deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_UpdateUserStateSummary parameters: - name: managedEBook-id @@ -5292,6 +5383,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property userStateSummary for deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_DeleteUserStateSummary parameters: - name: managedEBook-id @@ -5324,6 +5416,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_ListDeviceStates parameters: - name: managedEBook-id @@ -5433,6 +5526,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Create new navigation property to deviceStates for deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_CreateDeviceStates parameters: - name: managedEBook-id @@ -5471,6 +5565,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_GetDeviceStates parameters: - name: managedEBook-id @@ -5540,6 +5635,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Update the navigation property deviceStates in deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_UpdateDeviceStates parameters: - name: managedEBook-id @@ -5580,6 +5676,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Delete navigation property deviceStates for deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_DeleteDeviceStates parameters: - name: managedEBook-id @@ -5619,6 +5716,7 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get mdmWindowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_ListMdmWindowsInformationProtectionPolicies parameters: - $ref: '#/components/parameters/top' @@ -5777,6 +5875,7 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Create new navigation property to mdmWindowsInformationProtectionPolicies for deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_CreateMdmWindowsInformationProtectionPolicies requestBody: description: New navigation property @@ -5800,6 +5899,7 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get mdmWindowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_GetMdmWindowsInformationProtectionPolicies parameters: - name: mdmWindowsInformationProtectionPolicy-id @@ -5893,6 +5993,7 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Update the navigation property mdmWindowsInformationProtectionPolicies in deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_UpdateMdmWindowsInformationProtectionPolicies parameters: - name: mdmWindowsInformationProtectionPolicy-id @@ -5919,6 +6020,7 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Delete navigation property mdmWindowsInformationProtectionPolicies for deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_DeleteMdmWindowsInformationProtectionPolicies parameters: - name: mdmWindowsInformationProtectionPolicy-id @@ -5944,6 +6046,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action syncMicrosoftStoreForBusinessApps + description: Syncs Intune account with Microsoft Store For Business operationId: deviceAppManagement_syncMicrosoftStoreForBusinessApps responses: '204': @@ -5956,6 +6059,7 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Get mobileAppCategories from deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_ListMobileAppCategories parameters: - $ref: '#/components/parameters/top' @@ -6033,6 +6137,7 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Create new navigation property to mobileAppCategories for deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_CreateMobileAppCategories requestBody: description: New navigation property @@ -6056,6 +6161,7 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Get mobileAppCategories from deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_GetMobileAppCategories parameters: - name: mobileAppCategory-id @@ -6105,6 +6211,7 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Update the navigation property mobileAppCategories in deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_UpdateMobileAppCategories parameters: - name: mobileAppCategory-id @@ -6131,6 +6238,7 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Delete navigation property mobileAppCategories for deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_DeleteMobileAppCategories parameters: - name: mobileAppCategory-id @@ -6156,6 +6264,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get mobileAppConfigurations from deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_ListMobileAppConfigurations parameters: - $ref: '#/components/parameters/top' @@ -6255,6 +6364,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to mobileAppConfigurations for deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_CreateMobileAppConfigurations requestBody: description: New navigation property @@ -6278,6 +6388,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get mobileAppConfigurations from deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_GetMobileAppConfigurations parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6362,6 +6473,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property mobileAppConfigurations in deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_UpdateMobileAppConfigurations parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6388,6 +6500,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property mobileAppConfigurations for deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_DeleteMobileAppConfigurations parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6413,6 +6526,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get assignments from deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_ListAssignments parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6494,6 +6608,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to assignments for deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_CreateAssignments parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6525,6 +6640,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get assignments from deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_GetAssignments parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6580,6 +6696,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property assignments in deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_UpdateAssignments parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6613,6 +6730,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property assignments for deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_DeleteAssignments parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6645,6 +6763,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_ListDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6744,6 +6863,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to deviceStatuses for deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_CreateDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6775,6 +6895,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_GetDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6836,6 +6957,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property deviceStatuses in deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_UpdateDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6869,6 +6991,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property deviceStatuses for deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_DeleteDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6901,6 +7024,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatusSummary from deviceAppManagement + description: App configuration device status summary. operationId: deviceAppManagement.mobileAppConfigurations_GetDeviceStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6955,6 +7079,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property deviceStatusSummary in deviceAppManagement + description: App configuration device status summary. operationId: deviceAppManagement.mobileAppConfigurations_UpdateDeviceStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -6981,6 +7106,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property deviceStatusSummary for deviceAppManagement + description: App configuration device status summary. operationId: deviceAppManagement.mobileAppConfigurations_DeleteDeviceStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -7040,6 +7166,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_ListUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -7133,6 +7260,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to userStatuses for deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_CreateUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -7164,6 +7292,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_GetUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -7223,6 +7352,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property userStatuses in deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_UpdateUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -7256,6 +7386,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property userStatuses for deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_DeleteUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id @@ -7288,6 +7419,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatusSummary from deviceAppManagement + description: App configuration user status summary. operationId: deviceAppManagement.mobileAppConfigurations_GetUserStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -7342,6 +7474,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property userStatusSummary in deviceAppManagement + description: App configuration user status summary. operationId: deviceAppManagement.mobileAppConfigurations_UpdateUserStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -7368,6 +7501,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property userStatusSummary for deviceAppManagement + description: App configuration user status summary. operationId: deviceAppManagement.mobileAppConfigurations_DeleteUserStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id @@ -7393,6 +7527,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get mobileApps from deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_ListMobileApps parameters: - $ref: '#/components/parameters/top' @@ -7507,6 +7642,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Create new navigation property to mobileApps for deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_CreateMobileApps requestBody: description: New navigation property @@ -7530,6 +7666,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get mobileApps from deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_GetMobileApps parameters: - name: mobileApp-id @@ -7603,6 +7740,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the navigation property mobileApps in deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_UpdateMobileApps parameters: - name: mobileApp-id @@ -7629,6 +7767,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete navigation property mobileApps for deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_DeleteMobileApps parameters: - name: mobileApp-id @@ -7654,6 +7793,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_ListAssignments parameters: - name: mobileApp-id @@ -7741,6 +7881,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_CreateAssignments parameters: - name: mobileApp-id @@ -7772,6 +7913,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_GetAssignments parameters: - name: mobileApp-id @@ -7829,6 +7971,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_UpdateAssignments parameters: - name: mobileApp-id @@ -7862,6 +8005,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_DeleteAssignments parameters: - name: mobileApp-id @@ -7894,6 +8038,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement + description: The list of categories for this app. operationId: deviceAppManagement.mobileApps_ListCategories parameters: - name: mobileApp-id @@ -7979,6 +8124,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get ref of categories from deviceAppManagement + description: The list of categories for this app. operationId: deviceAppManagement.mobileApps_ListRefCategories parameters: - name: mobileApp-id @@ -8037,6 +8183,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Create new navigation property ref to categories for deviceAppManagement + description: The list of categories for this app. operationId: deviceAppManagement.mobileApps_CreateRefCategories parameters: - name: mobileApp-id @@ -8106,6 +8253,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get targetedManagedAppConfigurations from deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_ListTargetedManagedAppConfigurations parameters: - $ref: '#/components/parameters/top' @@ -8207,6 +8355,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Create new navigation property to targetedManagedAppConfigurations for deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_CreateTargetedManagedAppConfigurations requestBody: description: New navigation property @@ -8230,6 +8379,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get targetedManagedAppConfigurations from deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_GetTargetedManagedAppConfigurations parameters: - name: targetedManagedAppConfiguration-id @@ -8304,6 +8454,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property targetedManagedAppConfigurations in deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_UpdateTargetedManagedAppConfigurations parameters: - name: targetedManagedAppConfiguration-id @@ -8330,6 +8481,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property targetedManagedAppConfigurations for deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_DeleteTargetedManagedAppConfigurations parameters: - name: targetedManagedAppConfiguration-id @@ -8355,6 +8507,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_ListApps parameters: - name: targetedManagedAppConfiguration-id @@ -8439,6 +8592,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Create new navigation property to apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_CreateApps parameters: - name: targetedManagedAppConfiguration-id @@ -8470,6 +8624,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_GetApps parameters: - name: targetedManagedAppConfiguration-id @@ -8526,6 +8681,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property apps in deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_UpdateApps parameters: - name: targetedManagedAppConfiguration-id @@ -8559,6 +8715,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property apps for deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_DeleteApps parameters: - name: targetedManagedAppConfiguration-id @@ -8591,6 +8748,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get assignments from deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_ListAssignments parameters: - name: targetedManagedAppConfiguration-id @@ -8672,6 +8830,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Create new navigation property to assignments for deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_CreateAssignments parameters: - name: targetedManagedAppConfiguration-id @@ -8703,6 +8862,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get assignments from deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_GetAssignments parameters: - name: targetedManagedAppConfiguration-id @@ -8758,6 +8918,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property assignments in deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_UpdateAssignments parameters: - name: targetedManagedAppConfiguration-id @@ -8791,6 +8952,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property assignments for deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_DeleteAssignments parameters: - name: targetedManagedAppConfiguration-id @@ -8823,6 +8985,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.targetedManagedAppConfigurations_GetDeploymentSummary parameters: - name: targetedManagedAppConfiguration-id @@ -8875,6 +9038,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property deploymentSummary in deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.targetedManagedAppConfigurations_UpdateDeploymentSummary parameters: - name: targetedManagedAppConfiguration-id @@ -8901,6 +9065,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property deploymentSummary for deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.targetedManagedAppConfigurations_DeleteDeploymentSummary parameters: - name: targetedManagedAppConfiguration-id @@ -8994,6 +9159,7 @@ paths: tags: - deviceAppManagement.vppToken summary: Get vppTokens from deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_ListVppTokens parameters: - $ref: '#/components/parameters/top' @@ -9098,6 +9264,7 @@ paths: tags: - deviceAppManagement.vppToken summary: Create new navigation property to vppTokens for deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_CreateVppTokens requestBody: description: New navigation property @@ -9121,6 +9288,7 @@ paths: tags: - deviceAppManagement.vppToken summary: Get vppTokens from deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_GetVppTokens parameters: - name: vppToken-id @@ -9179,6 +9347,7 @@ paths: tags: - deviceAppManagement.vppToken summary: Update the navigation property vppTokens in deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_UpdateVppTokens parameters: - name: vppToken-id @@ -9205,6 +9374,7 @@ paths: tags: - deviceAppManagement.vppToken summary: Delete navigation property vppTokens for deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_DeleteVppTokens parameters: - name: vppToken-id @@ -9230,6 +9400,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action syncLicenses + description: Syncs licenses associated with a specific appleVolumePurchaseProgramToken operationId: deviceAppManagement.vppTokens_syncLicenses parameters: - name: vppToken-id @@ -9254,6 +9425,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get windowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_ListWindowsInformationProtectionPolicies parameters: - $ref: '#/components/parameters/top' @@ -9448,6 +9620,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Create new navigation property to windowsInformationProtectionPolicies for deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_CreateWindowsInformationProtectionPolicies requestBody: description: New navigation property @@ -9471,6 +9644,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get windowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_GetWindowsInformationProtectionPolicies parameters: - name: windowsInformationProtectionPolicy-id @@ -9576,6 +9750,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Update the navigation property windowsInformationProtectionPolicies in deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_UpdateWindowsInformationProtectionPolicies parameters: - name: windowsInformationProtectionPolicy-id @@ -9602,6 +9777,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Delete navigation property windowsInformationProtectionPolicies for deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_DeleteWindowsInformationProtectionPolicies parameters: - name: windowsInformationProtectionPolicy-id @@ -9627,6 +9803,7 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Get deviceManagementTroubleshootingEvents from users + description: The list of troubleshooting events for this user. operationId: users_ListDeviceManagementTroubleshootingEvents parameters: - name: user-id @@ -9711,6 +9888,7 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Create new navigation property to deviceManagementTroubleshootingEvents for users + description: The list of troubleshooting events for this user. operationId: users_CreateDeviceManagementTroubleshootingEvents parameters: - name: user-id @@ -9742,6 +9920,7 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Get deviceManagementTroubleshootingEvents from users + description: The list of troubleshooting events for this user. operationId: users_GetDeviceManagementTroubleshootingEvents parameters: - name: user-id @@ -9798,6 +9977,7 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Update the navigation property deviceManagementTroubleshootingEvents in users + description: The list of troubleshooting events for this user. operationId: users_UpdateDeviceManagementTroubleshootingEvents parameters: - name: user-id @@ -9831,6 +10011,7 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Delete navigation property deviceManagementTroubleshootingEvents for users + description: The list of troubleshooting events for this user. operationId: users_DeleteDeviceManagementTroubleshootingEvents parameters: - name: user-id @@ -9863,6 +10044,7 @@ paths: tags: - users.managedAppRegistration summary: Get managedAppRegistrations from users + description: Zero or more managed app registrations that belong to the user. operationId: users_ListManagedAppRegistrations parameters: - name: user-id @@ -9984,6 +10166,7 @@ paths: tags: - users.managedAppRegistration summary: Get ref of managedAppRegistrations from users + description: Zero or more managed app registrations that belong to the user. operationId: users_ListRefManagedAppRegistrations parameters: - name: user-id @@ -10062,6 +10245,7 @@ paths: tags: - users.managedAppRegistration summary: Create new navigation property ref to managedAppRegistrations for users + description: Zero or more managed app registrations that belong to the user. operationId: users_CreateRefManagedAppRegistrations parameters: - name: user-id @@ -10097,6 +10281,7 @@ paths: tags: - users.managedDevice summary: Get managedDevices from users + description: The managed devices associated with the user. operationId: users_ListManagedDevices parameters: - name: user-id @@ -10159,6 +10344,8 @@ paths: - emailAddress desc - enrolledDateTime - enrolledDateTime desc + - ethernetMacAddress + - ethernetMacAddress desc - exchangeAccessState - exchangeAccessState desc - exchangeAccessStateReason @@ -10167,6 +10354,8 @@ paths: - exchangeLastSuccessfulSyncDateTime desc - freeStorageSpaceInBytes - freeStorageSpaceInBytes desc + - iccid + - iccid desc - imei - imei desc - isEncrypted @@ -10189,6 +10378,8 @@ paths: - meid desc - model - model desc + - notes + - notes desc - operatingSystem - operatingSystem desc - osVersion @@ -10197,6 +10388,8 @@ paths: - partnerReportedThreatState desc - phoneNumber - phoneNumber desc + - physicalMemoryInBytes + - physicalMemoryInBytes desc - remoteAssistanceSessionErrorDetails - remoteAssistanceSessionErrorDetails desc - remoteAssistanceSessionUrl @@ -10207,6 +10400,8 @@ paths: - subscriberCarrier desc - totalStorageSpaceInBytes - totalStorageSpaceInBytes desc + - udid + - udid desc - userDisplayName - userDisplayName desc - userId @@ -10245,10 +10440,12 @@ paths: - easDeviceId - emailAddress - enrolledDateTime + - ethernetMacAddress - exchangeAccessState - exchangeAccessStateReason - exchangeLastSuccessfulSyncDateTime - freeStorageSpaceInBytes + - iccid - imei - isEncrypted - isSupervised @@ -10260,15 +10457,18 @@ paths: - manufacturer - meid - model + - notes - operatingSystem - osVersion - partnerReportedThreatState - phoneNumber + - physicalMemoryInBytes - remoteAssistanceSessionErrorDetails - remoteAssistanceSessionUrl - serialNumber - subscriberCarrier - totalStorageSpaceInBytes + - udid - userDisplayName - userId - userPrincipalName @@ -10319,6 +10519,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to managedDevices for users + description: The managed devices associated with the user. operationId: users_CreateManagedDevices parameters: - name: user-id @@ -10350,6 +10551,7 @@ paths: tags: - users.managedDevice summary: Get managedDevices from users + description: The managed devices associated with the user. operationId: users_GetManagedDevices parameters: - name: user-id @@ -10395,10 +10597,12 @@ paths: - easDeviceId - emailAddress - enrolledDateTime + - ethernetMacAddress - exchangeAccessState - exchangeAccessStateReason - exchangeLastSuccessfulSyncDateTime - freeStorageSpaceInBytes + - iccid - imei - isEncrypted - isSupervised @@ -10410,15 +10614,18 @@ paths: - manufacturer - meid - model + - notes - operatingSystem - osVersion - partnerReportedThreatState - phoneNumber + - physicalMemoryInBytes - remoteAssistanceSessionErrorDetails - remoteAssistanceSessionUrl - serialNumber - subscriberCarrier - totalStorageSpaceInBytes + - udid - userDisplayName - userId - userPrincipalName @@ -10472,6 +10679,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property managedDevices in users + description: The managed devices associated with the user. operationId: users_UpdateManagedDevices parameters: - name: user-id @@ -10505,6 +10713,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property managedDevices for users + description: The managed devices associated with the user. operationId: users_DeleteManagedDevices parameters: - name: user-id @@ -10537,6 +10746,7 @@ paths: tags: - users.managedDevice summary: Get deviceCategory from users + description: Device category operationId: users.managedDevices_GetDeviceCategory parameters: - name: user-id @@ -10593,6 +10803,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property deviceCategory in users + description: Device category operationId: users.managedDevices_UpdateDeviceCategory parameters: - name: user-id @@ -10626,6 +10837,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property deviceCategory for users + description: Device category operationId: users.managedDevices_DeleteDeviceCategory parameters: - name: user-id @@ -10658,6 +10870,7 @@ paths: tags: - users.managedDevice summary: Get deviceCompliancePolicyStates from users + description: Device compliance policy states for this device. operationId: users.managedDevices_ListDeviceCompliancePolicyStates parameters: - name: user-id @@ -10761,6 +10974,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to deviceCompliancePolicyStates for users + description: Device compliance policy states for this device. operationId: users.managedDevices_CreateDeviceCompliancePolicyStates parameters: - name: user-id @@ -10799,6 +11013,7 @@ paths: tags: - users.managedDevice summary: Get deviceCompliancePolicyStates from users + description: Device compliance policy states for this device. operationId: users.managedDevices_GetDeviceCompliancePolicyStates parameters: - name: user-id @@ -10866,6 +11081,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property deviceCompliancePolicyStates in users + description: Device compliance policy states for this device. operationId: users.managedDevices_UpdateDeviceCompliancePolicyStates parameters: - name: user-id @@ -10906,6 +11122,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property deviceCompliancePolicyStates for users + description: Device compliance policy states for this device. operationId: users.managedDevices_DeleteDeviceCompliancePolicyStates parameters: - name: user-id @@ -10945,6 +11162,7 @@ paths: tags: - users.managedDevice summary: Get deviceConfigurationStates from users + description: Device configuration states for this device. operationId: users.managedDevices_ListDeviceConfigurationStates parameters: - name: user-id @@ -11048,6 +11266,7 @@ paths: tags: - users.managedDevice summary: Create new navigation property to deviceConfigurationStates for users + description: Device configuration states for this device. operationId: users.managedDevices_CreateDeviceConfigurationStates parameters: - name: user-id @@ -11086,6 +11305,7 @@ paths: tags: - users.managedDevice summary: Get deviceConfigurationStates from users + description: Device configuration states for this device. operationId: users.managedDevices_GetDeviceConfigurationStates parameters: - name: user-id @@ -11153,6 +11373,7 @@ paths: tags: - users.managedDevice summary: Update the navigation property deviceConfigurationStates in users + description: Device configuration states for this device. operationId: users.managedDevices_UpdateDeviceConfigurationStates parameters: - name: user-id @@ -11193,6 +11414,7 @@ paths: tags: - users.managedDevice summary: Delete navigation property deviceConfigurationStates for users + description: Device configuration states for this device. operationId: users.managedDevices_DeleteDeviceConfigurationStates parameters: - name: user-id @@ -12434,6 +12656,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -12447,6 +12673,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -12486,6 +12716,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -12500,6 +12734,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -12520,6 +12758,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -12800,10 +13042,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -13107,6 +13349,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState diff --git a/openApiDocs/v1.0/DirectoryObjects.yml b/openApiDocs/v1.0/DirectoryObjects.yml index ccbccb06670..7f29d126ca7 100644 --- a/openApiDocs/v1.0/DirectoryObjects.yml +++ b/openApiDocs/v1.0/DirectoryObjects.yml @@ -15,10 +15,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -118,6 +117,7 @@ paths: tags: - directoryObjects.directoryObject summary: Get entity from directoryObjects by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryObjects.directoryObject_GetDirectoryObject parameters: - name: directoryObject-id @@ -129,10 +129,9 @@ paths: x-ms-docs-key-type: directoryObject - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -176,6 +175,7 @@ paths: tags: - directoryObjects.directoryObject summary: Update entity in directoryObjects + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryObjects.directoryObject_UpdateDirectoryObject parameters: - name: directoryObject-id @@ -202,6 +202,7 @@ paths: tags: - directoryObjects.directoryObject summary: Delete entity from directoryObjects + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryObjects.directoryObject_DeleteDirectoryObject parameters: - name: directoryObject-id diff --git a/openApiDocs/v1.0/Education.yml b/openApiDocs/v1.0/Education.yml index d5a80fcf1b0..e65ffed7561 100644 --- a/openApiDocs/v1.0/Education.yml +++ b/openApiDocs/v1.0/Education.yml @@ -23,7 +23,6 @@ paths: type: array items: enum: - - id - classes - me - schools @@ -360,6 +359,7 @@ paths: tags: - education.educationClass summary: Get group from education + description: The underlying Microsoft 365 group object. operationId: education.classes_GetGroup parameters: - name: educationClass-id @@ -609,6 +609,7 @@ paths: tags: - education.educationClass summary: Get ref of group from education + description: The underlying Microsoft 365 group object. operationId: education.classes_GetRefGroup parameters: - name: educationClass-id @@ -741,6 +742,7 @@ paths: tags: - education.educationClass summary: Update the ref of navigation property group in education + description: The underlying Microsoft 365 group object. operationId: education.classes_SetRefGroup parameters: - name: educationClass-id @@ -769,6 +771,7 @@ paths: tags: - education.educationClass summary: Delete ref of navigation property group for education + description: The underlying Microsoft 365 group object. operationId: education.classes_DeleteRefGroup parameters: - name: educationClass-id @@ -794,6 +797,7 @@ paths: tags: - education.educationClass summary: Get members from education + description: All users in the class. Nullable. operationId: education.classes_ListMembers parameters: - name: educationClass-id @@ -974,6 +978,7 @@ paths: tags: - education.educationClass summary: Get ref of members from education + description: All users in the class. Nullable. operationId: education.classes_ListRefMembers parameters: - name: educationClass-id @@ -1090,6 +1095,7 @@ paths: tags: - education.educationClass summary: Create new navigation property ref to members for education + description: All users in the class. Nullable. operationId: education.classes_CreateRefMembers parameters: - name: educationClass-id @@ -1151,6 +1157,7 @@ paths: tags: - education.educationClass summary: Get schools from education + description: All schools that this class is associated with. Nullable. operationId: education.classes_ListSchools parameters: - name: educationClass-id @@ -1281,6 +1288,7 @@ paths: tags: - education.educationClass summary: Get ref of schools from education + description: All schools that this class is associated with. Nullable. operationId: education.classes_ListRefSchools parameters: - name: educationClass-id @@ -1365,6 +1373,7 @@ paths: tags: - education.educationClass summary: Create new navigation property ref to schools for education + description: All schools that this class is associated with. Nullable. operationId: education.classes_CreateRefSchools parameters: - name: educationClass-id @@ -1426,6 +1435,7 @@ paths: tags: - education.educationClass summary: Get teachers from education + description: All teachers in the class. Nullable. operationId: education.classes_ListTeachers parameters: - name: educationClass-id @@ -1606,6 +1616,7 @@ paths: tags: - education.educationClass summary: Get ref of teachers from education + description: All teachers in the class. Nullable. operationId: education.classes_ListRefTeachers parameters: - name: educationClass-id @@ -1722,6 +1733,7 @@ paths: tags: - education.educationClass summary: Create new navigation property ref to teachers for education + description: All teachers in the class. Nullable. operationId: education.classes_CreateRefTeachers parameters: - name: educationClass-id @@ -1925,6 +1937,7 @@ paths: tags: - education.educationUser summary: Get classes from education + description: Classes to which the user belongs. Nullable. operationId: education.me_ListClasses parameters: - $ref: '#/components/parameters/top' @@ -2041,6 +2054,7 @@ paths: tags: - education.educationUser summary: Get ref of classes from education + description: Classes to which the user belongs. Nullable. operationId: education.me_ListRefClasses parameters: - $ref: '#/components/parameters/top' @@ -2112,6 +2126,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to classes for education + description: Classes to which the user belongs. Nullable. operationId: education.me_CreateRefClasses requestBody: description: New navigation property ref value @@ -2157,6 +2172,7 @@ paths: tags: - education.educationUser summary: Get schools from education + description: Schools to which the user belongs. Nullable. operationId: education.me_ListSchools parameters: - $ref: '#/components/parameters/top' @@ -2280,6 +2296,7 @@ paths: tags: - education.educationUser summary: Get ref of schools from education + description: Schools to which the user belongs. Nullable. operationId: education.me_ListRefSchools parameters: - $ref: '#/components/parameters/top' @@ -2357,6 +2374,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to schools for education + description: Schools to which the user belongs. Nullable. operationId: education.me_CreateRefSchools requestBody: description: New navigation property ref value @@ -2402,6 +2420,7 @@ paths: tags: - education.educationUser summary: Get taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.me_ListTaughtClasses parameters: - $ref: '#/components/parameters/top' @@ -2518,6 +2537,7 @@ paths: tags: - education.educationUser summary: Get ref of taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.me_ListRefTaughtClasses parameters: - $ref: '#/components/parameters/top' @@ -2589,6 +2609,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to taughtClasses for education + description: Classes for which the user is a teacher. operationId: education.me_CreateRefTaughtClasses requestBody: description: New navigation property ref value @@ -2634,6 +2655,7 @@ paths: tags: - education.educationUser summary: Get user from education + description: The directory user corresponding to this user. operationId: education.me_GetUser parameters: - name: $select @@ -2759,6 +2781,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -2816,6 +2839,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -2912,6 +2936,8 @@ paths: operationId: education.me.User.GetPresence authentication: operationId: education.me.User.GetAuthentication + chats: + operationId: education.me.User.ListChats joinedTeams: operationId: education.me.User.ListJoinedTeams teamwork: @@ -2926,6 +2952,7 @@ paths: tags: - education.educationUser summary: Get ref of user from education + description: The directory user corresponding to this user. operationId: education.me_GetRefUser responses: '200': @@ -3019,6 +3046,8 @@ paths: operationId: education.me.User.GetPresence authentication: operationId: education.me.User.GetAuthentication + chats: + operationId: education.me.User.ListChats joinedTeams: operationId: education.me.User.ListJoinedTeams teamwork: @@ -3032,6 +3061,7 @@ paths: tags: - education.educationUser summary: Update the ref of navigation property user in education + description: The directory user corresponding to this user. operationId: education.me_SetRefUser requestBody: description: New navigation property ref values @@ -3052,6 +3082,7 @@ paths: tags: - education.educationUser summary: Delete ref of navigation property user for education + description: The directory user corresponding to this user. operationId: education.me_DeleteRefUser parameters: - name: If-Match @@ -3347,6 +3378,7 @@ paths: tags: - education.educationSchool summary: Get administrativeUnit from education + description: The underlying administrativeUnit for this school. operationId: education.schools_GetAdministrativeUnit parameters: - name: educationSchool-id @@ -3418,6 +3450,7 @@ paths: tags: - education.educationSchool summary: Get ref of administrativeUnit from education + description: The underlying administrativeUnit for this school. operationId: education.schools_GetRefAdministrativeUnit parameters: - name: educationSchool-id @@ -3454,6 +3487,7 @@ paths: tags: - education.educationSchool summary: Update the ref of navigation property administrativeUnit in education + description: The underlying administrativeUnit for this school. operationId: education.schools_SetRefAdministrativeUnit parameters: - name: educationSchool-id @@ -3482,6 +3516,7 @@ paths: tags: - education.educationSchool summary: Delete ref of navigation property administrativeUnit for education + description: The underlying administrativeUnit for this school. operationId: education.schools_DeleteRefAdministrativeUnit parameters: - name: educationSchool-id @@ -3507,6 +3542,7 @@ paths: tags: - education.educationSchool summary: Get classes from education + description: Classes taught at the school. Nullable. operationId: education.schools_ListClasses parameters: - name: educationSchool-id @@ -3630,6 +3666,7 @@ paths: tags: - education.educationSchool summary: Get ref of classes from education + description: Classes taught at the school. Nullable. operationId: education.schools_ListRefClasses parameters: - name: educationSchool-id @@ -3708,6 +3745,7 @@ paths: tags: - education.educationSchool summary: Create new navigation property ref to classes for education + description: Classes taught at the school. Nullable. operationId: education.schools_CreateRefClasses parameters: - name: educationSchool-id @@ -3769,6 +3807,7 @@ paths: tags: - education.educationSchool summary: Get users from education + description: Users in the school. Nullable. operationId: education.schools_ListUsers parameters: - name: educationSchool-id @@ -3949,6 +3988,7 @@ paths: tags: - education.educationSchool summary: Get ref of users from education + description: Users in the school. Nullable. operationId: education.schools_ListRefUsers parameters: - name: educationSchool-id @@ -4065,6 +4105,7 @@ paths: tags: - education.educationSchool summary: Create new navigation property ref to users for education + description: Users in the school. Nullable. operationId: education.schools_CreateRefUsers parameters: - name: educationSchool-id @@ -4493,6 +4534,7 @@ paths: tags: - education.educationUser summary: Get classes from education + description: Classes to which the user belongs. Nullable. operationId: education.users_ListClasses parameters: - name: educationUser-id @@ -4616,6 +4658,7 @@ paths: tags: - education.educationUser summary: Get ref of classes from education + description: Classes to which the user belongs. Nullable. operationId: education.users_ListRefClasses parameters: - name: educationUser-id @@ -4694,6 +4737,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to classes for education + description: Classes to which the user belongs. Nullable. operationId: education.users_CreateRefClasses parameters: - name: educationUser-id @@ -4755,6 +4799,7 @@ paths: tags: - education.educationUser summary: Get schools from education + description: Schools to which the user belongs. Nullable. operationId: education.users_ListSchools parameters: - name: educationUser-id @@ -4885,6 +4930,7 @@ paths: tags: - education.educationUser summary: Get ref of schools from education + description: Schools to which the user belongs. Nullable. operationId: education.users_ListRefSchools parameters: - name: educationUser-id @@ -4969,6 +5015,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to schools for education + description: Schools to which the user belongs. Nullable. operationId: education.users_CreateRefSchools parameters: - name: educationUser-id @@ -5030,6 +5077,7 @@ paths: tags: - education.educationUser summary: Get taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.users_ListTaughtClasses parameters: - name: educationUser-id @@ -5153,6 +5201,7 @@ paths: tags: - education.educationUser summary: Get ref of taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.users_ListRefTaughtClasses parameters: - name: educationUser-id @@ -5231,6 +5280,7 @@ paths: tags: - education.educationUser summary: Create new navigation property ref to taughtClasses for education + description: Classes for which the user is a teacher. operationId: education.users_CreateRefTaughtClasses parameters: - name: educationUser-id @@ -5292,6 +5342,7 @@ paths: tags: - education.educationUser summary: Get user from education + description: The directory user corresponding to this user. operationId: education.users_GetUser parameters: - name: educationUser-id @@ -5424,6 +5475,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -5481,6 +5533,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -5661,6 +5714,10 @@ paths: operationId: education.users.User.GetAuthentication parameters: educationUser-id: $request.path.educationUser-id + chats: + operationId: education.users.User.ListChats + parameters: + educationUser-id: $request.path.educationUser-id joinedTeams: operationId: education.users.User.ListJoinedTeams parameters: @@ -5681,6 +5738,7 @@ paths: tags: - education.educationUser summary: Get ref of user from education + description: The directory user corresponding to this user. operationId: education.users_GetRefUser parameters: - name: educationUser-id @@ -5866,6 +5924,10 @@ paths: operationId: education.users.User.GetAuthentication parameters: educationUser-id: $request.path.educationUser-id + chats: + operationId: education.users.User.ListChats + parameters: + educationUser-id: $request.path.educationUser-id joinedTeams: operationId: education.users.User.ListJoinedTeams parameters: @@ -5885,6 +5947,7 @@ paths: tags: - education.educationUser summary: Update the ref of navigation property user in education + description: The directory user corresponding to this user. operationId: education.users_SetRefUser parameters: - name: educationUser-id @@ -5913,6 +5976,7 @@ paths: tags: - education.educationUser summary: Delete ref of navigation property user for education + description: The directory user corresponding to this user. operationId: education.users_DeleteRefUser parameters: - name: educationUser-id @@ -5954,30 +6018,25 @@ paths: components: schemas: microsoft.graph.educationRoot: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: educationRoot - type: object - properties: - classes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationClass' - description: Read-only. Nullable. - me: - $ref: '#/components/schemas/microsoft.graph.educationUser' - schools: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationSchool' - description: Read-only. Nullable. - users: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationUser' - description: Read-only. Nullable. - additionalProperties: - type: object + title: educationRoot + type: object + properties: + classes: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationClass' + me: + $ref: '#/components/schemas/microsoft.graph.educationUser' + schools: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationSchool' + users: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationUser' + additionalProperties: + type: object microsoft.graph.educationClass: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -6239,6 +6298,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -6416,6 +6476,7 @@ components: $ref: '#/components/schemas/microsoft.graph.physicalAddress' showInAddressList: type: boolean + description: 'true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false.' nullable: true student: $ref: '#/components/schemas/microsoft.graph.educationStudent' @@ -6533,7 +6594,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -6546,7 +6607,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -6558,12 +6619,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -6572,11 +6633,11 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -6592,7 +6653,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -6610,7 +6671,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -6629,7 +6690,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -6648,11 +6709,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -6660,7 +6721,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -6707,7 +6768,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -6716,7 +6777,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredLanguage: type: string @@ -6744,15 +6805,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -6760,7 +6821,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -6996,6 +7057,10 @@ components: $ref: '#/components/schemas/microsoft.graph.presence' authentication: $ref: '#/components/schemas/microsoft.graph.authentication' + chats: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' joinedTeams: type: array items: @@ -7268,7 +7333,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -7836,7 +7901,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true displayName: type: string @@ -8063,6 +8128,7 @@ components: $ref: '#/components/schemas/microsoft.graph.educationExternalSource' externalSourceDetail: type: string + description: The name of the external source this resources was generated from. nullable: true additionalProperties: type: object @@ -8090,7 +8156,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -8260,7 +8326,7 @@ components: 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).' + description: 'Indicates whether 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 principalId: type: string @@ -8546,6 +8612,10 @@ components: type: string description: The mailFolder's display name. nullable: true + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. + nullable: true parentFolderId: type: string description: The unique identifier for the mailFolder's parent mailFolder. @@ -8951,6 +9021,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -8964,6 +9038,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -9003,6 +9081,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -9017,6 +9099,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -9037,6 +9123,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -9376,6 +9466,51 @@ components: $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 + 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 + topic: + type: string + description: (Optional) Subject or topic for the chat. Only available for group chats. + 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' @@ -11171,6 +11306,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState @@ -11870,6 +12008,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: @@ -11965,6 +12104,130 @@ components: $ref: '#/components/schemas/microsoft.graph.device' additionalProperties: type: object + microsoft.graph.chatType: + title: chatType + enum: + - oneOnOne + - group + - meeting + - unknownFutureValue + type: string + 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 + 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: 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. 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.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.userScopeTeamsAppInstallation: allOf: - $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation' @@ -13546,137 +13809,21 @@ components: - private - unknownFutureValue type: string - microsoft.graph.chatMessage: + microsoft.graph.teamsApp: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: chatMessage + - title: teamsApp 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 - 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])$' + displayName: type: string - description: Timestamp of when the chat message was created. - format: date-time + description: The name of the catalog app provided by the app developer in the Microsoft Teams zip app package. 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])$' + distributionMethod: + $ref: '#/components/schemas/microsoft.graph.teamsAppDistributionMethod' + externalId: 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. 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.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.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. + description: The ID of the catalog provided by the app developer in the Microsoft Teams zip app package. nullable: true appDefinitions: type: array @@ -13714,7 +13861,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -14550,7 +14697,7 @@ components: 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -14565,6 +14712,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -14580,132 +14728,229 @@ components: - weak - unknown type: string - 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 - 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 - topic: - type: string - description: (Optional) Subject or topic for the chat. Only available for group chats. - 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.wellknownListName: - title: wellknownListName - enum: - - none - - defaultList - - flaggedEmails - - unknownFutureValue - type: string - microsoft.graph.todoTask: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: todoTask - type: object - properties: - body: - $ref: '#/components/schemas/microsoft.graph.itemBody' - bodyLastModifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 task was last modified. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' - format: date-time - completedDateTime: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 task was created. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' - format: date-time - dueDateTime: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - importance: - $ref: '#/components/schemas/microsoft.graph.importance' - isReminderOn: - type: boolean - description: Set to true if an alert is set to remind the user of the task. - 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 task was last modified. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' - format: date-time - recurrence: - $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' - reminderDateTime: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - status: - $ref: '#/components/schemas/microsoft.graph.taskStatus' - title: - type: string - description: A brief description of the task. - nullable: true - extensions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.extension' - description: The collection of open extensions defined for the task. Nullable. - linkedResources: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.linkedResource' - description: A collection of resources linked to the task. - additionalProperties: - type: object - odata.error.detail: - required: - - code - - message + microsoft.graph.chatMessageAttachment: + title: chatMessageAttachment type: object properties: - code: + content: type: string - message: + description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' + nullable: true + contentType: type: string - target: + description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' + nullable: true + contentUrl: + type: string + description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' + nullable: true + id: + type: string + description: Read-only. Unique id of the attachment. + nullable: true + name: + type: string + description: Name of the attachment. + nullable: true + thumbnailUrl: type: string + description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' + nullable: true additionalProperties: type: object - microsoft.graph.attendeeType: - title: attendeeType + 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: - - required - - optional + - normal + - high + - urgent + - unknownFutureValue + type: string + microsoft.graph.chatMessageMention: + title: chatMessageMention + type: object + properties: + id: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' + format: int32 + nullable: true + mentioned: + $ref: '#/components/schemas/microsoft.graph.identitySet' + mentionText: + type: string + description: 'String used to represent the mention. For example, a user''s display name, a team name.' + nullable: true + additionalProperties: + type: object + microsoft.graph.chatMessageType: + title: chatMessageType + enum: + - message + - chatEvent + - typing + - unknownFutureValue + type: string + microsoft.graph.chatMessagePolicyViolation: + title: chatMessagePolicyViolation + type: object + properties: + dlpAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' + justificationText: + type: string + description: Justification text provided by the sender of the message when overriding a policy violation. + nullable: true + policyTip: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' + userAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' + verdictDetails: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' + additionalProperties: + type: object + microsoft.graph.chatMessageReaction: + title: chatMessageReaction + 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: 'The Timestamp type represents date and time information using ISO 8601 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 + description: 'Supported values are like, angry, sad, laugh, heart, surprised.' + user: + $ref: '#/components/schemas/microsoft.graph.identitySet' + additionalProperties: + type: object + microsoft.graph.chatMessageHostedContent: + allOf: + - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' + - title: chatMessageHostedContent + type: object + additionalProperties: + type: object + 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.wellknownListName: + title: wellknownListName + enum: + - none + - defaultList + - flaggedEmails + - unknownFutureValue + type: string + microsoft.graph.todoTask: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: todoTask + type: object + properties: + body: + $ref: '#/components/schemas/microsoft.graph.itemBody' + bodyLastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 task was last modified. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' + format: date-time + completedDateTime: + $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-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 task was created. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' + format: date-time + dueDateTime: + $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' + importance: + $ref: '#/components/schemas/microsoft.graph.importance' + isReminderOn: + type: boolean + description: Set to true if an alert is set to remind the user of the task. + 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 task was last modified. By default, it is in UTC. You can provide a custom time zone in the request header. The property value uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2020 would look like this: ''2020-01-01T00:00:00Z''.' + format: date-time + recurrence: + $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' + reminderDateTime: + $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' + status: + $ref: '#/components/schemas/microsoft.graph.taskStatus' + title: + type: string + description: A brief description of the task. + nullable: true + extensions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.extension' + description: The collection of open extensions defined for the task. Nullable. + linkedResources: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.linkedResource' + description: A collection of resources linked to the task. + additionalProperties: + type: object + odata.error.detail: + required: + - code + - message + type: object + properties: + code: + type: string + message: + type: string + target: + type: string + additionalProperties: + type: object + microsoft.graph.attendeeType: + title: attendeeType + enum: + - required + - optional - resource type: string microsoft.graph.weekIndex: @@ -15258,148 +15503,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.chatMessageAttachment: - title: chatMessageAttachment - type: object - properties: - content: - type: string - description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' - nullable: true - contentType: - type: string - description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' - nullable: true - contentUrl: - type: string - description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' - nullable: true - id: - type: string - description: Read-only. Unique id of the attachment. - nullable: true - name: - type: string - description: Name of the attachment. - nullable: true - thumbnailUrl: - type: string - description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' - 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: - - normal - - high - - urgent - - unknownFutureValue - type: string - microsoft.graph.chatMessageMention: - title: chatMessageMention - type: object - properties: - id: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' - format: int32 - nullable: true - mentioned: - $ref: '#/components/schemas/microsoft.graph.identitySet' - mentionText: - type: string - description: 'String used to represent the mention. For example, a user''s display name, a team name.' - nullable: true - additionalProperties: - type: object - microsoft.graph.chatMessageType: - title: chatMessageType - enum: - - message - - chatEvent - - typing - - unknownFutureValue - type: string - microsoft.graph.chatMessagePolicyViolation: - title: chatMessagePolicyViolation - type: object - properties: - dlpAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' - justificationText: - type: string - description: Justification text provided by the sender of the message when overriding a policy violation. - nullable: true - policyTip: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' - userAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' - verdictDetails: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' - additionalProperties: - type: object - microsoft.graph.chatMessageReaction: - title: chatMessageReaction - 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: 'The Timestamp type represents date and time information using ISO 8601 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 - description: 'Supported values are like, angry, sad, laugh, heart, surprised.' - user: - $ref: '#/components/schemas/microsoft.graph.identitySet' - additionalProperties: - type: object - microsoft.graph.chatMessageHostedContent: - allOf: - - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' - - title: chatMessageHostedContent - type: object - additionalProperties: - type: object - 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.teamsAppDistributionMethod: title: teamsAppDistributionMethod enum: @@ -15552,14 +15655,66 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.chatType: - title: chatType + microsoft.graph.chatMessagePolicyViolationDlpActionTypes: + title: chatMessagePolicyViolationDlpActionTypes enum: - - oneOnOne - - group - - meeting - - unknownFutureValue + - 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.taskStatus: title: taskStatus enum: @@ -15833,66 +15988,6 @@ components: $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.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 cbbad502956..e036b34493c 100644 --- a/openApiDocs/v1.0/Files.yml +++ b/openApiDocs/v1.0/Files.yml @@ -316,6 +316,7 @@ paths: tags: - drives.driveItem summary: Get following from drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_ListFollowing parameters: - name: drive-id @@ -507,6 +508,7 @@ paths: tags: - drives.driveItem summary: Create new navigation property to following for drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_CreateFollowing parameters: - name: drive-id @@ -538,6 +540,7 @@ paths: tags: - drives.driveItem summary: Get following from drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_GetFollowing parameters: - name: drive-id @@ -694,6 +697,7 @@ paths: tags: - drives.driveItem summary: Update the navigation property following in drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_UpdateFollowing parameters: - name: drive-id @@ -727,6 +731,7 @@ paths: tags: - drives.driveItem summary: Delete navigation property following for drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_DeleteFollowing parameters: - name: drive-id @@ -825,6 +830,7 @@ paths: tags: - drives.driveItem summary: Get items from drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_ListItems parameters: - name: drive-id @@ -1016,6 +1022,7 @@ paths: tags: - drives.driveItem summary: Create new navigation property to items for drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_CreateItems parameters: - name: drive-id @@ -1047,6 +1054,7 @@ paths: tags: - drives.driveItem summary: Get items from drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_GetItems parameters: - name: drive-id @@ -1203,6 +1211,7 @@ paths: tags: - drives.driveItem summary: Update the navigation property items in drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_UpdateItems parameters: - name: drive-id @@ -1236,6 +1245,7 @@ paths: tags: - drives.driveItem summary: Delete navigation property items for drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_DeleteItems parameters: - name: drive-id @@ -1334,6 +1344,7 @@ paths: tags: - drives.list summary: Get list from drives + description: 'For drives in SharePoint, the underlying document library list. Read-only. Nullable.' operationId: drives_GetList parameters: - name: drive-id @@ -1437,6 +1448,7 @@ paths: tags: - drives.list summary: Update the navigation property list in drives + description: 'For drives in SharePoint, the underlying document library list. Read-only. Nullable.' operationId: drives_UpdateList parameters: - name: drive-id @@ -1463,6 +1475,7 @@ paths: tags: - drives.list summary: Delete navigation property list for drives + description: 'For drives in SharePoint, the underlying document library list. Read-only. Nullable.' operationId: drives_DeleteList parameters: - name: drive-id @@ -1488,6 +1501,7 @@ paths: tags: - drives.list summary: Get columns from drives + description: The collection of field definitions for this list. operationId: drives.list_ListColumns parameters: - name: drive-id @@ -1626,6 +1640,7 @@ paths: tags: - drives.list summary: Create new navigation property to columns for drives + description: The collection of field definitions for this list. operationId: drives.list_CreateColumns parameters: - name: drive-id @@ -1657,6 +1672,7 @@ paths: tags: - drives.list summary: Get columns from drives + description: The collection of field definitions for this list. operationId: drives.list_GetColumns parameters: - name: drive-id @@ -1731,6 +1747,7 @@ paths: tags: - drives.list summary: Update the navigation property columns in drives + description: The collection of field definitions for this list. operationId: drives.list_UpdateColumns parameters: - name: drive-id @@ -1764,6 +1781,7 @@ paths: tags: - drives.list summary: Delete navigation property columns for drives + description: The collection of field definitions for this list. operationId: drives.list_DeleteColumns parameters: - name: drive-id @@ -1796,6 +1814,7 @@ paths: tags: - drives.list summary: Get contentTypes from drives + description: The collection of content types present in this list. operationId: drives.list_ListContentTypes parameters: - name: drive-id @@ -1903,6 +1922,7 @@ paths: tags: - drives.list summary: Create new navigation property to contentTypes for drives + description: The collection of content types present in this list. operationId: drives.list_CreateContentTypes parameters: - name: drive-id @@ -1934,6 +1954,7 @@ paths: tags: - drives.list summary: Get contentTypes from drives + description: The collection of content types present in this list. operationId: drives.list_GetContentTypes parameters: - name: drive-id @@ -2005,6 +2026,7 @@ paths: tags: - drives.list summary: Update the navigation property contentTypes in drives + description: The collection of content types present in this list. operationId: drives.list_UpdateContentTypes parameters: - name: drive-id @@ -2038,6 +2060,7 @@ paths: tags: - drives.list summary: Delete navigation property contentTypes for drives + description: The collection of content types present in this list. operationId: drives.list_DeleteContentTypes parameters: - name: drive-id @@ -2070,6 +2093,7 @@ paths: tags: - drives.list summary: Get columnLinks from drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_ListColumnLinks parameters: - name: drive-id @@ -2158,6 +2182,7 @@ paths: tags: - drives.list summary: Create new navigation property to columnLinks for drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_CreateColumnLinks parameters: - name: drive-id @@ -2196,6 +2221,7 @@ paths: tags: - drives.list summary: Get columnLinks from drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_GetColumnLinks parameters: - name: drive-id @@ -2258,6 +2284,7 @@ paths: tags: - drives.list summary: Update the navigation property columnLinks in drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_UpdateColumnLinks parameters: - name: drive-id @@ -2298,6 +2325,7 @@ paths: tags: - drives.list summary: Delete navigation property columnLinks for drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_DeleteColumnLinks parameters: - name: drive-id @@ -2337,6 +2365,7 @@ paths: tags: - drives.list summary: Get drive from drives + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: drives.list_GetDrive parameters: - name: drive-id @@ -2441,6 +2470,7 @@ paths: tags: - drives.list summary: Update the navigation property drive in drives + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: drives.list_UpdateDrive parameters: - name: drive-id @@ -2467,6 +2497,7 @@ paths: tags: - drives.list summary: Delete navigation property drive for drives + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: drives.list_DeleteDrive parameters: - name: drive-id @@ -2492,6 +2523,7 @@ paths: tags: - drives.list summary: Get items from drives + description: All items contained in the list. operationId: drives.list_ListItems parameters: - name: drive-id @@ -2615,6 +2647,7 @@ paths: tags: - drives.list summary: Create new navigation property to items for drives + description: All items contained in the list. operationId: drives.list_CreateItems parameters: - name: drive-id @@ -2646,6 +2679,7 @@ paths: tags: - drives.list summary: Get items from drives + description: All items contained in the list. operationId: drives.list_GetItems parameters: - name: drive-id @@ -2754,6 +2788,7 @@ paths: tags: - drives.list summary: Update the navigation property items in drives + description: All items contained in the list. operationId: drives.list_UpdateItems parameters: - name: drive-id @@ -2787,6 +2822,7 @@ paths: tags: - drives.list summary: Delete navigation property items for drives + description: All items contained in the list. operationId: drives.list_DeleteItems parameters: - name: drive-id @@ -2819,6 +2855,7 @@ paths: tags: - drives.list summary: Get analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.items_GetAnalytics parameters: - name: drive-id @@ -2896,6 +2933,7 @@ paths: tags: - drives.list summary: Get ref of analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.items_GetRefAnalytics parameters: - name: drive-id @@ -2942,6 +2980,7 @@ paths: tags: - drives.list summary: Update the ref of navigation property analytics in drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.items_SetRefAnalytics parameters: - name: drive-id @@ -2977,6 +3016,7 @@ paths: tags: - drives.list summary: Delete ref of navigation property analytics for drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.items_DeleteRefAnalytics parameters: - name: drive-id @@ -3009,6 +3049,7 @@ paths: tags: - drives.list summary: Get driveItem from drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.list.items_GetDriveItem parameters: - name: drive-id @@ -3165,6 +3206,7 @@ paths: tags: - drives.list summary: Update the navigation property driveItem in drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.list.items_UpdateDriveItem parameters: - name: drive-id @@ -3198,6 +3240,7 @@ paths: tags: - drives.list summary: Delete navigation property driveItem for drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.list.items_DeleteDriveItem parameters: - name: drive-id @@ -3296,6 +3339,7 @@ paths: tags: - drives.list summary: Get fields from drives + description: The values of the columns set on this list item. operationId: drives.list.items_GetFields parameters: - name: drive-id @@ -3350,6 +3394,7 @@ paths: tags: - drives.list summary: Update the navigation property fields in drives + description: The values of the columns set on this list item. operationId: drives.list.items_UpdateFields parameters: - name: drive-id @@ -3383,6 +3428,7 @@ paths: tags: - drives.list summary: Delete navigation property fields for drives + description: The values of the columns set on this list item. operationId: drives.list.items_DeleteFields parameters: - name: drive-id @@ -3502,6 +3548,7 @@ paths: tags: - drives.list summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.list.items_ListVersions parameters: - name: drive-id @@ -3598,6 +3645,7 @@ paths: tags: - drives.list summary: Create new navigation property to versions for drives + description: The list of previous versions of the list item. operationId: drives.list.items_CreateVersions parameters: - name: drive-id @@ -3636,6 +3684,7 @@ paths: tags: - drives.list summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.list.items_GetVersions parameters: - name: drive-id @@ -3709,6 +3758,7 @@ paths: tags: - drives.list summary: Update the navigation property versions in drives + description: The list of previous versions of the list item. operationId: drives.list.items_UpdateVersions parameters: - name: drive-id @@ -3749,6 +3799,7 @@ paths: tags: - drives.list summary: Delete navigation property versions for drives + description: The list of previous versions of the list item. operationId: drives.list.items_DeleteVersions parameters: - name: drive-id @@ -3788,6 +3839,7 @@ paths: tags: - drives.list summary: Get fields from drives + description: A collection of the fields and values for this version of the list item. operationId: drives.list.items.versions_GetFields parameters: - name: drive-id @@ -3849,6 +3901,7 @@ paths: tags: - drives.list summary: Update the navigation property fields in drives + description: A collection of the fields and values for this version of the list item. operationId: drives.list.items.versions_UpdateFields parameters: - name: drive-id @@ -3889,6 +3942,7 @@ paths: tags: - drives.list summary: Delete navigation property fields for drives + description: A collection of the fields and values for this version of the list item. operationId: drives.list.items.versions_DeleteFields parameters: - name: drive-id @@ -3962,6 +4016,7 @@ paths: tags: - drives.list summary: Get subscriptions from drives + description: The set of subscriptions on the list. operationId: drives.list_ListSubscriptions parameters: - name: drive-id @@ -4079,6 +4134,7 @@ paths: tags: - drives.list summary: Create new navigation property to subscriptions for drives + description: The set of subscriptions on the list. operationId: drives.list_CreateSubscriptions parameters: - name: drive-id @@ -4110,6 +4166,7 @@ paths: tags: - drives.list summary: Get subscriptions from drives + description: The set of subscriptions on the list. operationId: drives.list_GetSubscriptions parameters: - name: drive-id @@ -4177,6 +4234,7 @@ paths: tags: - drives.list summary: Update the navigation property subscriptions in drives + description: The set of subscriptions on the list. operationId: drives.list_UpdateSubscriptions parameters: - name: drive-id @@ -4210,6 +4268,7 @@ paths: tags: - drives.list summary: Delete navigation property subscriptions for drives + description: The set of subscriptions on the list. operationId: drives.list_DeleteSubscriptions parameters: - name: drive-id @@ -4327,6 +4386,7 @@ paths: tags: - drives.driveItem summary: Get root from drives + description: The root folder of the drive. Read-only. operationId: drives_GetRoot parameters: - name: drive-id @@ -4466,6 +4526,7 @@ paths: tags: - drives.driveItem summary: Update the navigation property root in drives + description: The root folder of the drive. Read-only. operationId: drives_UpdateRoot parameters: - name: drive-id @@ -4492,6 +4553,7 @@ paths: tags: - drives.driveItem summary: Delete navigation property root for drives + description: The root folder of the drive. Read-only. operationId: drives_DeleteRoot parameters: - name: drive-id @@ -4569,6 +4631,7 @@ paths: tags: - drives.driveItem summary: Get special from drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_ListSpecial parameters: - name: drive-id @@ -4760,6 +4823,7 @@ paths: tags: - drives.driveItem summary: Create new navigation property to special for drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_CreateSpecial parameters: - name: drive-id @@ -4791,6 +4855,7 @@ paths: tags: - drives.driveItem summary: Get special from drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_GetSpecial parameters: - name: drive-id @@ -4947,6 +5012,7 @@ paths: tags: - drives.driveItem summary: Update the navigation property special in drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_UpdateSpecial parameters: - name: drive-id @@ -4980,6 +5046,7 @@ paths: tags: - drives.driveItem summary: Delete navigation property special for drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_DeleteSpecial parameters: - name: drive-id @@ -5078,6 +5145,7 @@ paths: tags: - groups.drive summary: Get drive from groups + description: The group's default drive. Read-only. operationId: groups_GetDrive parameters: - name: group-id @@ -5182,6 +5250,7 @@ paths: tags: - groups.drive summary: Update the navigation property drive in groups + description: The group's default drive. Read-only. operationId: groups_UpdateDrive parameters: - name: group-id @@ -5208,6 +5277,7 @@ paths: tags: - groups.drive summary: Delete navigation property drive for groups + description: The group's default drive. Read-only. operationId: groups_DeleteDrive parameters: - name: group-id @@ -5233,6 +5303,7 @@ paths: tags: - groups.drive summary: Get drives from groups + description: The group's drives. Read-only. operationId: groups_ListDrives parameters: - name: group-id @@ -5367,6 +5438,7 @@ paths: tags: - groups.drive summary: Create new navigation property to drives for groups + description: The group's drives. Read-only. operationId: groups_CreateDrives parameters: - name: group-id @@ -5398,6 +5470,7 @@ paths: tags: - groups.drive summary: Get drives from groups + description: The group's drives. Read-only. operationId: groups_GetDrives parameters: - name: group-id @@ -5516,6 +5589,7 @@ paths: tags: - groups.drive summary: Update the navigation property drives in groups + description: The group's drives. Read-only. operationId: groups_UpdateDrives parameters: - name: group-id @@ -5549,6 +5623,7 @@ paths: tags: - groups.drive summary: Delete navigation property drives for groups + description: The group's drives. Read-only. operationId: groups_DeleteDrives parameters: - name: group-id @@ -5886,6 +5961,7 @@ paths: tags: - shares.driveItem summary: Get driveItem from shares + description: Used to access the underlying driveItem operationId: shares_GetDriveItem parameters: - name: sharedDriveItem-id @@ -6025,6 +6101,7 @@ paths: tags: - shares.driveItem summary: Update the navigation property driveItem in shares + description: Used to access the underlying driveItem operationId: shares_UpdateDriveItem parameters: - name: sharedDriveItem-id @@ -6051,6 +6128,7 @@ paths: tags: - shares.driveItem summary: Delete navigation property driveItem for shares + description: Used to access the underlying driveItem operationId: shares_DeleteDriveItem parameters: - name: sharedDriveItem-id @@ -6128,6 +6206,7 @@ paths: tags: - shares.driveItem summary: Get items from shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_ListItems parameters: - name: sharedDriveItem-id @@ -6319,6 +6398,7 @@ paths: tags: - shares.driveItem summary: Create new navigation property to items for shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_CreateItems parameters: - name: sharedDriveItem-id @@ -6350,6 +6430,7 @@ paths: tags: - shares.driveItem summary: Get items from shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_GetItems parameters: - name: sharedDriveItem-id @@ -6506,6 +6587,7 @@ paths: tags: - shares.driveItem summary: Update the navigation property items in shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_UpdateItems parameters: - name: sharedDriveItem-id @@ -6539,6 +6621,7 @@ paths: tags: - shares.driveItem summary: Delete navigation property items for shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_DeleteItems parameters: - name: sharedDriveItem-id @@ -6637,6 +6720,7 @@ paths: tags: - shares.list summary: Get list from shares + description: Used to access the underlying list operationId: shares_GetList parameters: - name: sharedDriveItem-id @@ -6740,6 +6824,7 @@ paths: tags: - shares.list summary: Update the navigation property list in shares + description: Used to access the underlying list operationId: shares_UpdateList parameters: - name: sharedDriveItem-id @@ -6766,6 +6851,7 @@ paths: tags: - shares.list summary: Delete navigation property list for shares + description: Used to access the underlying list operationId: shares_DeleteList parameters: - name: sharedDriveItem-id @@ -6791,6 +6877,7 @@ paths: tags: - shares.list summary: Get columns from shares + description: The collection of field definitions for this list. operationId: shares.list_ListColumns parameters: - name: sharedDriveItem-id @@ -6929,6 +7016,7 @@ paths: tags: - shares.list summary: Create new navigation property to columns for shares + description: The collection of field definitions for this list. operationId: shares.list_CreateColumns parameters: - name: sharedDriveItem-id @@ -6960,6 +7048,7 @@ paths: tags: - shares.list summary: Get columns from shares + description: The collection of field definitions for this list. operationId: shares.list_GetColumns parameters: - name: sharedDriveItem-id @@ -7034,6 +7123,7 @@ paths: tags: - shares.list summary: Update the navigation property columns in shares + description: The collection of field definitions for this list. operationId: shares.list_UpdateColumns parameters: - name: sharedDriveItem-id @@ -7067,6 +7157,7 @@ paths: tags: - shares.list summary: Delete navigation property columns for shares + description: The collection of field definitions for this list. operationId: shares.list_DeleteColumns parameters: - name: sharedDriveItem-id @@ -7099,6 +7190,7 @@ paths: tags: - shares.list summary: Get contentTypes from shares + description: The collection of content types present in this list. operationId: shares.list_ListContentTypes parameters: - name: sharedDriveItem-id @@ -7206,6 +7298,7 @@ paths: tags: - shares.list summary: Create new navigation property to contentTypes for shares + description: The collection of content types present in this list. operationId: shares.list_CreateContentTypes parameters: - name: sharedDriveItem-id @@ -7237,6 +7330,7 @@ paths: tags: - shares.list summary: Get contentTypes from shares + description: The collection of content types present in this list. operationId: shares.list_GetContentTypes parameters: - name: sharedDriveItem-id @@ -7308,6 +7402,7 @@ paths: tags: - shares.list summary: Update the navigation property contentTypes in shares + description: The collection of content types present in this list. operationId: shares.list_UpdateContentTypes parameters: - name: sharedDriveItem-id @@ -7341,6 +7436,7 @@ paths: tags: - shares.list summary: Delete navigation property contentTypes for shares + description: The collection of content types present in this list. operationId: shares.list_DeleteContentTypes parameters: - name: sharedDriveItem-id @@ -7373,6 +7469,7 @@ paths: tags: - shares.list summary: Get columnLinks from shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_ListColumnLinks parameters: - name: sharedDriveItem-id @@ -7461,6 +7558,7 @@ paths: tags: - shares.list summary: Create new navigation property to columnLinks for shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_CreateColumnLinks parameters: - name: sharedDriveItem-id @@ -7499,6 +7597,7 @@ paths: tags: - shares.list summary: Get columnLinks from shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_GetColumnLinks parameters: - name: sharedDriveItem-id @@ -7561,6 +7660,7 @@ paths: tags: - shares.list summary: Update the navigation property columnLinks in shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_UpdateColumnLinks parameters: - name: sharedDriveItem-id @@ -7601,6 +7701,7 @@ paths: tags: - shares.list summary: Delete navigation property columnLinks for shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_DeleteColumnLinks parameters: - name: sharedDriveItem-id @@ -7640,6 +7741,7 @@ paths: tags: - shares.list summary: Get drive from shares + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: shares.list_GetDrive parameters: - name: sharedDriveItem-id @@ -7744,6 +7846,7 @@ paths: tags: - shares.list summary: Update the navigation property drive in shares + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: shares.list_UpdateDrive parameters: - name: sharedDriveItem-id @@ -7770,6 +7873,7 @@ paths: tags: - shares.list summary: Delete navigation property drive for shares + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: shares.list_DeleteDrive parameters: - name: sharedDriveItem-id @@ -7795,6 +7899,7 @@ paths: tags: - shares.list summary: Get items from shares + description: All items contained in the list. operationId: shares.list_ListItems parameters: - name: sharedDriveItem-id @@ -7918,6 +8023,7 @@ paths: tags: - shares.list summary: Create new navigation property to items for shares + description: All items contained in the list. operationId: shares.list_CreateItems parameters: - name: sharedDriveItem-id @@ -7949,6 +8055,7 @@ paths: tags: - shares.list summary: Get items from shares + description: All items contained in the list. operationId: shares.list_GetItems parameters: - name: sharedDriveItem-id @@ -8057,6 +8164,7 @@ paths: tags: - shares.list summary: Update the navigation property items in shares + description: All items contained in the list. operationId: shares.list_UpdateItems parameters: - name: sharedDriveItem-id @@ -8090,6 +8198,7 @@ paths: tags: - shares.list summary: Delete navigation property items for shares + description: All items contained in the list. operationId: shares.list_DeleteItems parameters: - name: sharedDriveItem-id @@ -8122,6 +8231,7 @@ paths: tags: - shares.list summary: Get analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.items_GetAnalytics parameters: - name: sharedDriveItem-id @@ -8199,6 +8309,7 @@ paths: tags: - shares.list summary: Get ref of analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.items_GetRefAnalytics parameters: - name: sharedDriveItem-id @@ -8245,6 +8356,7 @@ paths: tags: - shares.list summary: Update the ref of navigation property analytics in shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.items_SetRefAnalytics parameters: - name: sharedDriveItem-id @@ -8280,6 +8392,7 @@ paths: tags: - shares.list summary: Delete ref of navigation property analytics for shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.items_DeleteRefAnalytics parameters: - name: sharedDriveItem-id @@ -8312,6 +8425,7 @@ paths: tags: - shares.list summary: Get driveItem from shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.list.items_GetDriveItem parameters: - name: sharedDriveItem-id @@ -8468,6 +8582,7 @@ paths: tags: - shares.list summary: Update the navigation property driveItem in shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.list.items_UpdateDriveItem parameters: - name: sharedDriveItem-id @@ -8501,6 +8616,7 @@ paths: tags: - shares.list summary: Delete navigation property driveItem for shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.list.items_DeleteDriveItem parameters: - name: sharedDriveItem-id @@ -8599,6 +8715,7 @@ paths: tags: - shares.list summary: Get fields from shares + description: The values of the columns set on this list item. operationId: shares.list.items_GetFields parameters: - name: sharedDriveItem-id @@ -8653,6 +8770,7 @@ paths: tags: - shares.list summary: Update the navigation property fields in shares + description: The values of the columns set on this list item. operationId: shares.list.items_UpdateFields parameters: - name: sharedDriveItem-id @@ -8686,6 +8804,7 @@ paths: tags: - shares.list summary: Delete navigation property fields for shares + description: The values of the columns set on this list item. operationId: shares.list.items_DeleteFields parameters: - name: sharedDriveItem-id @@ -8805,6 +8924,7 @@ paths: tags: - shares.list summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.list.items_ListVersions parameters: - name: sharedDriveItem-id @@ -8901,6 +9021,7 @@ paths: tags: - shares.list summary: Create new navigation property to versions for shares + description: The list of previous versions of the list item. operationId: shares.list.items_CreateVersions parameters: - name: sharedDriveItem-id @@ -8939,6 +9060,7 @@ paths: tags: - shares.list summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.list.items_GetVersions parameters: - name: sharedDriveItem-id @@ -9012,6 +9134,7 @@ paths: tags: - shares.list summary: Update the navigation property versions in shares + description: The list of previous versions of the list item. operationId: shares.list.items_UpdateVersions parameters: - name: sharedDriveItem-id @@ -9052,6 +9175,7 @@ paths: tags: - shares.list summary: Delete navigation property versions for shares + description: The list of previous versions of the list item. operationId: shares.list.items_DeleteVersions parameters: - name: sharedDriveItem-id @@ -9091,6 +9215,7 @@ paths: tags: - shares.list summary: Get fields from shares + description: A collection of the fields and values for this version of the list item. operationId: shares.list.items.versions_GetFields parameters: - name: sharedDriveItem-id @@ -9152,6 +9277,7 @@ paths: tags: - shares.list summary: Update the navigation property fields in shares + description: A collection of the fields and values for this version of the list item. operationId: shares.list.items.versions_UpdateFields parameters: - name: sharedDriveItem-id @@ -9192,6 +9318,7 @@ paths: tags: - shares.list summary: Delete navigation property fields for shares + description: A collection of the fields and values for this version of the list item. operationId: shares.list.items.versions_DeleteFields parameters: - name: sharedDriveItem-id @@ -9265,6 +9392,7 @@ paths: tags: - shares.list summary: Get subscriptions from shares + description: The set of subscriptions on the list. operationId: shares.list_ListSubscriptions parameters: - name: sharedDriveItem-id @@ -9382,6 +9510,7 @@ paths: tags: - shares.list summary: Create new navigation property to subscriptions for shares + description: The set of subscriptions on the list. operationId: shares.list_CreateSubscriptions parameters: - name: sharedDriveItem-id @@ -9413,6 +9542,7 @@ paths: tags: - shares.list summary: Get subscriptions from shares + description: The set of subscriptions on the list. operationId: shares.list_GetSubscriptions parameters: - name: sharedDriveItem-id @@ -9480,6 +9610,7 @@ paths: tags: - shares.list summary: Update the navigation property subscriptions in shares + description: The set of subscriptions on the list. operationId: shares.list_UpdateSubscriptions parameters: - name: sharedDriveItem-id @@ -9513,6 +9644,7 @@ paths: tags: - shares.list summary: Delete navigation property subscriptions for shares + description: The set of subscriptions on the list. operationId: shares.list_DeleteSubscriptions parameters: - name: sharedDriveItem-id @@ -9545,6 +9677,7 @@ paths: tags: - shares.listItem summary: Get listItem from shares + description: Used to access the underlying listItem operationId: shares_GetListItem parameters: - name: sharedDriveItem-id @@ -9640,6 +9773,7 @@ paths: tags: - shares.listItem summary: Update the navigation property listItem in shares + description: Used to access the underlying listItem operationId: shares_UpdateListItem parameters: - name: sharedDriveItem-id @@ -9666,6 +9800,7 @@ paths: tags: - shares.listItem summary: Delete navigation property listItem for shares + description: Used to access the underlying listItem operationId: shares_DeleteListItem parameters: - name: sharedDriveItem-id @@ -9691,6 +9826,7 @@ paths: tags: - shares.listItem summary: Get analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.listItem_GetAnalytics parameters: - name: sharedDriveItem-id @@ -9758,6 +9894,7 @@ paths: tags: - shares.listItem summary: Get ref of analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.listItem_GetRefAnalytics parameters: - name: sharedDriveItem-id @@ -9794,6 +9931,7 @@ paths: tags: - shares.listItem summary: Update the ref of navigation property analytics in shares + description: Analytics about the view activities that took place on this item. operationId: shares.listItem_SetRefAnalytics parameters: - name: sharedDriveItem-id @@ -9822,6 +9960,7 @@ paths: tags: - shares.listItem summary: Delete ref of navigation property analytics for shares + description: Analytics about the view activities that took place on this item. operationId: shares.listItem_DeleteRefAnalytics parameters: - name: sharedDriveItem-id @@ -9847,6 +9986,7 @@ paths: tags: - shares.listItem summary: Get driveItem from shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.listItem_GetDriveItem parameters: - name: sharedDriveItem-id @@ -9986,6 +10126,7 @@ paths: tags: - shares.listItem summary: Update the navigation property driveItem in shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.listItem_UpdateDriveItem parameters: - name: sharedDriveItem-id @@ -10012,6 +10153,7 @@ paths: tags: - shares.listItem summary: Delete navigation property driveItem for shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.listItem_DeleteDriveItem parameters: - name: sharedDriveItem-id @@ -10089,6 +10231,7 @@ paths: tags: - shares.listItem summary: Get fields from shares + description: The values of the columns set on this list item. operationId: shares.listItem_GetFields parameters: - name: sharedDriveItem-id @@ -10136,6 +10279,7 @@ paths: tags: - shares.listItem summary: Update the navigation property fields in shares + description: The values of the columns set on this list item. operationId: shares.listItem_UpdateFields parameters: - name: sharedDriveItem-id @@ -10162,6 +10306,7 @@ paths: tags: - shares.listItem summary: Delete navigation property fields for shares + description: The values of the columns set on this list item. operationId: shares.listItem_DeleteFields parameters: - name: sharedDriveItem-id @@ -10260,6 +10405,7 @@ paths: tags: - shares.listItem summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.listItem_ListVersions parameters: - name: sharedDriveItem-id @@ -10349,6 +10495,7 @@ paths: tags: - shares.listItem summary: Create new navigation property to versions for shares + description: The list of previous versions of the list item. operationId: shares.listItem_CreateVersions parameters: - name: sharedDriveItem-id @@ -10380,6 +10527,7 @@ paths: tags: - shares.listItem summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.listItem_GetVersions parameters: - name: sharedDriveItem-id @@ -10445,6 +10593,7 @@ paths: tags: - shares.listItem summary: Update the navigation property versions in shares + description: The list of previous versions of the list item. operationId: shares.listItem_UpdateVersions parameters: - name: sharedDriveItem-id @@ -10478,6 +10627,7 @@ paths: tags: - shares.listItem summary: Delete navigation property versions for shares + description: The list of previous versions of the list item. operationId: shares.listItem_DeleteVersions parameters: - name: sharedDriveItem-id @@ -10510,6 +10660,7 @@ paths: tags: - shares.listItem summary: Get fields from shares + description: A collection of the fields and values for this version of the list item. operationId: shares.listItem.versions_GetFields parameters: - name: sharedDriveItem-id @@ -10564,6 +10715,7 @@ paths: tags: - shares.listItem summary: Update the navigation property fields in shares + description: A collection of the fields and values for this version of the list item. operationId: shares.listItem.versions_UpdateFields parameters: - name: sharedDriveItem-id @@ -10597,6 +10749,7 @@ paths: tags: - shares.listItem summary: Delete navigation property fields for shares + description: A collection of the fields and values for this version of the list item. operationId: shares.listItem.versions_DeleteFields parameters: - name: sharedDriveItem-id @@ -10656,6 +10809,7 @@ paths: tags: - shares.permission summary: Get permission from shares + description: Used to access the permission representing the underlying sharing link operationId: shares_GetPermission parameters: - name: sharedDriveItem-id @@ -10712,6 +10866,7 @@ paths: tags: - shares.permission summary: Update the navigation property permission in shares + description: Used to access the permission representing the underlying sharing link operationId: shares_UpdatePermission parameters: - name: sharedDriveItem-id @@ -10738,6 +10893,7 @@ paths: tags: - shares.permission summary: Delete navigation property permission for shares + description: Used to access the permission representing the underlying sharing link operationId: shares_DeletePermission parameters: - name: sharedDriveItem-id @@ -10808,6 +10964,7 @@ paths: tags: - shares.driveItem summary: Get root from shares + description: Used to access the underlying driveItem. Deprecated -- use driveItem instead. operationId: shares_GetRoot parameters: - name: sharedDriveItem-id @@ -10947,6 +11104,7 @@ paths: tags: - shares.driveItem summary: Update the navigation property root in shares + description: Used to access the underlying driveItem. Deprecated -- use driveItem instead. operationId: shares_UpdateRoot parameters: - name: sharedDriveItem-id @@ -10973,6 +11131,7 @@ paths: tags: - shares.driveItem summary: Delete navigation property root for shares + description: Used to access the underlying driveItem. Deprecated -- use driveItem instead. operationId: shares_DeleteRoot parameters: - name: sharedDriveItem-id @@ -11050,6 +11209,7 @@ paths: tags: - shares.site summary: Get site from shares + description: Used to access the underlying site operationId: shares_GetSite parameters: - name: sharedDriveItem-id @@ -11184,6 +11344,7 @@ paths: tags: - shares.site summary: Update the navigation property site in shares + description: Used to access the underlying site operationId: shares_UpdateSite parameters: - name: sharedDriveItem-id @@ -11210,6 +11371,7 @@ paths: tags: - shares.site summary: Delete navigation property site for shares + description: Used to access the underlying site operationId: shares_DeleteSite parameters: - name: sharedDriveItem-id @@ -11235,6 +11397,7 @@ paths: tags: - users.drive summary: Get drive from users + description: The user's OneDrive. Read-only. operationId: users_GetDrive parameters: - name: user-id @@ -11339,6 +11502,7 @@ paths: tags: - users.drive summary: Update the navigation property drive in users + description: The user's OneDrive. Read-only. operationId: users_UpdateDrive parameters: - name: user-id @@ -11365,6 +11529,7 @@ paths: tags: - users.drive summary: Delete navigation property drive for users + description: The user's OneDrive. Read-only. operationId: users_DeleteDrive parameters: - name: user-id @@ -11390,6 +11555,7 @@ paths: tags: - users.drive summary: Get drives from users + description: A collection of drives available for this user. Read-only. operationId: users_ListDrives parameters: - name: user-id @@ -11524,6 +11690,7 @@ paths: tags: - users.drive summary: Create new navigation property to drives for users + description: A collection of drives available for this user. Read-only. operationId: users_CreateDrives parameters: - name: user-id @@ -11555,6 +11722,7 @@ paths: tags: - users.drive summary: Get drives from users + description: A collection of drives available for this user. Read-only. operationId: users_GetDrives parameters: - name: user-id @@ -11673,6 +11841,7 @@ paths: tags: - users.drive summary: Update the navigation property drives in users + description: A collection of drives available for this user. Read-only. operationId: users_UpdateDrives parameters: - name: user-id @@ -11706,6 +11875,7 @@ paths: tags: - users.drive summary: Delete navigation property drives for users + description: A collection of drives available for this user. Read-only. operationId: users_DeleteDrives parameters: - name: user-id @@ -13487,7 +13657,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -13500,7 +13670,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -13512,12 +13682,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -13526,11 +13696,11 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -13546,7 +13716,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -13564,7 +13734,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -13583,7 +13753,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -13602,11 +13772,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -13614,7 +13784,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -13661,7 +13831,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -13670,7 +13840,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredLanguage: type: string @@ -13698,15 +13868,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -13714,7 +13884,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -13950,6 +14120,10 @@ components: $ref: '#/components/schemas/microsoft.graph.presence' authentication: $ref: '#/components/schemas/microsoft.graph.authentication' + chats: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' joinedTeams: type: array items: @@ -14595,7 +14769,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -14869,7 +15043,7 @@ components: 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).' + description: 'Indicates whether 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 principalId: type: string @@ -15395,6 +15569,10 @@ components: type: string description: The mailFolder's display name. nullable: true + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. + nullable: true parentFolderId: type: string description: The unique identifier for the mailFolder's parent mailFolder. @@ -15829,6 +16007,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -15842,6 +16024,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -15881,6 +16067,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -15895,6 +16085,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -15915,6 +16109,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -16254,6 +16452,51 @@ components: $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 + 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 + topic: + type: string + description: (Optional) Subject or topic for the chat. Only available for group chats. + 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.team: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -16272,7 +16515,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true displayName: type: string @@ -17343,6 +17586,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState @@ -18072,6 +18318,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: @@ -18167,6 +18414,166 @@ components: $ref: '#/components/schemas/microsoft.graph.device' additionalProperties: type: object + microsoft.graph.chatType: + title: chatType + enum: + - oneOnOne + - group + - meeting + - unknownFutureValue + type: string + microsoft.graph.teamsAppInstallation: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamsAppInstallation + type: object + properties: + teamsApp: + $ref: '#/components/schemas/microsoft.graph.teamsApp' + teamsAppDefinition: + $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' + additionalProperties: + type: object + microsoft.graph.conversationMember: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: conversationMember + type: object + properties: + displayName: + type: string + description: The display name of the user. + nullable: true + roles: + type: array + items: + type: string + nullable: true + description: The roles for that user. + visibleHistoryStartDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. + format: date-time + nullable: true + 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 + 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: 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. 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.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.teamFunSettings: title: teamFunSettings type: object @@ -18614,6 +19021,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -18697,42 +19105,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.teamsAppInstallation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsAppInstallation - type: object - properties: - teamsApp: - $ref: '#/components/schemas/microsoft.graph.teamsApp' - teamsAppDefinition: - $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' - additionalProperties: - type: object - microsoft.graph.conversationMember: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: conversationMember - type: object - properties: - displayName: - type: string - description: The display name of the user. - nullable: true - roles: - type: array - items: - type: string - nullable: true - description: The roles for that user. - visibleHistoryStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. - format: date-time - nullable: true - additionalProperties: - type: object microsoft.graph.teamsAsyncOperation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -20036,7 +20408,7 @@ components: 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -20051,6 +20423,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -20066,6 +20439,210 @@ components: - weak - unknown type: string + 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: + 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 + description: Short description of the application. + 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.chatMessageAttachment: + title: chatMessageAttachment + type: object + properties: + content: + type: string + description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' + nullable: true + contentType: + type: string + description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' + nullable: true + contentUrl: + type: string + description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' + nullable: true + id: + type: string + description: Read-only. Unique id of the attachment. + nullable: true + name: + type: string + description: Name of the attachment. + nullable: true + thumbnailUrl: + type: string + description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' + 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: + - normal + - high + - urgent + - unknownFutureValue + type: string + microsoft.graph.chatMessageMention: + title: chatMessageMention + type: object + properties: + id: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' + format: int32 + nullable: true + mentioned: + $ref: '#/components/schemas/microsoft.graph.identitySet' + mentionText: + type: string + description: 'String used to represent the mention. For example, a user''s display name, a team name.' + nullable: true + additionalProperties: + type: object + microsoft.graph.chatMessageType: + title: chatMessageType + enum: + - message + - chatEvent + - typing + - unknownFutureValue + type: string + microsoft.graph.chatMessagePolicyViolation: + title: chatMessagePolicyViolation + type: object + properties: + dlpAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' + justificationText: + type: string + description: Justification text provided by the sender of the message when overriding a policy violation. + nullable: true + policyTip: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' + userAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' + verdictDetails: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' + additionalProperties: + type: object + microsoft.graph.chatMessageReaction: + title: chatMessageReaction + 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: 'The Timestamp type represents date and time information using ISO 8601 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 + description: 'Supported values are like, angry, sad, laugh, heart, surprised.' + user: + $ref: '#/components/schemas/microsoft.graph.identitySet' + additionalProperties: + type: object + microsoft.graph.chatMessageHostedContent: + allOf: + - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' + - title: chatMessageHostedContent + type: object + additionalProperties: + type: object + 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.giphyRatingType: title: giphyRatingType enum: @@ -20246,122 +20823,6 @@ components: - private - unknownFutureValue type: string - 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 - 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: 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. 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.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.assignedLabel: title: assignedLabel type: object @@ -20405,7 +20866,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -20548,68 +21009,6 @@ components: description: Read-only. Nullable. Returns the plannerPlans owned by the group. 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: - 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 - description: Short description of the application. - 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 @@ -20644,51 +21043,6 @@ components: - failed - unknownFutureValue type: string - 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 - 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 - topic: - type: string - description: (Optional) Subject or topic for the chat. Only available for group chats. - 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.wellknownListName: title: wellknownListName enum: @@ -21112,6 +21466,89 @@ components: nullable: true additionalProperties: type: object + 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.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.scheduleChangeRequest: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' @@ -21219,148 +21656,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.chatMessageAttachment: - title: chatMessageAttachment - type: object - properties: - content: - type: string - description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' - nullable: true - contentType: - type: string - description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' - nullable: true - contentUrl: - type: string - description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' - nullable: true - id: - type: string - description: Read-only. Unique id of the attachment. - nullable: true - name: - type: string - description: Name of the attachment. - nullable: true - thumbnailUrl: - type: string - description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' - 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: - - normal - - high - - urgent - - unknownFutureValue - type: string - microsoft.graph.chatMessageMention: - title: chatMessageMention - type: object - properties: - id: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' - format: int32 - nullable: true - mentioned: - $ref: '#/components/schemas/microsoft.graph.identitySet' - mentionText: - type: string - description: 'String used to represent the mention. For example, a user''s display name, a team name.' - nullable: true - additionalProperties: - type: object - microsoft.graph.chatMessageType: - title: chatMessageType - enum: - - message - - chatEvent - - typing - - unknownFutureValue - type: string - microsoft.graph.chatMessagePolicyViolation: - title: chatMessagePolicyViolation - type: object - properties: - dlpAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' - justificationText: - type: string - description: Justification text provided by the sender of the message when overriding a policy violation. - nullable: true - policyTip: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' - userAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' - verdictDetails: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' - additionalProperties: - type: object - microsoft.graph.chatMessageReaction: - title: chatMessageReaction - 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: 'The Timestamp type represents date and time information using ISO 8601 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 - description: 'Supported values are like, angry, sad, laugh, heart, surprised.' - user: - $ref: '#/components/schemas/microsoft.graph.identitySet' - additionalProperties: - type: object - microsoft.graph.chatMessageHostedContent: - allOf: - - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' - - title: chatMessageHostedContent - type: object - additionalProperties: - type: object - 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.settingValue: title: settingValue type: object @@ -21432,37 +21727,6 @@ components: description: The collection of single-value extended properties defined for the post. Read-only. Nullable. additionalProperties: type: object - 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.chatType: - title: chatType - enum: - - oneOnOne - - group - - meeting - - unknownFutureValue - type: string microsoft.graph.taskStatus: title: taskStatus enum: @@ -21627,66 +21891,6 @@ components: $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.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 b24f5dcf156..5c92194265f 100644 --- a/openApiDocs/v1.0/Groups.yml +++ b/openApiDocs/v1.0/Groups.yml @@ -293,10 +293,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -561,6 +560,7 @@ paths: tags: - groups.group summary: Get entity from groups by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: groups.group_GetGroup parameters: - name: group-id @@ -572,10 +572,9 @@ paths: x-ms-docs-key-type: group - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -819,6 +818,7 @@ paths: tags: - groups.group summary: Update entity in groups + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: groups.group_UpdateGroup parameters: - name: group-id @@ -845,6 +845,7 @@ paths: tags: - groups.group summary: Delete entity from groups + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: groups.group_DeleteGroup parameters: - name: group-id @@ -870,6 +871,7 @@ paths: tags: - groups.directoryObject summary: Get acceptedSenders from groups + description: The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. operationId: groups_ListAcceptedSenders parameters: - name: group-id @@ -952,6 +954,7 @@ paths: tags: - groups.directoryObject summary: Get ref of acceptedSenders from groups + description: The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. operationId: groups_ListRefAcceptedSenders parameters: - name: group-id @@ -1008,6 +1011,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to acceptedSenders for groups + description: The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. operationId: groups_CreateRefAcceptedSenders parameters: - name: group-id @@ -4290,6 +4294,7 @@ paths: tags: - groups.conversation summary: Get conversations from groups + description: The group's conversations. operationId: groups_ListConversations parameters: - name: group-id @@ -4385,6 +4390,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to conversations for groups + description: The group's conversations. operationId: groups_CreateConversations parameters: - name: group-id @@ -4416,6 +4422,7 @@ paths: tags: - groups.conversation summary: Get conversations from groups + description: The group's conversations. operationId: groups_GetConversations parameters: - name: group-id @@ -4483,6 +4490,7 @@ paths: tags: - groups.conversation summary: Update the navigation property conversations in groups + description: The group's conversations. operationId: groups_UpdateConversations parameters: - name: group-id @@ -4516,6 +4524,7 @@ paths: tags: - groups.conversation summary: Delete navigation property conversations for groups + description: The group's conversations. operationId: groups_DeleteConversations parameters: - name: group-id @@ -4548,6 +4557,7 @@ paths: tags: - groups.conversation summary: Get threads from groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_ListThreads parameters: - name: group-id @@ -4659,6 +4669,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to threads for groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_CreateThreads parameters: - name: group-id @@ -4697,6 +4708,7 @@ paths: tags: - groups.conversation summary: Get threads from groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_GetThreads parameters: - name: group-id @@ -4775,6 +4787,7 @@ paths: tags: - groups.conversation summary: Update the navigation property threads in groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_UpdateThreads parameters: - name: group-id @@ -4815,6 +4828,7 @@ paths: tags: - groups.conversation summary: Delete navigation property threads for groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_DeleteThreads parameters: - name: group-id @@ -4900,6 +4914,7 @@ paths: tags: - groups.conversation summary: Get posts from groups + description: Read-only. Nullable. operationId: groups.conversations.threads_ListPosts parameters: - name: group-id @@ -5038,6 +5053,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to posts for groups + description: Read-only. Nullable. operationId: groups.conversations.threads_CreatePosts parameters: - name: group-id @@ -5083,6 +5099,7 @@ paths: tags: - groups.conversation summary: Get posts from groups + description: Read-only. Nullable. operationId: groups.conversations.threads_GetPosts parameters: - name: group-id @@ -5209,6 +5226,7 @@ paths: tags: - groups.conversation summary: Update the navigation property posts in groups + description: Read-only. Nullable. operationId: groups.conversations.threads_UpdatePosts parameters: - name: group-id @@ -5256,6 +5274,7 @@ paths: tags: - groups.conversation summary: Delete navigation property posts for groups + description: Read-only. Nullable. operationId: groups.conversations.threads_DeletePosts parameters: - name: group-id @@ -5302,6 +5321,7 @@ paths: tags: - groups.conversation summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.conversations.threads.posts_ListAttachments parameters: - name: group-id @@ -5416,6 +5436,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to attachments for groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.conversations.threads.posts_CreateAttachments parameters: - name: group-id @@ -5468,6 +5489,7 @@ paths: tags: - groups.conversation summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.conversations.threads.posts_GetAttachments parameters: - name: group-id @@ -5548,6 +5570,7 @@ paths: tags: - groups.conversation summary: Update the navigation property attachments in groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.conversations.threads.posts_UpdateAttachments parameters: - name: group-id @@ -5602,6 +5625,7 @@ paths: tags: - groups.conversation summary: Delete navigation property attachments for groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.conversations.threads.posts_DeleteAttachments parameters: - name: group-id @@ -5712,6 +5736,7 @@ paths: tags: - groups.conversation summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_ListExtensions parameters: - name: group-id @@ -5811,6 +5836,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_CreateExtensions parameters: - name: group-id @@ -5863,6 +5889,7 @@ paths: tags: - groups.conversation summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_GetExtensions parameters: - name: group-id @@ -5938,6 +5965,7 @@ paths: tags: - groups.conversation summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_UpdateExtensions parameters: - name: group-id @@ -5992,6 +6020,7 @@ paths: tags: - groups.conversation summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_DeleteExtensions parameters: - name: group-id @@ -6045,6 +6074,7 @@ paths: tags: - groups.conversation summary: Get inReplyTo from groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.conversations.threads.posts_GetInReplyTo parameters: - name: group-id @@ -6171,6 +6201,7 @@ paths: tags: - groups.conversation summary: Update the navigation property inReplyTo in groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.conversations.threads.posts_UpdateInReplyTo parameters: - name: group-id @@ -6218,6 +6249,7 @@ paths: tags: - groups.conversation summary: Delete navigation property inReplyTo for groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.conversations.threads.posts_DeleteInReplyTo parameters: - name: group-id @@ -6486,6 +6518,7 @@ paths: tags: - groups.conversation summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_ListMultiValueExtendedProperties parameters: - name: group-id @@ -6588,6 +6621,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -6640,6 +6674,7 @@ paths: tags: - groups.conversation summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_GetMultiValueExtendedProperties parameters: - name: group-id @@ -6716,6 +6751,7 @@ paths: tags: - groups.conversation summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -6770,6 +6806,7 @@ paths: tags: - groups.conversation summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -6823,6 +6860,7 @@ paths: tags: - groups.conversation summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_ListSingleValueExtendedProperties parameters: - name: group-id @@ -6925,6 +6963,7 @@ paths: tags: - groups.conversation summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -6977,6 +7016,7 @@ paths: tags: - groups.conversation summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_GetSingleValueExtendedProperties parameters: - name: group-id @@ -7053,6 +7093,7 @@ paths: tags: - groups.conversation summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -7107,6 +7148,7 @@ paths: tags: - groups.conversation summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -7160,6 +7202,7 @@ paths: tags: - groups.directoryObject summary: Get createdOnBehalfOf from groups + description: 'The user (or application) that created the group. Note: This is not set if the user is an administrator. Read-only.' operationId: groups_GetCreatedOnBehalfOf parameters: - name: group-id @@ -7209,6 +7252,7 @@ paths: tags: - groups.directoryObject summary: Get ref of createdOnBehalfOf from groups + description: 'The user (or application) that created the group. Note: This is not set if the user is an administrator. Read-only.' operationId: groups_GetRefCreatedOnBehalfOf parameters: - name: group-id @@ -7232,6 +7276,7 @@ paths: tags: - groups.directoryObject summary: Update the ref of navigation property createdOnBehalfOf in groups + description: 'The user (or application) that created the group. Note: This is not set if the user is an administrator. Read-only.' operationId: groups_SetRefCreatedOnBehalfOf parameters: - name: group-id @@ -7260,6 +7305,7 @@ paths: tags: - groups.directoryObject summary: Delete ref of navigation property createdOnBehalfOf for groups + description: 'The user (or application) that created the group. Note: This is not set if the user is an administrator. Read-only.' operationId: groups_DeleteRefCreatedOnBehalfOf parameters: - name: group-id @@ -8825,6 +8871,7 @@ paths: tags: - groups.extension summary: Get extensions from groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_ListExtensions parameters: - name: group-id @@ -8903,6 +8950,7 @@ paths: tags: - groups.extension summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_CreateExtensions parameters: - name: group-id @@ -8934,6 +8982,7 @@ paths: tags: - groups.extension summary: Get extensions from groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_GetExtensions parameters: - name: group-id @@ -8988,6 +9037,7 @@ paths: tags: - groups.extension summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_UpdateExtensions parameters: - name: group-id @@ -9021,6 +9071,7 @@ paths: tags: - groups.extension summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_DeleteExtensions parameters: - name: group-id @@ -9053,6 +9104,7 @@ paths: tags: - groups.directoryObject summary: Get memberOf from groups + description: 'Groups and administrative units that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.' operationId: groups_ListMemberOf parameters: - name: group-id @@ -9135,6 +9187,7 @@ paths: tags: - groups.directoryObject summary: Get ref of memberOf from groups + description: 'Groups and administrative units that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.' operationId: groups_ListRefMemberOf parameters: - name: group-id @@ -9191,6 +9244,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to memberOf for groups + description: 'Groups and administrative units that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.' operationId: groups_CreateRefMemberOf parameters: - name: group-id @@ -9226,6 +9280,7 @@ paths: tags: - groups.directoryObject summary: Get members from groups + description: 'Users, contacts, and groups that are members of this group. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_ListMembers parameters: - name: group-id @@ -9308,6 +9363,7 @@ paths: tags: - groups.directoryObject summary: Get ref of members from groups + description: 'Users, contacts, and groups that are members of this group. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_ListRefMembers parameters: - name: group-id @@ -9364,6 +9420,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to members for groups + description: 'Users, contacts, and groups that are members of this group. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_CreateRefMembers parameters: - name: group-id @@ -9399,6 +9456,7 @@ paths: tags: - groups.directoryObject summary: Get membersWithLicenseErrors from groups + description: A list of group members with license errors from this group-based license assignment. Read-only. operationId: groups_ListMembersWithLicenseErrors parameters: - name: group-id @@ -9481,6 +9539,7 @@ paths: tags: - groups.directoryObject summary: Get ref of membersWithLicenseErrors from groups + description: A list of group members with license errors from this group-based license assignment. Read-only. operationId: groups_ListRefMembersWithLicenseErrors parameters: - name: group-id @@ -9537,6 +9596,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to membersWithLicenseErrors for groups + description: A list of group members with license errors from this group-based license assignment. Read-only. operationId: groups_CreateRefMembersWithLicenseErrors parameters: - name: group-id @@ -16712,6 +16772,7 @@ paths: tags: - groups.directoryObject summary: Get owners from groups + description: 'The owners of the group. The owners are a set of non-admin users who are allowed to modify this object. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_ListOwners parameters: - name: group-id @@ -16794,6 +16855,7 @@ paths: tags: - groups.directoryObject summary: Get ref of owners from groups + description: 'The owners of the group. The owners are a set of non-admin users who are allowed to modify this object. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_ListRefOwners parameters: - name: group-id @@ -16850,6 +16912,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to owners for groups + description: 'The owners of the group. The owners are a set of non-admin users who are allowed to modify this object. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable.' operationId: groups_CreateRefOwners parameters: - name: group-id @@ -16885,6 +16948,7 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Get permissionGrants from groups + description: The permission that has been granted for a group to a specific application. operationId: groups_ListPermissionGrants parameters: - name: group-id @@ -16981,6 +17045,7 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Create new navigation property to permissionGrants for groups + description: The permission that has been granted for a group to a specific application. operationId: groups_CreatePermissionGrants parameters: - name: group-id @@ -17012,6 +17077,7 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Get permissionGrants from groups + description: The permission that has been granted for a group to a specific application. operationId: groups_GetPermissionGrants parameters: - name: group-id @@ -17072,6 +17138,7 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Update the navigation property permissionGrants in groups + description: The permission that has been granted for a group to a specific application. operationId: groups_UpdatePermissionGrants parameters: - name: group-id @@ -17105,6 +17172,7 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Delete navigation property permissionGrants for groups + description: The permission that has been granted for a group to a specific application. operationId: groups_DeletePermissionGrants parameters: - name: group-id @@ -17137,6 +17205,7 @@ paths: tags: - groups.profilePhoto summary: Get photo from groups + description: The group's profile photo. operationId: groups_GetPhoto parameters: - name: group-id @@ -17186,6 +17255,7 @@ paths: tags: - groups.profilePhoto summary: Update the navigation property photo in groups + description: The group's profile photo. operationId: groups_UpdatePhoto parameters: - name: group-id @@ -17212,6 +17282,7 @@ paths: tags: - groups.profilePhoto summary: Delete navigation property photo for groups + description: The group's profile photo. operationId: groups_DeletePhoto parameters: - name: group-id @@ -17237,6 +17308,7 @@ paths: tags: - groups.profilePhoto summary: Get media content for the navigation property photo from groups + description: The group's profile photo. operationId: groups_GetPhotoContent parameters: - name: group-id @@ -17261,6 +17333,7 @@ paths: tags: - groups.profilePhoto summary: Update media content for the navigation property photo in groups + description: The group's profile photo. operationId: groups_SetPhotoContent parameters: - name: group-id @@ -17289,6 +17362,7 @@ paths: tags: - groups.profilePhoto summary: Get photos from groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_ListPhotos parameters: - name: group-id @@ -17373,6 +17447,7 @@ paths: tags: - groups.profilePhoto summary: Create new navigation property to photos for groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_CreatePhotos parameters: - name: group-id @@ -17404,6 +17479,7 @@ paths: tags: - groups.profilePhoto summary: Get photos from groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_GetPhotos parameters: - name: group-id @@ -17460,6 +17536,7 @@ paths: tags: - groups.profilePhoto summary: Update the navigation property photos in groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_UpdatePhotos parameters: - name: group-id @@ -17493,6 +17570,7 @@ paths: tags: - groups.profilePhoto summary: Delete navigation property photos for groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_DeletePhotos parameters: - name: group-id @@ -17591,6 +17669,7 @@ paths: tags: - groups.directoryObject summary: Get rejectedSenders from groups + description: The list of users or groups that are not allowed to create posts or calendar events in this group. Nullable operationId: groups_ListRejectedSenders parameters: - name: group-id @@ -17673,6 +17752,7 @@ paths: tags: - groups.directoryObject summary: Get ref of rejectedSenders from groups + description: The list of users or groups that are not allowed to create posts or calendar events in this group. Nullable operationId: groups_ListRefRejectedSenders parameters: - name: group-id @@ -17729,6 +17809,7 @@ paths: tags: - groups.directoryObject summary: Create new navigation property ref to rejectedSenders for groups + description: The list of users or groups that are not allowed to create posts or calendar events in this group. Nullable operationId: groups_CreateRefRejectedSenders parameters: - name: group-id @@ -17764,6 +17845,7 @@ paths: tags: - groups.conversationThread summary: Get threads from groups + description: The group's conversation threads. Nullable. operationId: groups_ListThreads parameters: - name: group-id @@ -17868,6 +17950,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to threads for groups + description: The group's conversation threads. Nullable. operationId: groups_CreateThreads parameters: - name: group-id @@ -17899,6 +17982,7 @@ paths: tags: - groups.conversationThread summary: Get threads from groups + description: The group's conversation threads. Nullable. operationId: groups_GetThreads parameters: - name: group-id @@ -17969,6 +18053,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property threads in groups + description: The group's conversation threads. Nullable. operationId: groups_UpdateThreads parameters: - name: group-id @@ -18002,6 +18087,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property threads for groups + description: The group's conversation threads. Nullable. operationId: groups_DeleteThreads parameters: - name: group-id @@ -18073,6 +18159,7 @@ paths: tags: - groups.conversationThread summary: Get posts from groups + description: Read-only. Nullable. operationId: groups.threads_ListPosts parameters: - name: group-id @@ -18204,6 +18291,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to posts for groups + description: Read-only. Nullable. operationId: groups.threads_CreatePosts parameters: - name: group-id @@ -18242,6 +18330,7 @@ paths: tags: - groups.conversationThread summary: Get posts from groups + description: Read-only. Nullable. operationId: groups.threads_GetPosts parameters: - name: group-id @@ -18356,6 +18445,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property posts in groups + description: Read-only. Nullable. operationId: groups.threads_UpdatePosts parameters: - name: group-id @@ -18396,6 +18486,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property posts for groups + description: Read-only. Nullable. operationId: groups.threads_DeletePosts parameters: - name: group-id @@ -18435,6 +18526,7 @@ paths: tags: - groups.conversationThread summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.threads.posts_ListAttachments parameters: - name: group-id @@ -18542,6 +18634,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to attachments for groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.threads.posts_CreateAttachments parameters: - name: group-id @@ -18587,6 +18680,7 @@ paths: tags: - groups.conversationThread summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.threads.posts_GetAttachments parameters: - name: group-id @@ -18660,6 +18754,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property attachments in groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.threads.posts_UpdateAttachments parameters: - name: group-id @@ -18707,6 +18802,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property attachments for groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable.' operationId: groups.threads.posts_DeleteAttachments parameters: - name: group-id @@ -18803,6 +18899,7 @@ paths: tags: - groups.conversationThread summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.threads.posts_ListExtensions parameters: - name: group-id @@ -18895,6 +18992,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to extensions for groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.threads.posts_CreateExtensions parameters: - name: group-id @@ -18940,6 +19038,7 @@ paths: tags: - groups.conversationThread summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.threads.posts_GetExtensions parameters: - name: group-id @@ -19008,6 +19107,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property extensions in groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.threads.posts_UpdateExtensions parameters: - name: group-id @@ -19055,6 +19155,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property extensions for groups + description: The collection of open extensions defined for the post. Read-only. Nullable. operationId: groups.threads.posts_DeleteExtensions parameters: - name: group-id @@ -19101,6 +19202,7 @@ paths: tags: - groups.conversationThread summary: Get inReplyTo from groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.threads.posts_GetInReplyTo parameters: - name: group-id @@ -19215,6 +19317,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property inReplyTo in groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.threads.posts_UpdateInReplyTo parameters: - name: group-id @@ -19255,6 +19358,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property inReplyTo for groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. operationId: groups.threads.posts_DeleteInReplyTo parameters: - name: group-id @@ -19488,6 +19592,7 @@ paths: tags: - groups.conversationThread summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_ListMultiValueExtendedProperties parameters: - name: group-id @@ -19583,6 +19688,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_CreateMultiValueExtendedProperties parameters: - name: group-id @@ -19628,6 +19734,7 @@ paths: tags: - groups.conversationThread summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_GetMultiValueExtendedProperties parameters: - name: group-id @@ -19697,6 +19804,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property multiValueExtendedProperties in groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_UpdateMultiValueExtendedProperties parameters: - name: group-id @@ -19744,6 +19852,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property multiValueExtendedProperties for groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_DeleteMultiValueExtendedProperties parameters: - name: group-id @@ -19790,6 +19899,7 @@ paths: tags: - groups.conversationThread summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_ListSingleValueExtendedProperties parameters: - name: group-id @@ -19885,6 +19995,7 @@ paths: tags: - groups.conversationThread summary: Create new navigation property to singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_CreateSingleValueExtendedProperties parameters: - name: group-id @@ -19930,6 +20041,7 @@ paths: tags: - groups.conversationThread summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_GetSingleValueExtendedProperties parameters: - name: group-id @@ -19999,6 +20111,7 @@ paths: tags: - groups.conversationThread summary: Update the navigation property singleValueExtendedProperties in groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_UpdateSingleValueExtendedProperties parameters: - name: group-id @@ -20046,6 +20159,7 @@ paths: tags: - groups.conversationThread summary: Delete navigation property singleValueExtendedProperties for groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_DeleteSingleValueExtendedProperties parameters: - name: group-id @@ -20779,6 +20893,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -21376,7 +21491,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -21926,7 +22041,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true displayName: type: string @@ -23746,7 +23861,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -23759,7 +23874,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -23771,12 +23886,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -23785,11 +23900,11 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -23805,7 +23920,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -23823,7 +23938,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -23842,7 +23957,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -23861,11 +23976,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -23873,7 +23988,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -23920,7 +24035,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -23929,7 +24044,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredLanguage: type: string @@ -23957,15 +24072,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -23973,7 +24088,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -24209,6 +24324,10 @@ components: $ref: '#/components/schemas/microsoft.graph.presence' authentication: $ref: '#/components/schemas/microsoft.graph.authentication' + chats: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' joinedTeams: type: array items: @@ -25747,7 +25866,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -25902,7 +26021,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -26108,7 +26227,7 @@ components: 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).' + description: 'Indicates whether 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 principalId: type: string @@ -26394,6 +26513,10 @@ components: type: string description: The mailFolder's display name. nullable: true + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. + nullable: true parentFolderId: type: string description: The unique identifier for the mailFolder's parent mailFolder. @@ -26799,6 +26922,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -26812,6 +26939,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -26851,6 +26982,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -26865,6 +27000,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -26885,6 +27024,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -27224,6 +27367,51 @@ components: $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 + 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 + topic: + type: string + description: (Optional) Subject or topic for the chat. Only available for group chats. + 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' @@ -28319,6 +28507,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState @@ -28913,6 +29104,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: @@ -29008,6 +29200,14 @@ components: $ref: '#/components/schemas/microsoft.graph.device' additionalProperties: type: object + microsoft.graph.chatType: + title: chatType + enum: + - oneOnOne + - group + - meeting + - unknownFutureValue + type: string microsoft.graph.userScopeTeamsAppInstallation: allOf: - $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation' @@ -30023,7 +30223,7 @@ components: 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -30038,6 +30238,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -30053,51 +30254,6 @@ components: - weak - unknown type: string - 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 - 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 - topic: - type: string - description: (Optional) Subject or topic for the chat. Only available for group chats. - 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.wellknownListName: title: wellknownListName enum: @@ -30496,14 +30652,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.chatType: - title: chatType - enum: - - oneOnOne - - group - - meeting - - unknownFutureValue - type: string microsoft.graph.taskStatus: title: taskStatus enum: diff --git a/openApiDocs/v1.0/Identity.DirectoryManagement.yml b/openApiDocs/v1.0/Identity.DirectoryManagement.yml index a610546ea1e..6fdeb0b8a6d 100644 --- a/openApiDocs/v1.0/Identity.DirectoryManagement.yml +++ b/openApiDocs/v1.0/Identity.DirectoryManagement.yml @@ -15,10 +15,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -168,6 +167,7 @@ paths: tags: - contacts.orgContact summary: Get entity from contacts by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contacts.orgContact_GetOrgContact parameters: - name: orgContact-id @@ -179,10 +179,9 @@ paths: x-ms-docs-key-type: orgContact - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -265,6 +264,7 @@ paths: tags: - contacts.orgContact summary: Update entity in contacts + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contacts.orgContact_UpdateOrgContact parameters: - name: orgContact-id @@ -291,6 +291,7 @@ paths: tags: - contacts.orgContact summary: Delete entity from contacts + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contacts.orgContact_DeleteOrgContact parameters: - name: orgContact-id @@ -316,6 +317,7 @@ paths: tags: - contacts.directoryObject summary: Get directReports from contacts + description: The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. operationId: contacts_ListDirectReports parameters: - name: orgContact-id @@ -398,6 +400,7 @@ paths: tags: - contacts.directoryObject summary: Get ref of directReports from contacts + description: The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. operationId: contacts_ListRefDirectReports parameters: - name: orgContact-id @@ -454,6 +457,7 @@ paths: tags: - contacts.directoryObject summary: Create new navigation property ref to directReports for contacts + description: The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. operationId: contacts_CreateRefDirectReports parameters: - name: orgContact-id @@ -489,6 +493,7 @@ paths: tags: - contacts.directoryObject summary: Get manager from contacts + description: The user or contact that is this contact's manager. Read-only. operationId: contacts_GetManager parameters: - name: orgContact-id @@ -538,6 +543,7 @@ paths: tags: - contacts.directoryObject summary: Get ref of manager from contacts + description: The user or contact that is this contact's manager. Read-only. operationId: contacts_GetRefManager parameters: - name: orgContact-id @@ -561,6 +567,7 @@ paths: tags: - contacts.directoryObject summary: Update the ref of navigation property manager in contacts + description: The user or contact that is this contact's manager. Read-only. operationId: contacts_SetRefManager parameters: - name: orgContact-id @@ -589,6 +596,7 @@ paths: tags: - contacts.directoryObject summary: Delete ref of navigation property manager for contacts + description: The user or contact that is this contact's manager. Read-only. operationId: contacts_DeleteRefManager parameters: - name: orgContact-id @@ -614,6 +622,7 @@ paths: tags: - contacts.directoryObject summary: Get memberOf from contacts + description: Groups that this contact is a member of. Read-only. Nullable. operationId: contacts_ListMemberOf parameters: - name: orgContact-id @@ -696,6 +705,7 @@ paths: tags: - contacts.directoryObject summary: Get ref of memberOf from contacts + description: Groups that this contact is a member of. Read-only. Nullable. operationId: contacts_ListRefMemberOf parameters: - name: orgContact-id @@ -752,6 +762,7 @@ paths: tags: - contacts.directoryObject summary: Create new navigation property ref to memberOf for contacts + description: Groups that this contact is a member of. Read-only. Nullable. operationId: contacts_CreateRefMemberOf parameters: - name: orgContact-id @@ -1376,6 +1387,7 @@ paths: tags: - contracts.contract summary: Get entity from contracts by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contracts.contract_GetContract parameters: - name: contract-id @@ -1428,6 +1440,7 @@ paths: tags: - contracts.contract summary: Update entity in contracts + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contracts.contract_UpdateContract parameters: - name: contract-id @@ -1454,6 +1467,7 @@ paths: tags: - contracts.contract summary: Delete entity from contracts + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: contracts.contract_DeleteContract parameters: - name: contract-id @@ -1772,10 +1786,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -1942,6 +1955,7 @@ paths: tags: - devices.device summary: Get entity from devices by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: devices.device_GetDevice parameters: - name: device-id @@ -1953,10 +1967,9 @@ paths: x-ms-docs-key-type: device - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -2050,6 +2063,7 @@ paths: tags: - devices.device summary: Update entity in devices + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: devices.device_UpdateDevice parameters: - name: device-id @@ -2076,6 +2090,7 @@ paths: tags: - devices.device summary: Delete entity from devices + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: devices.device_DeleteDevice parameters: - name: device-id @@ -2101,6 +2116,7 @@ paths: tags: - devices.extension summary: Get extensions from devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_ListExtensions parameters: - name: device-id @@ -2179,6 +2195,7 @@ paths: tags: - devices.extension summary: Create new navigation property to extensions for devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_CreateExtensions parameters: - name: device-id @@ -2210,6 +2227,7 @@ paths: tags: - devices.extension summary: Get extensions from devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_GetExtensions parameters: - name: device-id @@ -2264,6 +2282,7 @@ paths: tags: - devices.extension summary: Update the navigation property extensions in devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_UpdateExtensions parameters: - name: device-id @@ -2297,6 +2316,7 @@ paths: tags: - devices.extension summary: Delete navigation property extensions for devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_DeleteExtensions parameters: - name: device-id @@ -2329,6 +2349,7 @@ paths: tags: - devices.directoryObject summary: Get memberOf from devices + description: Groups that this device is a member of. Read-only. Nullable. operationId: devices_ListMemberOf parameters: - name: device-id @@ -2411,6 +2432,7 @@ paths: tags: - devices.directoryObject summary: Get ref of memberOf from devices + description: Groups that this device is a member of. Read-only. Nullable. operationId: devices_ListRefMemberOf parameters: - name: device-id @@ -2467,6 +2489,7 @@ paths: tags: - devices.directoryObject summary: Create new navigation property ref to memberOf for devices + description: Groups that this device is a member of. Read-only. Nullable. operationId: devices_CreateRefMemberOf parameters: - name: device-id @@ -2686,6 +2709,7 @@ paths: tags: - devices.directoryObject summary: Get registeredOwners from devices + 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.' operationId: devices_ListRegisteredOwners parameters: - name: device-id @@ -2768,6 +2792,7 @@ paths: tags: - devices.directoryObject summary: Get ref of registeredOwners from devices + 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.' operationId: devices_ListRefRegisteredOwners parameters: - name: device-id @@ -2824,6 +2849,7 @@ paths: tags: - devices.directoryObject summary: Create new navigation property ref to registeredOwners for devices + 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.' operationId: devices_CreateRefRegisteredOwners parameters: - name: device-id @@ -2859,6 +2885,7 @@ paths: tags: - devices.directoryObject summary: Get registeredUsers from devices + 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.' operationId: devices_ListRegisteredUsers parameters: - name: device-id @@ -2941,6 +2968,7 @@ paths: tags: - devices.directoryObject summary: Get ref of registeredUsers from devices + 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.' operationId: devices_ListRefRegisteredUsers parameters: - name: device-id @@ -2997,6 +3025,7 @@ paths: tags: - devices.directoryObject summary: Create new navigation property ref to registeredUsers for devices + 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.' operationId: devices_CreateRefRegisteredUsers parameters: - name: device-id @@ -3032,6 +3061,7 @@ paths: tags: - devices.directoryObject summary: Get transitiveMemberOf from devices + description: Groups that this device is a member of. This operation is transitive. operationId: devices_ListTransitiveMemberOf parameters: - name: device-id @@ -3114,6 +3144,7 @@ paths: tags: - devices.directoryObject summary: Get ref of transitiveMemberOf from devices + description: Groups that this device is a member of. This operation is transitive. operationId: devices_ListRefTransitiveMemberOf parameters: - name: device-id @@ -3170,6 +3201,7 @@ paths: tags: - devices.directoryObject summary: Create new navigation property ref to transitiveMemberOf for devices + description: Groups that this device is a member of. This operation is transitive. operationId: devices_CreateRefTransitiveMemberOf parameters: - name: device-id @@ -3611,6 +3643,7 @@ paths: tags: - directory.administrativeUnit summary: Get extensions from directory + description: The collection of open extensions defined for this Administrative Unit. Nullable. operationId: directory.administrativeUnits_ListExtensions parameters: - name: administrativeUnit-id @@ -3689,6 +3722,7 @@ paths: tags: - directory.administrativeUnit summary: Create new navigation property to extensions for directory + description: The collection of open extensions defined for this Administrative Unit. Nullable. operationId: directory.administrativeUnits_CreateExtensions parameters: - name: administrativeUnit-id @@ -3720,6 +3754,7 @@ paths: tags: - directory.administrativeUnit summary: Get extensions from directory + description: The collection of open extensions defined for this Administrative Unit. Nullable. operationId: directory.administrativeUnits_GetExtensions parameters: - name: administrativeUnit-id @@ -3774,6 +3809,7 @@ paths: tags: - directory.administrativeUnit summary: Update the navigation property extensions in directory + description: The collection of open extensions defined for this Administrative Unit. Nullable. operationId: directory.administrativeUnits_UpdateExtensions parameters: - name: administrativeUnit-id @@ -3807,6 +3843,7 @@ paths: tags: - directory.administrativeUnit summary: Delete navigation property extensions for directory + description: The collection of open extensions defined for this Administrative Unit. Nullable. operationId: directory.administrativeUnits_DeleteExtensions parameters: - name: administrativeUnit-id @@ -3839,6 +3876,7 @@ paths: tags: - directory.administrativeUnit summary: Get members from directory + description: 'Users and groups that are members of this Adminsitrative Unit. HTTP Methods: GET (list members), POST (add members), DELETE (remove members).' operationId: directory.administrativeUnits_ListMembers parameters: - name: administrativeUnit-id @@ -3921,6 +3959,7 @@ paths: tags: - directory.administrativeUnit summary: Get ref of members from directory + description: 'Users and groups that are members of this Adminsitrative Unit. HTTP Methods: GET (list members), POST (add members), DELETE (remove members).' operationId: directory.administrativeUnits_ListRefMembers parameters: - name: administrativeUnit-id @@ -3977,6 +4016,7 @@ paths: tags: - directory.administrativeUnit summary: Create new navigation property ref to members for directory + description: 'Users and groups that are members of this Adminsitrative Unit. HTTP Methods: GET (list members), POST (add members), DELETE (remove members).' operationId: directory.administrativeUnits_CreateRefMembers parameters: - name: administrativeUnit-id @@ -4012,6 +4052,7 @@ paths: tags: - directory.administrativeUnit summary: Get scopedRoleMembers from directory + description: 'Scoped-role members of this Administrative Unit. HTTP Methods: GET (list scopedRoleMemberships), POST (add scopedRoleMembership), DELETE (remove scopedRoleMembership).' operationId: directory.administrativeUnits_ListScopedRoleMembers parameters: - name: administrativeUnit-id @@ -4099,6 +4140,7 @@ paths: tags: - directory.administrativeUnit summary: Create new navigation property to scopedRoleMembers for directory + description: 'Scoped-role members of this Administrative Unit. HTTP Methods: GET (list scopedRoleMemberships), POST (add scopedRoleMembership), DELETE (remove scopedRoleMembership).' operationId: directory.administrativeUnits_CreateScopedRoleMembers parameters: - name: administrativeUnit-id @@ -4130,6 +4172,7 @@ paths: tags: - directory.administrativeUnit summary: Get scopedRoleMembers from directory + description: 'Scoped-role members of this Administrative Unit. HTTP Methods: GET (list scopedRoleMemberships), POST (add scopedRoleMembership), DELETE (remove scopedRoleMembership).' operationId: directory.administrativeUnits_GetScopedRoleMembers parameters: - name: administrativeUnit-id @@ -4187,6 +4230,7 @@ paths: tags: - directory.administrativeUnit summary: Update the navigation property scopedRoleMembers in directory + description: 'Scoped-role members of this Administrative Unit. HTTP Methods: GET (list scopedRoleMemberships), POST (add scopedRoleMembership), DELETE (remove scopedRoleMembership).' operationId: directory.administrativeUnits_UpdateScopedRoleMembers parameters: - name: administrativeUnit-id @@ -4220,6 +4264,7 @@ paths: tags: - directory.administrativeUnit summary: Delete navigation property scopedRoleMembers for directory + description: 'Scoped-role members of this Administrative Unit. HTTP Methods: GET (list scopedRoleMemberships), POST (add scopedRoleMembership), DELETE (remove scopedRoleMembership).' operationId: directory.administrativeUnits_DeleteScopedRoleMembers parameters: - name: administrativeUnit-id @@ -4270,6 +4315,7 @@ paths: tags: - directory.directoryObject summary: Get deletedItems from directory + description: Recently deleted items. Read-only. Nullable. operationId: directory_ListDeletedItems parameters: - $ref: '#/components/parameters/top' @@ -4344,6 +4390,7 @@ paths: tags: - directory.directoryObject summary: Create new navigation property to deletedItems for directory + description: Recently deleted items. Read-only. Nullable. operationId: directory_CreateDeletedItems requestBody: description: New navigation property @@ -4367,6 +4414,7 @@ paths: tags: - directory.directoryObject summary: Get deletedItems from directory + description: Recently deleted items. Read-only. Nullable. operationId: directory_GetDeletedItems parameters: - name: directoryObject-id @@ -4415,6 +4463,7 @@ paths: tags: - directory.directoryObject summary: Update the navigation property deletedItems in directory + description: Recently deleted items. Read-only. Nullable. operationId: directory_UpdateDeletedItems parameters: - name: directoryObject-id @@ -4441,6 +4490,7 @@ paths: tags: - directory.directoryObject summary: Delete navigation property deletedItems for directory + description: Recently deleted items. Read-only. Nullable. operationId: directory_DeleteDeletedItems parameters: - name: directoryObject-id @@ -4576,6 +4626,7 @@ paths: tags: - directoryRoles.directoryRole summary: Get entity from directoryRoles by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoles.directoryRole_GetDirectoryRole parameters: - name: directoryRole-id @@ -4640,6 +4691,7 @@ paths: tags: - directoryRoles.directoryRole summary: Update entity in directoryRoles + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoles.directoryRole_UpdateDirectoryRole parameters: - name: directoryRole-id @@ -4666,6 +4718,7 @@ paths: tags: - directoryRoles.directoryRole summary: Delete entity from directoryRoles + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoles.directoryRole_DeleteDirectoryRole parameters: - name: directoryRole-id @@ -4691,6 +4744,7 @@ paths: tags: - directoryRoles.directoryObject summary: Get members from directoryRoles + description: 'Users that are members of this directory role. HTTP Methods: GET, POST, DELETE. Read-only. Nullable.' operationId: directoryRoles_ListMembers parameters: - name: directoryRole-id @@ -4773,6 +4827,7 @@ paths: tags: - directoryRoles.directoryObject summary: Get ref of members from directoryRoles + description: 'Users that are members of this directory role. HTTP Methods: GET, POST, DELETE. Read-only. Nullable.' operationId: directoryRoles_ListRefMembers parameters: - name: directoryRole-id @@ -4829,6 +4884,7 @@ paths: tags: - directoryRoles.directoryObject summary: Create new navigation property ref to members for directoryRoles + description: 'Users that are members of this directory role. HTTP Methods: GET, POST, DELETE. Read-only. Nullable.' operationId: directoryRoles_CreateRefMembers parameters: - name: directoryRole-id @@ -5048,6 +5104,7 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Get scopedMembers from directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_ListScopedMembers parameters: - name: directoryRole-id @@ -5135,6 +5192,7 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Create new navigation property to scopedMembers for directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_CreateScopedMembers parameters: - name: directoryRole-id @@ -5166,6 +5224,7 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Get scopedMembers from directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_GetScopedMembers parameters: - name: directoryRole-id @@ -5223,6 +5282,7 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Update the navigation property scopedMembers in directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_UpdateScopedMembers parameters: - name: directoryRole-id @@ -5256,6 +5316,7 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Delete navigation property scopedMembers for directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_DeleteScopedMembers parameters: - name: directoryRole-id @@ -5514,6 +5575,7 @@ paths: tags: - directoryRoleTemplates.directoryRoleTemplate summary: Get entity from directoryRoleTemplates by key + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoleTemplates.directoryRoleTemplate_GetDirectoryRoleTemplate parameters: - name: directoryRoleTemplate-id @@ -5564,6 +5626,7 @@ paths: tags: - directoryRoleTemplates.directoryRoleTemplate summary: Update entity in directoryRoleTemplates + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoleTemplates.directoryRoleTemplate_UpdateDirectoryRoleTemplate parameters: - name: directoryRoleTemplate-id @@ -5590,6 +5653,7 @@ paths: tags: - directoryRoleTemplates.directoryRoleTemplate summary: Delete entity from directoryRoleTemplates + description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. operationId: directoryRoleTemplates.directoryRoleTemplate_DeleteDirectoryRoleTemplate parameters: - name: directoryRoleTemplate-id @@ -6173,6 +6237,7 @@ paths: tags: - domains.directoryObject summary: Get domainNameReferences from domains + description: 'Read-only, Nullable' operationId: domains_ListDomainNameReferences parameters: - name: domain-id @@ -6255,6 +6320,7 @@ paths: tags: - domains.directoryObject summary: Get ref of domainNameReferences from domains + description: 'Read-only, Nullable' operationId: domains_ListRefDomainNameReferences parameters: - name: domain-id @@ -6311,6 +6377,7 @@ paths: tags: - domains.directoryObject summary: Create new navigation property ref to domainNameReferences for domains + description: 'Read-only, Nullable' operationId: domains_CreateRefDomainNameReferences parameters: - name: domain-id @@ -6404,6 +6471,7 @@ paths: tags: - domains.domainDnsRecord summary: Get serviceConfigurationRecords from domains + 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' operationId: domains_ListServiceConfigurationRecords parameters: - name: domain-id @@ -6497,6 +6565,7 @@ paths: tags: - domains.domainDnsRecord summary: Create new navigation property to serviceConfigurationRecords for domains + 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' operationId: domains_CreateServiceConfigurationRecords parameters: - name: domain-id @@ -6528,6 +6597,7 @@ paths: tags: - domains.domainDnsRecord summary: Get serviceConfigurationRecords from domains + 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' operationId: domains_GetServiceConfigurationRecords parameters: - name: domain-id @@ -6587,6 +6657,7 @@ paths: tags: - domains.domainDnsRecord summary: Update the navigation property serviceConfigurationRecords in domains + 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' operationId: domains_UpdateServiceConfigurationRecords parameters: - name: domain-id @@ -6620,6 +6691,7 @@ paths: tags: - domains.domainDnsRecord summary: Delete navigation property serviceConfigurationRecords for domains + 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' operationId: domains_DeleteServiceConfigurationRecords parameters: - name: domain-id @@ -6652,6 +6724,7 @@ paths: tags: - domains.domainDnsRecord summary: Get verificationDnsRecords from domains + 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' operationId: domains_ListVerificationDnsRecords parameters: - name: domain-id @@ -6745,6 +6818,7 @@ paths: tags: - domains.domainDnsRecord summary: Create new navigation property to verificationDnsRecords for domains + 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' operationId: domains_CreateVerificationDnsRecords parameters: - name: domain-id @@ -6776,6 +6850,7 @@ paths: tags: - domains.domainDnsRecord summary: Get verificationDnsRecords from domains + 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' operationId: domains_GetVerificationDnsRecords parameters: - name: domain-id @@ -6835,6 +6910,7 @@ paths: tags: - domains.domainDnsRecord summary: Update the navigation property verificationDnsRecords in domains + 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' operationId: domains_UpdateVerificationDnsRecords parameters: - name: domain-id @@ -6868,6 +6944,7 @@ paths: tags: - domains.domainDnsRecord summary: Delete navigation property verificationDnsRecords for domains + 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' operationId: domains_DeleteVerificationDnsRecords parameters: - name: domain-id @@ -7069,6 +7146,7 @@ paths: tags: - organization.organization summary: Get entity from organization by key + description: The organization resource represents an instance of global settings and resources which operate and are provisioned at the tenant-level. operationId: organization.organization_GetOrganization parameters: - name: organization-id @@ -7158,6 +7236,7 @@ paths: tags: - organization.organization summary: Update entity in organization + description: The organization resource represents an instance of global settings and resources which operate and are provisioned at the tenant-level. operationId: organization.organization_UpdateOrganization parameters: - name: organization-id @@ -7184,6 +7263,7 @@ paths: tags: - organization.organization summary: Delete entity from organization + description: The organization resource represents an instance of global settings and resources which operate and are provisioned at the tenant-level. operationId: organization.organization_DeleteOrganization parameters: - name: organization-id @@ -7320,6 +7400,7 @@ paths: tags: - organization.extension summary: Get extensions from organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_ListExtensions parameters: - name: organization-id @@ -7398,6 +7479,7 @@ paths: tags: - organization.extension summary: Create new navigation property to extensions for organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_CreateExtensions parameters: - name: organization-id @@ -7429,6 +7511,7 @@ paths: tags: - organization.extension summary: Get extensions from organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_GetExtensions parameters: - name: organization-id @@ -7483,6 +7566,7 @@ paths: tags: - organization.extension summary: Update the navigation property extensions in organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_UpdateExtensions parameters: - name: organization-id @@ -7516,6 +7600,7 @@ paths: tags: - organization.extension summary: Delete navigation property extensions for organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_DeleteExtensions parameters: - name: organization-id @@ -7732,6 +7817,7 @@ paths: tags: - organization.Actions summary: Invoke action setMobileDeviceManagementAuthority + description: Set mobile device management authority operationId: organization_setMobileDeviceManagementAuthority parameters: - name: organization-id @@ -8084,6 +8170,7 @@ paths: tags: - users.scopedRoleMembership summary: Get scopedRoleMemberOf from users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_ListScopedRoleMemberOf parameters: - name: user-id @@ -8171,6 +8258,7 @@ paths: tags: - users.scopedRoleMembership summary: Create new navigation property to scopedRoleMemberOf for users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_CreateScopedRoleMemberOf parameters: - name: user-id @@ -8202,6 +8290,7 @@ paths: tags: - users.scopedRoleMembership summary: Get scopedRoleMemberOf from users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_GetScopedRoleMemberOf parameters: - name: user-id @@ -8259,6 +8348,7 @@ paths: tags: - users.scopedRoleMembership summary: Update the navigation property scopedRoleMemberOf in users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_UpdateScopedRoleMemberOf parameters: - name: user-id @@ -8292,6 +8382,7 @@ paths: tags: - users.scopedRoleMembership summary: Delete navigation property scopedRoleMemberOf for users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_DeleteScopedRoleMemberOf parameters: - name: user-id @@ -8575,7 +8666,7 @@ components: 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -8590,6 +8681,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -8867,7 +8959,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 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.' + description: 'The time and date at which the tenant was last 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.' format: date-time nullable: true onPremisesSyncEnabled: diff --git a/openApiDocs/v1.0/Identity.Governance.yml b/openApiDocs/v1.0/Identity.Governance.yml index d17d1d2d6bd..8f3a48f0911 100644 --- a/openApiDocs/v1.0/Identity.Governance.yml +++ b/openApiDocs/v1.0/Identity.Governance.yml @@ -248,6 +248,7 @@ paths: tags: - agreements.agreementAcceptance summary: Get acceptances from agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_ListAcceptances parameters: - name: agreement-id @@ -365,6 +366,7 @@ paths: tags: - agreements.agreementAcceptance summary: Create new navigation property to acceptances for agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_CreateAcceptances parameters: - name: agreement-id @@ -396,6 +398,7 @@ paths: tags: - agreements.agreementAcceptance summary: Get acceptances from agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_GetAcceptances parameters: - name: agreement-id @@ -463,6 +466,7 @@ paths: tags: - agreements.agreementAcceptance summary: Update the navigation property acceptances in agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_UpdateAcceptances parameters: - name: agreement-id @@ -496,6 +500,7 @@ paths: tags: - agreements.agreementAcceptance summary: Delete navigation property acceptances for agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_DeleteAcceptances parameters: - name: agreement-id @@ -528,6 +533,7 @@ paths: tags: - agreements.agreementFile summary: Get file from agreements + description: Default PDF linked to this agreement. operationId: agreements_GetFile parameters: - name: agreement-id @@ -589,6 +595,7 @@ paths: tags: - agreements.agreementFile summary: Update the navigation property file in agreements + description: Default PDF linked to this agreement. operationId: agreements_UpdateFile parameters: - name: agreement-id @@ -615,6 +622,7 @@ paths: tags: - agreements.agreementFile summary: Delete navigation property file for agreements + description: Default PDF linked to this agreement. operationId: agreements_DeleteFile parameters: - name: agreement-id @@ -1197,6 +1205,7 @@ paths: tags: - agreements.agreementFileLocalization summary: Get files from agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_ListFiles parameters: - name: agreement-id @@ -1298,6 +1307,7 @@ paths: tags: - agreements.agreementFileLocalization summary: Create new navigation property to files for agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_CreateFiles parameters: - name: agreement-id @@ -1329,6 +1339,7 @@ paths: tags: - agreements.agreementFileLocalization summary: Get files from agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_GetFiles parameters: - name: agreement-id @@ -1398,6 +1409,7 @@ paths: tags: - agreements.agreementFileLocalization summary: Update the navigation property files in agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_UpdateFiles parameters: - name: agreement-id @@ -1431,6 +1443,7 @@ paths: tags: - agreements.agreementFileLocalization summary: Delete navigation property files for agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_DeleteFiles parameters: - name: agreement-id @@ -1749,6 +1762,306 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + '/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/microsoft.graph.filterByCurrentUser(on={on})': + get: + tags: + - identityGovernance.Functions + summary: Invoke function filterByCurrentUser + operationId: identityGovernance.accessReviews.definitions.instances.decisions_filterByCurrentUser + 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 + - name: on + in: path + description: 'Usage: on={on}' + required: true + schema: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions' + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + '/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.acceptRecommendations': + post: + tags: + - identityGovernance.Actions + summary: Invoke action acceptRecommendations + operationId: identityGovernance.accessReviews.definitions.instances_acceptRecommendations + 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 + 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.applyDecisions': + post: + tags: + - identityGovernance.Actions + summary: Invoke action applyDecisions + operationId: identityGovernance.accessReviews.definitions.instances_applyDecisions + 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 + 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.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: + - identityGovernance.Actions + summary: Invoke action resetDecisions + operationId: identityGovernance.accessReviews.definitions.instances_resetDecisions + 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 + 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.sendReminder': + post: + tags: + - identityGovernance.Actions + summary: Invoke action sendReminder + operationId: identityGovernance.accessReviews.definitions.instances_sendReminder + 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 + 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.stop': + post: + tags: + - identityGovernance.Actions + summary: Invoke action stop + operationId: identityGovernance.accessReviews.definitions.instances_stop + 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 + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/microsoft.graph.filterByCurrentUser(on={on})': + get: + tags: + - identityGovernance.Functions + summary: Invoke function filterByCurrentUser + operationId: identityGovernance.accessReviews.definitions.instances_filterByCurrentUser + parameters: + - name: accessReviewScheduleDefinition-id + in: path + description: 'key: id of accessReviewScheduleDefinition' + required: true + schema: + type: string + x-ms-docs-key-type: accessReviewScheduleDefinition + - name: on + in: path + description: 'Usage: on={on}' + required: true + schema: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceFilterByCurrentUserOptions' + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + '/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/microsoft.graph.stop': + post: + tags: + - identityGovernance.Actions + summary: Invoke action stop + operationId: identityGovernance.accessReviews.definitions_stop + parameters: + - name: accessReviewScheduleDefinition-id + in: path + description: 'key: id of accessReviewScheduleDefinition' + required: true + schema: + type: string + x-ms-docs-key-type: accessReviewScheduleDefinition + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/accessReviews/definitions/microsoft.graph.filterByCurrentUser(on={on})': + get: + tags: + - identityGovernance.Functions + summary: Invoke function filterByCurrentUser + operationId: identityGovernance.accessReviews.definitions_filterByCurrentUser + parameters: + - name: on + in: path + description: 'Usage: on={on}' + required: true + schema: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinitionFilterByCurrentUserOptions' + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinition' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/microsoft.graph.filterByCurrentUser(on={on})': get: tags: @@ -1811,6 +2124,7 @@ paths: tags: - users.agreementAcceptance summary: Get agreementAcceptances from users + description: The user's terms of use acceptance statuses. Read-only. Nullable. operationId: users_ListAgreementAcceptances parameters: - name: user-id @@ -1929,6 +2243,7 @@ paths: tags: - users.agreementAcceptance summary: Get ref of agreementAcceptances from users + description: The user's terms of use acceptance statuses. Read-only. Nullable. operationId: users_ListRefAgreementAcceptances parameters: - name: user-id @@ -2009,6 +2324,7 @@ paths: tags: - users.agreementAcceptance summary: Create new navigation property ref to agreementAcceptances for users + description: The user's terms of use acceptance statuses. Read-only. Nullable. operationId: users_CreateRefAgreementAcceptances parameters: - name: user-id @@ -2174,6 +2490,167 @@ components: type: object additionalProperties: type: object + microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions: + title: accessReviewInstanceDecisionItemFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewInstanceDecisionItem: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewInstanceDecisionItem + type: object + properties: + accessReviewId: + type: string + description: The identifier of the accessReviewInstance parent. + appliedBy: + $ref: '#/components/schemas/microsoft.graph.userIdentity' + 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 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: + type: string + description: 'The result of applying the decision. Possible values: NotApplied, Success, Failed, NotFound, or NotSupported.' + nullable: true + decision: + type: string + description: 'Result of the review. Possible values: Approve, Deny, NotReviewed, or DontKnow.' + nullable: true + justification: + 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 timestamp when the review occurred. + format: date-time + nullable: true + additionalProperties: + type: object + microsoft.graph.accessReviewInstanceFilterByCurrentUserOptions: + title: accessReviewInstanceFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewInstance: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewInstance + 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: '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: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + 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. 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: + type: string + description: 'Specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Read-only.' + nullable: true + decisions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' + description: 'Each user reviewed in an accessReviewInstance has a decision item representing if their access was approved, denied, or not yet reviewed.' + additionalProperties: + type: object + microsoft.graph.accessReviewScheduleDefinitionFilterByCurrentUserOptions: + title: accessReviewScheduleDefinitionFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewScheduleDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewScheduleDefinition + 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 + description: Timestamp when the access review series was created. Supports $select. + format: date-time + nullable: true + descriptionForAdmins: + type: string + description: Description provided by review creators to provide more context of the review to admins. Supports $select. + nullable: true + descriptionForReviewers: + type: string + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select. + nullable: true + displayName: + type: string + description: Name of the access review series. Required on create. Supports $select. + nullable: true + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' + instanceEnumerationScope: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Timestamp when the access review series was last modified. Supports $select. + format: date-time + nullable: true + reviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' + scope: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + settings: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' + status: + type: string + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).' + nullable: true + instances: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' + additionalProperties: + type: object microsoft.graph.consentRequestFilterByCurrentUserOptions: title: consentRequestFilterByCurrentUserOptions enum: @@ -2283,6 +2760,118 @@ components: nullable: true 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.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.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.accessReviewScope: + title: accessReviewScope + type: object + additionalProperties: + type: object + 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, for example, ./manager, is specified. Possible value: decisions.' + nullable: true + queryType: + type: string + description: The type of query. Examples include MicrosoftGraph and ARM. + nullable: true + additionalProperties: + type: object + microsoft.graph.accessReviewScheduleSettings: + title: accessReviewScheduleSettings + type: object + properties: + applyActions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewApplyAction' + description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. See accessReviewApplyAction.' + autoApplyDecisionsEnabled: + type: boolean + description: 'Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' + defaultDecision: + type: string + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' + nullable: true + defaultDecisionEnabled: + type: boolean + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. + instanceDurationInDays: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Duration of each recurrence of review (accessReviewInstance) in number of days. + format: int32 + justificationRequiredOnApproval: + type: boolean + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. + mailNotificationsEnabled: + type: boolean + description: Indicates whether emails are enabled or disabled. Default value is false. + recommendationsEnabled: + type: boolean + description: Indicates whether decision recommendations are enabled/disabled. + recurrence: + $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' + reminderNotificationsEnabled: + type: boolean + description: Indicates whether reminders are enabled or disabled. Default value is false. + additionalProperties: + type: object microsoft.graph.request: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -2353,6 +2942,21 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.accessReviewApplyAction: + title: accessReviewApplyAction + type: object + additionalProperties: + type: object + microsoft.graph.patternedRecurrence: + title: patternedRecurrence + type: object + properties: + pattern: + $ref: '#/components/schemas/microsoft.graph.recurrencePattern' + range: + $ref: '#/components/schemas/microsoft.graph.recurrenceRange' + additionalProperties: + type: object microsoft.graph.identitySet: title: identitySet type: object @@ -2424,18 +3028,69 @@ components: description: The structure of this object is service-specific additionalProperties: type: object - microsoft.graph.identity: - title: identity + microsoft.graph.recurrencePattern: + title: recurrencePattern type: object properties: - displayName: + 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 + description: The month in which the event occurs. This is a number from 1 to 12. + format: int32 + type: + $ref: '#/components/schemas/microsoft.graph.recurrencePatternType' + additionalProperties: + type: object + microsoft.graph.recurrenceRange: + title: recurrenceRange + type: object + properties: + endDate: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' 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.' + description: 'The date to stop applying the recurrence pattern. Depending on the recurrence pattern of the event, the last occurrence of the meeting may not be this date. Required if type is endDate.' + format: date nullable: true - id: + numberOfOccurrences: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of times to repeat the event. Required and must be positive if type is numbered. + format: int32 + recurrenceTimeZone: type: string - description: Unique identifier for the identity. + description: 'Time zone for the startDate and endDate properties. Optional. If not specified, the time zone of the event is used.' + nullable: true + startDate: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' + type: string + description: 'The date to start applying the recurrence pattern. The first occurrence of the meeting may be this date or later, depending on the recurrence pattern of the event. Must be the same value as the start property of the recurring event. Required.' + format: date nullable: true + type: + $ref: '#/components/schemas/microsoft.graph.recurrenceRangeType' additionalProperties: type: object odata.error.detail: @@ -2452,6 +3107,43 @@ components: type: string additionalProperties: type: object + microsoft.graph.dayOfWeek: + title: dayOfWeek + enum: + - sunday + - monday + - tuesday + - wednesday + - thursday + - friday + - saturday + type: string + microsoft.graph.weekIndex: + title: weekIndex + enum: + - first + - second + - third + - fourth + - last + type: string + microsoft.graph.recurrencePatternType: + title: recurrencePatternType + enum: + - daily + - weekly + - absoluteMonthly + - relativeMonthly + - absoluteYearly + - relativeYearly + type: string + microsoft.graph.recurrenceRangeType: + title: recurrenceRangeType + enum: + - endDate + - noEnd + - numbered + type: string responses: error: description: error diff --git a/openApiDocs/v1.0/Identity.SignIns.yml b/openApiDocs/v1.0/Identity.SignIns.yml index ebf9d8cc4cf..9acb8733f50 100644 --- a/openApiDocs/v1.0/Identity.SignIns.yml +++ b/openApiDocs/v1.0/Identity.SignIns.yml @@ -943,6 +943,25 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + /identityProviders/microsoft.graph.availableProviderTypes(): + get: + tags: + - identityProviders.Functions + summary: Invoke function availableProviderTypes + operationId: identityProviders_availableProviderTypes + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + type: string + nullable: true + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function /informationProtection: get: tags: @@ -1241,6 +1260,7 @@ paths: tags: - informationProtection.threatAssessmentRequest summary: Get results from informationProtection + description: 'A collection of threat assessment results. Read-only. By default, a GET /threatAssessmentRequests/{id} does not return this property unless you apply $expand on it.' operationId: informationProtection.threatAssessmentRequests_ListResults parameters: - name: threatAssessmentRequest-id @@ -1328,6 +1348,7 @@ paths: tags: - informationProtection.threatAssessmentRequest summary: Create new navigation property to results for informationProtection + description: 'A collection of threat assessment results. Read-only. By default, a GET /threatAssessmentRequests/{id} does not return this property unless you apply $expand on it.' operationId: informationProtection.threatAssessmentRequests_CreateResults parameters: - name: threatAssessmentRequest-id @@ -1359,6 +1380,7 @@ paths: tags: - informationProtection.threatAssessmentRequest summary: Get results from informationProtection + description: 'A collection of threat assessment results. Read-only. By default, a GET /threatAssessmentRequests/{id} does not return this property unless you apply $expand on it.' operationId: informationProtection.threatAssessmentRequests_GetResults parameters: - name: threatAssessmentRequest-id @@ -1416,6 +1438,7 @@ paths: tags: - informationProtection.threatAssessmentRequest summary: Update the navigation property results in informationProtection + description: 'A collection of threat assessment results. Read-only. By default, a GET /threatAssessmentRequests/{id} does not return this property unless you apply $expand on it.' operationId: informationProtection.threatAssessmentRequests_UpdateResults parameters: - name: threatAssessmentRequest-id @@ -1449,6 +1472,7 @@ paths: tags: - informationProtection.threatAssessmentRequest summary: Delete navigation property results for informationProtection + description: 'A collection of threat assessment results. Read-only. By default, a GET /threatAssessmentRequests/{id} does not return this property unless you apply $expand on it.' operationId: informationProtection.threatAssessmentRequests_DeleteResults parameters: - name: threatAssessmentRequest-id @@ -1714,6 +1738,7 @@ paths: tags: - invitations.user summary: Get invitedUser from invitations + description: The user created as part of the invitation creation. Read-Only operationId: invitations_GetInvitedUser parameters: - name: invitation-id @@ -1846,6 +1871,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -1903,6 +1929,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -2083,6 +2110,10 @@ paths: operationId: invitations.InvitedUser.GetAuthentication parameters: invitation-id: $request.path.invitation-id + chats: + operationId: invitations.InvitedUser.ListChats + parameters: + invitation-id: $request.path.invitation-id joinedTeams: operationId: invitations.InvitedUser.ListJoinedTeams parameters: @@ -2103,6 +2134,7 @@ paths: tags: - invitations.user summary: Get ref of invitedUser from invitations + description: The user created as part of the invitation creation. Read-Only operationId: invitations_GetRefInvitedUser parameters: - name: invitation-id @@ -2288,6 +2320,10 @@ paths: operationId: invitations.InvitedUser.GetAuthentication parameters: invitation-id: $request.path.invitation-id + chats: + operationId: invitations.InvitedUser.ListChats + parameters: + invitation-id: $request.path.invitation-id joinedTeams: operationId: invitations.InvitedUser.ListJoinedTeams parameters: @@ -2307,6 +2343,7 @@ paths: tags: - invitations.user summary: Update the ref of navigation property invitedUser in invitations + description: The user created as part of the invitation creation. Read-Only operationId: invitations_SetRefInvitedUser parameters: - name: invitation-id @@ -2335,6 +2372,7 @@ paths: tags: - invitations.user summary: Delete ref of navigation property invitedUser for invitations + description: The user created as part of the invitation creation. Read-Only operationId: invitations_DeleteRefInvitedUser parameters: - name: invitation-id @@ -2590,6 +2628,7 @@ paths: tags: - organization.certificateBasedAuthConfiguration summary: Get certificateBasedAuthConfiguration from organization + description: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. operationId: organization_ListCertificateBasedAuthConfiguration parameters: - name: organization-id @@ -2672,6 +2711,7 @@ paths: tags: - organization.certificateBasedAuthConfiguration summary: Get ref of certificateBasedAuthConfiguration from organization + description: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. operationId: organization_ListRefCertificateBasedAuthConfiguration parameters: - name: organization-id @@ -2728,6 +2768,7 @@ paths: tags: - organization.certificateBasedAuthConfiguration summary: Create new navigation property ref to certificateBasedAuthConfiguration for organization + description: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. operationId: organization_CreateRefCertificateBasedAuthConfiguration parameters: - name: organization-id @@ -2777,6 +2818,7 @@ paths: enum: - id - authenticationMethodsPolicy + - authenticationFlowsPolicy - activityBasedTimeoutPolicies - authorizationPolicy - claimsMappingPolicies @@ -2801,6 +2843,7 @@ paths: enum: - '*' - authenticationMethodsPolicy + - authenticationFlowsPolicy - activityBasedTimeoutPolicies - authorizationPolicy - claimsMappingPolicies @@ -2823,6 +2866,8 @@ paths: links: authenticationMethodsPolicy: operationId: policies.GetAuthenticationMethodsPolicy + authenticationFlowsPolicy: + operationId: policies.GetAuthenticationFlowsPolicy activityBasedTimeoutPolicies: operationId: policies.ListActivityBasedTimeoutPolicies authorizationPolicy: @@ -3169,6 +3214,85 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + /policies/authenticationFlowsPolicy: + get: + tags: + - policies.authenticationFlowsPolicy + summary: Get authenticationFlowsPolicy from policies + operationId: policies_GetAuthenticationFlowsPolicy + parameters: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - description + - displayName + - selfServiceSignUp + 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.authenticationFlowsPolicy' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - policies.authenticationFlowsPolicy + summary: Update the navigation property authenticationFlowsPolicy in policies + operationId: policies_UpdateAuthenticationFlowsPolicy + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.authenticationFlowsPolicy' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - policies.authenticationFlowsPolicy + summary: Delete navigation property authenticationFlowsPolicy for policies + operationId: policies_DeleteAuthenticationFlowsPolicy + 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: @@ -3282,6 +3406,7 @@ paths: - allowInvitesFrom - blockMsolPowerShell - defaultUserRolePermissions + - guestUserRoleId type: string - name: $expand in: query @@ -4011,6 +4136,7 @@ paths: tags: - policies.featureRolloutPolicy summary: Get appliesTo from policies + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: policies.featureRolloutPolicies_ListAppliesTo parameters: - name: featureRolloutPolicy-id @@ -4092,6 +4218,7 @@ paths: tags: - policies.featureRolloutPolicy summary: Create new navigation property to appliesTo for policies + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: policies.featureRolloutPolicies_CreateAppliesTo parameters: - name: featureRolloutPolicy-id @@ -4123,6 +4250,7 @@ paths: tags: - policies.featureRolloutPolicy summary: Get appliesTo from policies + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: policies.featureRolloutPolicies_GetAppliesTo parameters: - name: featureRolloutPolicy-id @@ -4178,6 +4306,7 @@ paths: tags: - policies.featureRolloutPolicy summary: Update the navigation property appliesTo in policies + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: policies.featureRolloutPolicies_UpdateAppliesTo parameters: - name: featureRolloutPolicy-id @@ -4211,6 +4340,7 @@ paths: tags: - policies.featureRolloutPolicy summary: Delete navigation property appliesTo for policies + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: policies.featureRolloutPolicies_DeleteAppliesTo parameters: - name: featureRolloutPolicy-id @@ -4765,6 +4895,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Get excludes from policies + description: Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_ListExcludes parameters: - name: permissionGrantPolicy-id @@ -4867,6 +4998,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Create new navigation property to excludes for policies + description: Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_CreateExcludes parameters: - name: permissionGrantPolicy-id @@ -4898,6 +5030,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Get excludes from policies + description: Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_GetExcludes parameters: - name: permissionGrantPolicy-id @@ -4960,6 +5093,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Update the navigation property excludes in policies + description: Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_UpdateExcludes parameters: - name: permissionGrantPolicy-id @@ -4993,6 +5127,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Delete navigation property excludes for policies + description: Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_DeleteExcludes parameters: - name: permissionGrantPolicy-id @@ -5025,6 +5160,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Get includes from policies + description: Condition sets which are included in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_ListIncludes parameters: - name: permissionGrantPolicy-id @@ -5127,6 +5263,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Create new navigation property to includes for policies + description: Condition sets which are included in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_CreateIncludes parameters: - name: permissionGrantPolicy-id @@ -5158,6 +5295,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Get includes from policies + description: Condition sets which are included in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_GetIncludes parameters: - name: permissionGrantPolicy-id @@ -5220,6 +5358,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Update the navigation property includes in policies + description: Condition sets which are included in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_UpdateIncludes parameters: - name: permissionGrantPolicy-id @@ -5253,6 +5392,7 @@ paths: tags: - policies.permissionGrantPolicy summary: Delete navigation property includes for policies + description: Condition sets which are included in this permission grant policy. Automatically expanded on GET. operationId: policies.permissionGrantPolicies_DeleteIncludes parameters: - name: permissionGrantPolicy-id @@ -6584,6 +6724,7 @@ paths: tags: - users.authentication summary: Get device from users + description: The registered device on which Microsoft Authenticator resides. This property is null if the device is not registered for passwordless Phone Sign-In. operationId: users.authentication.microsoftAuthenticatorMethods_GetDevice parameters: - name: user-id @@ -6694,6 +6835,7 @@ paths: tags: - users.authentication summary: Update the navigation property device in users + description: The registered device on which Microsoft Authenticator resides. This property is null if the device is not registered for passwordless Phone Sign-In. operationId: users.authentication.microsoftAuthenticatorMethods_UpdateDevice parameters: - name: user-id @@ -6727,6 +6869,7 @@ paths: tags: - users.authentication summary: Delete navigation property device for users + description: The registered device on which Microsoft Authenticator resides. This property is null if the device is not registered for passwordless Phone Sign-In. operationId: users.authentication.microsoftAuthenticatorMethods_DeleteDevice parameters: - name: user-id @@ -7009,6 +7152,7 @@ paths: tags: - users.authentication summary: Get device from users + description: The registered device on which this Windows Hello for Business key resides. operationId: users.authentication.windowsHelloForBusinessMethods_GetDevice parameters: - name: user-id @@ -7119,6 +7263,7 @@ paths: tags: - users.authentication summary: Update the navigation property device in users + description: The registered device on which this Windows Hello for Business key resides. operationId: users.authentication.windowsHelloForBusinessMethods_UpdateDevice parameters: - name: user-id @@ -7152,6 +7297,7 @@ paths: tags: - users.authentication summary: Delete navigation property device for users + description: The registered device on which this Windows Hello for Business key resides. operationId: users.authentication.windowsHelloForBusinessMethods_DeleteDevice parameters: - name: user-id @@ -7430,7 +7576,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -7443,7 +7589,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -7455,12 +7601,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -7469,11 +7615,11 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -7489,7 +7635,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -7507,7 +7653,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -7526,7 +7672,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -7545,11 +7691,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -7557,7 +7703,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -7604,7 +7750,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -7613,7 +7759,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredLanguage: type: string @@ -7641,15 +7787,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -7657,7 +7803,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -7893,6 +8039,10 @@ components: $ref: '#/components/schemas/microsoft.graph.presence' authentication: $ref: '#/components/schemas/microsoft.graph.authentication' + chats: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' joinedTeams: type: array items: @@ -7916,7 +8066,7 @@ components: 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).' + description: 'Indicates whether 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 principalId: type: string @@ -7952,6 +8102,8 @@ components: properties: authenticationMethodsPolicy: $ref: '#/components/schemas/microsoft.graph.authenticationMethodsPolicy' + authenticationFlowsPolicy: + $ref: '#/components/schemas/microsoft.graph.authenticationFlowsPolicy' activityBasedTimeoutPolicies: type: array items: @@ -8034,6 +8186,24 @@ components: format: int32 additionalProperties: type: object + microsoft.graph.authenticationFlowsPolicy: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: authenticationFlowsPolicy + type: object + properties: + description: + type: string + description: Inherited property. A description of the policy. This property is not a key. Optional. Read-only. + nullable: true + displayName: + type: string + description: Inherited property. The human-readable name of the policy. This property is not a key. Optional. Read-only. + nullable: true + selfServiceSignUp: + $ref: '#/components/schemas/microsoft.graph.selfServiceSignUpAuthenticationFlowConfiguration' + additionalProperties: + type: object microsoft.graph.authenticationMethodsPolicy: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -8042,17 +8212,21 @@ components: properties: description: type: string + description: A description of the policy. nullable: true displayName: type: string + description: The name of the policy. 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 of the last update to the policy. format: date-time nullable: true policyVersion: type: string + description: The version of the policy in use. nullable: true reconfirmationInDays: maximum: 2147483647 @@ -8064,6 +8238,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.authenticationMethodConfiguration' + description: Represents the settings for each authentication method. additionalProperties: type: object microsoft.graph.authorizationPolicy: @@ -8085,10 +8260,16 @@ components: $ref: '#/components/schemas/microsoft.graph.allowInvitesFrom' blockMsolPowerShell: type: boolean - description: To disable the use of MSOL PowerShell set this property to true. Setting to true will also disable user-based access to the legacy service endpoint used by MSOL PowerShell. This does not affect Azure AD Connect or Microsoft Graph. + description: To disable the use of MSOL PowerShell set this property to true. This will also disable user-based access to the legacy service endpoint used by MSOL PowerShell. This does not affect Azure AD Connect or Microsoft Graph. nullable: true defaultUserRolePermissions: $ref: '#/components/schemas/microsoft.graph.defaultUserRolePermissions' + 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).' + format: uuid + 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. @@ -8434,7 +8615,7 @@ components: 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -8449,6 +8630,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -8714,7 +8896,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -9488,6 +9670,10 @@ components: type: string description: The mailFolder's display name. nullable: true + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. + nullable: true parentFolderId: type: string description: The unique identifier for the mailFolder's parent mailFolder. @@ -10022,6 +10208,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -10035,6 +10225,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -10074,6 +10268,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -10088,6 +10286,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -10108,6 +10310,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -10461,6 +10667,51 @@ components: nullable: true 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 + 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 + topic: + type: string + description: (Optional) Subject or topic for the chat. Only available for group chats. + 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.team: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -10479,7 +10730,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true displayName: type: string @@ -10624,7 +10875,7 @@ components: 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.' + 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, for example, ./manager, is specified. Possible value: decisions.' nullable: true queryType: type: string @@ -10632,6 +10883,15 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.selfServiceSignUpAuthenticationFlowConfiguration: + title: selfServiceSignUpAuthenticationFlowConfiguration + type: object + properties: + isEnabled: + type: boolean + 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.authenticationMethodConfiguration: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -12068,6 +12328,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState @@ -12992,101 +13255,262 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: type: object - microsoft.graph.teamFunSettings: - title: teamFunSettings - type: object - properties: - allowCustomMemes: - type: boolean - description: 'If set to true, enables users to include custom memes.' - nullable: true - allowGiphy: - type: boolean - description: 'If set to true, enables Giphy use.' - nullable: true - allowStickersAndMemes: - type: boolean - description: 'If set to true, enables users to include stickers and memes.' - nullable: true - giphyContentRating: - $ref: '#/components/schemas/microsoft.graph.giphyRatingType' - additionalProperties: - type: object - microsoft.graph.teamGuestSettings: - title: teamGuestSettings - type: object - properties: - allowCreateUpdateChannels: - type: boolean - description: 'If set to true, guests can add and update channels.' - nullable: true - allowDeleteChannels: - type: boolean - description: 'If set to true, guests can delete channels.' - nullable: true - additionalProperties: - type: object - microsoft.graph.teamMemberSettings: - title: teamMemberSettings - type: object - properties: - allowAddRemoveApps: - type: boolean - description: 'If set to true, members can add and remove apps.' - nullable: true - allowCreatePrivateChannels: - type: boolean - description: 'If set to true, members can add and update private channels.' - 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: + microsoft.graph.chatType: + title: chatType + enum: + - oneOnOne + - group + - meeting + - unknownFutureValue + type: string + microsoft.graph.teamsAppInstallation: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamsAppInstallation + type: object + properties: + teamsApp: + $ref: '#/components/schemas/microsoft.graph.teamsApp' + teamsAppDefinition: + $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' + additionalProperties: + type: object + microsoft.graph.conversationMember: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: conversationMember + type: object + properties: + displayName: + type: string + description: The display name of the user. + nullable: true + roles: + type: array + items: + type: string + nullable: true + description: The roles for that user. + visibleHistoryStartDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. + format: date-time + nullable: true + 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 + 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: 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. 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.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.teamFunSettings: + title: teamFunSettings + type: object + properties: + allowCustomMemes: + type: boolean + description: 'If set to true, enables users to include custom memes.' + nullable: true + allowGiphy: + type: boolean + description: 'If set to true, enables Giphy use.' + nullable: true + allowStickersAndMemes: + type: boolean + description: 'If set to true, enables users to include stickers and memes.' + nullable: true + giphyContentRating: + $ref: '#/components/schemas/microsoft.graph.giphyRatingType' + additionalProperties: + type: object + microsoft.graph.teamGuestSettings: + title: teamGuestSettings + type: object + properties: + allowCreateUpdateChannels: + type: boolean + description: 'If set to true, guests can add and update channels.' + nullable: true + allowDeleteChannels: + type: boolean + description: 'If set to true, guests can delete channels.' + nullable: true + additionalProperties: + type: object + microsoft.graph.teamMemberSettings: + title: teamMemberSettings + type: object + properties: + allowAddRemoveApps: + type: boolean + description: 'If set to true, members can add and remove apps.' + nullable: true + allowCreatePrivateChannels: + type: boolean + description: 'If set to true, members can add and update private channels.' + 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 @@ -13443,6 +13867,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -13526,46 +13951,10 @@ 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.teamsAppInstallation: + microsoft.graph.teamsAsyncOperation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsAppInstallation - type: object - properties: - teamsApp: - $ref: '#/components/schemas/microsoft.graph.teamsApp' - teamsAppDefinition: - $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' - additionalProperties: - type: object - microsoft.graph.conversationMember: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: conversationMember - type: object - properties: - displayName: - type: string - description: The display name of the user. - nullable: true - roles: - type: array - items: - type: string - nullable: true - description: The roles for that user. - visibleHistoryStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.teamsAsyncOperation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsAsyncOperation + - title: teamsAsyncOperation type: object properties: attemptsCount: @@ -15734,6 +16123,210 @@ components: nullable: true 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: + 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 + description: Short description of the application. + 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.chatMessageAttachment: + title: chatMessageAttachment + type: object + properties: + content: + type: string + description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' + nullable: true + contentType: + type: string + description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' + nullable: true + contentUrl: + type: string + description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' + nullable: true + id: + type: string + description: Read-only. Unique id of the attachment. + nullable: true + name: + type: string + description: Name of the attachment. + nullable: true + thumbnailUrl: + type: string + description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' + 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: + - normal + - high + - urgent + - unknownFutureValue + type: string + microsoft.graph.chatMessageMention: + title: chatMessageMention + type: object + properties: + id: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' + format: int32 + nullable: true + mentioned: + $ref: '#/components/schemas/microsoft.graph.identitySet' + mentionText: + type: string + description: 'String used to represent the mention. For example, a user''s display name, a team name.' + nullable: true + additionalProperties: + type: object + microsoft.graph.chatMessageType: + title: chatMessageType + enum: + - message + - chatEvent + - typing + - unknownFutureValue + type: string + microsoft.graph.chatMessagePolicyViolation: + title: chatMessagePolicyViolation + type: object + properties: + dlpAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' + justificationText: + type: string + description: Justification text provided by the sender of the message when overriding a policy violation. + nullable: true + policyTip: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' + userAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' + verdictDetails: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' + additionalProperties: + type: object + microsoft.graph.chatMessageReaction: + title: chatMessageReaction + 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: 'The Timestamp type represents date and time information using ISO 8601 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 + description: 'Supported values are like, angry, sad, laugh, heart, surprised.' + user: + $ref: '#/components/schemas/microsoft.graph.identitySet' + additionalProperties: + type: object + microsoft.graph.chatMessageHostedContent: + allOf: + - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' + - title: chatMessageHostedContent + type: object + additionalProperties: + type: object + 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.giphyRatingType: title: giphyRatingType enum: @@ -15870,174 +16463,58 @@ components: 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' - 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 - type: string - 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 - 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: 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: + 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: 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. + description: 'The Timestamp type represents date and time information using ISO 8601 format and 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: + 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: 'Read only. Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed.' + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' 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: + timeOffReasonId: type: string - description: Read-only. Link to the message in Microsoft Teams. + description: The reason for the time off. 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: + microsoft.graph.timeOff: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsTab + - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' + - title: timeOff type: object properties: - configuration: - $ref: '#/components/schemas/microsoft.graph.teamsTabConfiguration' - displayName: - type: string - description: Name of the tab. - nullable: true - webUrl: + draftTimeOff: + $ref: '#/components/schemas/microsoft.graph.timeOffItem' + sharedTimeOff: + $ref: '#/components/schemas/microsoft.graph.timeOffItem' + userId: type: string - description: Deep link URL of the tab instance. Read only. + description: ID of the user assigned to the timeOff. Required. nullable: true - teamsApp: - $ref: '#/components/schemas/microsoft.graph.teamsApp' additionalProperties: type: object + microsoft.graph.channelMembershipType: + title: channelMembershipType + enum: + - standard + - private + - unknownFutureValue + type: string microsoft.graph.assignedLabel: title: assignedLabel type: object @@ -16081,7 +16558,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -16224,68 +16701,6 @@ components: description: Read-only. Nullable. Returns the plannerPlans owned by the group. 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: - 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 - description: Short description of the application. - 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 @@ -16320,51 +16735,6 @@ components: - failed - unknownFutureValue type: string - 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 - 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 - topic: - type: string - description: (Optional) Subject or topic for the chat. Only available for group chats. - 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.wellknownListName: title: wellknownListName enum: @@ -16998,6 +17368,89 @@ components: - presenter - 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.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.scheduleChangeRequest: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' @@ -17105,148 +17558,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.chatMessageAttachment: - title: chatMessageAttachment - type: object - properties: - content: - type: string - description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' - nullable: true - contentType: - type: string - description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' - nullable: true - contentUrl: - type: string - description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' - nullable: true - id: - type: string - description: Read-only. Unique id of the attachment. - nullable: true - name: - type: string - description: Name of the attachment. - nullable: true - thumbnailUrl: - type: string - description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' - 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: - - normal - - high - - urgent - - unknownFutureValue - type: string - microsoft.graph.chatMessageMention: - title: chatMessageMention - type: object - properties: - id: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' - format: int32 - nullable: true - mentioned: - $ref: '#/components/schemas/microsoft.graph.identitySet' - mentionText: - type: string - description: 'String used to represent the mention. For example, a user''s display name, a team name.' - nullable: true - additionalProperties: - type: object - microsoft.graph.chatMessageType: - title: chatMessageType - enum: - - message - - chatEvent - - typing - - unknownFutureValue - type: string - microsoft.graph.chatMessagePolicyViolation: - title: chatMessagePolicyViolation - type: object - properties: - dlpAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' - justificationText: - type: string - description: Justification text provided by the sender of the message when overriding a policy violation. - nullable: true - policyTip: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' - userAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' - verdictDetails: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' - additionalProperties: - type: object - microsoft.graph.chatMessageReaction: - title: chatMessageReaction - 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: 'The Timestamp type represents date and time information using ISO 8601 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 - description: 'Supported values are like, angry, sad, laugh, heart, surprised.' - user: - $ref: '#/components/schemas/microsoft.graph.identitySet' - additionalProperties: - type: object - microsoft.graph.chatMessageHostedContent: - allOf: - - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' - - title: chatMessageHostedContent - type: object - additionalProperties: - type: object - 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.settingValue: title: settingValue type: object @@ -17318,37 +17629,6 @@ components: description: The collection of single-value extended properties defined for the post. Read-only. Nullable. additionalProperties: type: object - 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.chatType: - title: chatType - enum: - - oneOnOne - - group - - meeting - - unknownFutureValue - type: string microsoft.graph.taskStatus: title: taskStatus enum: @@ -17622,66 +17902,6 @@ components: $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.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 87e79eb3de5..02d29212b0e 100644 --- a/openApiDocs/v1.0/Mail.yml +++ b/openApiDocs/v1.0/Mail.yml @@ -11,6 +11,7 @@ paths: tags: - users.inferenceClassification summary: Get inferenceClassification from users + description: Relevance classification of the user's messages based on explicit designations which override inferred relevance or importance. operationId: users_GetInferenceClassification parameters: - name: user-id @@ -65,6 +66,7 @@ paths: tags: - users.inferenceClassification summary: Update the navigation property inferenceClassification in users + description: Relevance classification of the user's messages based on explicit designations which override inferred relevance or importance. operationId: users_UpdateInferenceClassification parameters: - name: user-id @@ -91,6 +93,7 @@ paths: tags: - users.inferenceClassification summary: Delete navigation property inferenceClassification for users + description: Relevance classification of the user's messages based on explicit designations which override inferred relevance or importance. operationId: users_DeleteInferenceClassification parameters: - name: user-id @@ -116,6 +119,7 @@ paths: tags: - users.inferenceClassification summary: Get overrides from users + description: 'A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable.' operationId: users.inferenceClassification_ListOverrides parameters: - name: user-id @@ -200,6 +204,7 @@ paths: tags: - users.inferenceClassification summary: Create new navigation property to overrides for users + description: 'A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable.' operationId: users.inferenceClassification_CreateOverrides parameters: - name: user-id @@ -231,6 +236,7 @@ paths: tags: - users.inferenceClassification summary: Get overrides from users + description: 'A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable.' operationId: users.inferenceClassification_GetOverrides parameters: - name: user-id @@ -287,6 +293,7 @@ paths: tags: - users.inferenceClassification summary: Update the navigation property overrides in users + description: 'A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable.' operationId: users.inferenceClassification_UpdateOverrides parameters: - name: user-id @@ -320,6 +327,7 @@ paths: tags: - users.inferenceClassification summary: Delete navigation property overrides for users + description: 'A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable.' operationId: users.inferenceClassification_DeleteOverrides parameters: - name: user-id @@ -352,6 +360,7 @@ paths: tags: - users.mailFolder summary: Get mailFolders from users + description: The user's mail folders. Read-only. Nullable. operationId: users_ListMailFolders parameters: - name: user-id @@ -382,6 +391,8 @@ paths: - childFolderCount desc - displayName - displayName desc + - isHidden + - isHidden desc - parentFolderId - parentFolderId desc - totalItemCount @@ -402,6 +413,7 @@ paths: - id - childFolderCount - displayName + - isHidden - parentFolderId - totalItemCount - unreadItemCount @@ -455,6 +467,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to mailFolders for users + description: The user's mail folders. Read-only. Nullable. operationId: users_CreateMailFolders parameters: - name: user-id @@ -486,6 +499,7 @@ paths: tags: - users.mailFolder summary: Get mailFolders from users + description: The user's mail folders. Read-only. Nullable. operationId: users_GetMailFolders parameters: - name: user-id @@ -515,6 +529,7 @@ paths: - id - childFolderCount - displayName + - isHidden - parentFolderId - totalItemCount - unreadItemCount @@ -581,6 +596,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property mailFolders in users + description: The user's mail folders. Read-only. Nullable. operationId: users_UpdateMailFolders parameters: - name: user-id @@ -614,6 +630,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property mailFolders for users + description: The user's mail folders. Read-only. Nullable. operationId: users_DeleteMailFolders parameters: - name: user-id @@ -646,6 +663,7 @@ paths: tags: - users.mailFolder summary: Get childFolders from users + description: The collection of child folders in the mailFolder. operationId: users.mailFolders_ListChildFolders parameters: - name: user-id @@ -683,6 +701,8 @@ paths: - childFolderCount desc - displayName - displayName desc + - isHidden + - isHidden desc - parentFolderId - parentFolderId desc - totalItemCount @@ -703,6 +723,7 @@ paths: - id - childFolderCount - displayName + - isHidden - parentFolderId - totalItemCount - unreadItemCount @@ -756,6 +777,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to childFolders for users + description: The collection of child folders in the mailFolder. operationId: users.mailFolders_CreateChildFolders parameters: - name: user-id @@ -794,6 +816,7 @@ paths: tags: - users.mailFolder summary: Get childFolders from users + description: The collection of child folders in the mailFolder. operationId: users.mailFolders_GetChildFolders parameters: - name: user-id @@ -830,6 +853,7 @@ paths: - id - childFolderCount - displayName + - isHidden - parentFolderId - totalItemCount - unreadItemCount @@ -901,6 +925,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property childFolders in users + description: The collection of child folders in the mailFolder. operationId: users.mailFolders_UpdateChildFolders parameters: - name: user-id @@ -941,6 +966,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property childFolders for users + description: The collection of child folders in the mailFolder. operationId: users.mailFolders_DeleteChildFolders parameters: - name: user-id @@ -980,6 +1006,7 @@ paths: tags: - users.mailFolder summary: Get messageRules from users + description: The collection of rules that apply to the user's Inbox folder. operationId: users.mailFolders_ListMessageRules parameters: - name: user-id @@ -1089,6 +1116,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to messageRules for users + description: The collection of rules that apply to the user's Inbox folder. operationId: users.mailFolders_CreateMessageRules parameters: - name: user-id @@ -1127,6 +1155,7 @@ paths: tags: - users.mailFolder summary: Get messageRules from users + description: The collection of rules that apply to the user's Inbox folder. operationId: users.mailFolders_GetMessageRules parameters: - name: user-id @@ -1196,6 +1225,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property messageRules in users + description: The collection of rules that apply to the user's Inbox folder. operationId: users.mailFolders_UpdateMessageRules parameters: - name: user-id @@ -1236,6 +1266,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property messageRules for users + description: The collection of rules that apply to the user's Inbox folder. operationId: users.mailFolders_DeleteMessageRules parameters: - name: user-id @@ -1275,6 +1306,7 @@ paths: tags: - users.mailFolder summary: Get messages from users + description: The collection of messages in the mailFolder. operationId: users.mailFolders_ListMessages parameters: - name: user-id @@ -1458,6 +1490,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to messages for users + description: The collection of messages in the mailFolder. operationId: users.mailFolders_CreateMessages parameters: - name: user-id @@ -1496,6 +1529,7 @@ paths: tags: - users.mailFolder summary: Get messages from users + description: The collection of messages in the mailFolder. operationId: users.mailFolders_GetMessages parameters: - name: user-id @@ -1620,6 +1654,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property messages in users + description: The collection of messages in the mailFolder. operationId: users.mailFolders_UpdateMessages parameters: - name: user-id @@ -1660,6 +1695,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property messages for users + description: The collection of messages in the mailFolder. operationId: users.mailFolders_DeleteMessages parameters: - name: user-id @@ -1779,6 +1815,7 @@ paths: tags: - users.mailFolder summary: Get attachments from users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.mailFolders.messages_ListAttachments parameters: - name: user-id @@ -1886,6 +1923,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to attachments for users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.mailFolders.messages_CreateAttachments parameters: - name: user-id @@ -1931,6 +1969,7 @@ paths: tags: - users.mailFolder summary: Get attachments from users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.mailFolders.messages_GetAttachments parameters: - name: user-id @@ -2004,6 +2043,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property attachments in users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.mailFolders.messages_UpdateAttachments parameters: - name: user-id @@ -2051,6 +2091,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property attachments for users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.mailFolders.messages_DeleteAttachments parameters: - name: user-id @@ -2097,6 +2138,7 @@ paths: tags: - users.mailFolder summary: Get extensions from users + description: The collection of open extensions defined for the message. Nullable. operationId: users.mailFolders.messages_ListExtensions parameters: - name: user-id @@ -2189,6 +2231,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the message. Nullable. operationId: users.mailFolders.messages_CreateExtensions parameters: - name: user-id @@ -2234,6 +2277,7 @@ paths: tags: - users.mailFolder summary: Get extensions from users + description: The collection of open extensions defined for the message. Nullable. operationId: users.mailFolders.messages_GetExtensions parameters: - name: user-id @@ -2302,6 +2346,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the message. Nullable. operationId: users.mailFolders.messages_UpdateExtensions parameters: - name: user-id @@ -2349,6 +2394,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the message. Nullable. operationId: users.mailFolders.messages_DeleteExtensions parameters: - name: user-id @@ -2395,6 +2441,7 @@ paths: tags: - users.mailFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_ListMultiValueExtendedProperties parameters: - name: user-id @@ -2490,6 +2537,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -2535,6 +2583,7 @@ paths: tags: - users.mailFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_GetMultiValueExtendedProperties parameters: - name: user-id @@ -2604,6 +2653,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -2651,6 +2701,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -2697,6 +2748,7 @@ paths: tags: - users.mailFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_ListSingleValueExtendedProperties parameters: - name: user-id @@ -2792,6 +2844,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -2837,6 +2890,7 @@ paths: tags: - users.mailFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_GetSingleValueExtendedProperties parameters: - name: user-id @@ -2906,6 +2960,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -2953,6 +3008,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.mailFolders.messages_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -2999,6 +3055,7 @@ paths: tags: - users.mailFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_ListMultiValueExtendedProperties parameters: - name: user-id @@ -3087,6 +3144,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -3125,6 +3183,7 @@ paths: tags: - users.mailFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_GetMultiValueExtendedProperties parameters: - name: user-id @@ -3187,6 +3246,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -3227,6 +3287,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -3266,6 +3327,7 @@ paths: tags: - users.mailFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_ListSingleValueExtendedProperties parameters: - name: user-id @@ -3354,6 +3416,7 @@ paths: tags: - users.mailFolder summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -3392,6 +3455,7 @@ paths: tags: - users.mailFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_GetSingleValueExtendedProperties parameters: - name: user-id @@ -3454,6 +3518,7 @@ paths: tags: - users.mailFolder summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -3494,6 +3559,7 @@ paths: tags: - users.mailFolder summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the mailFolder. Read-only. Nullable. operationId: users.mailFolders_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -3533,6 +3599,7 @@ paths: tags: - users.message summary: Get messages from users + description: The messages in a mailbox or folder. Read-only. Nullable. operationId: users_ListMessages parameters: - name: user-id @@ -3709,6 +3776,7 @@ paths: tags: - users.message summary: Create new navigation property to messages for users + description: The messages in a mailbox or folder. Read-only. Nullable. operationId: users_CreateMessages parameters: - name: user-id @@ -3740,6 +3808,7 @@ paths: tags: - users.message summary: Get messages from users + description: The messages in a mailbox or folder. Read-only. Nullable. operationId: users_GetMessages parameters: - name: user-id @@ -3853,6 +3922,7 @@ paths: tags: - users.message summary: Update the navigation property messages in users + description: The messages in a mailbox or folder. Read-only. Nullable. operationId: users_UpdateMessages parameters: - name: user-id @@ -3886,6 +3956,7 @@ paths: tags: - users.message summary: Delete navigation property messages for users + description: The messages in a mailbox or folder. Read-only. Nullable. operationId: users_DeleteMessages parameters: - name: user-id @@ -3984,6 +4055,7 @@ paths: tags: - users.message summary: Get attachments from users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.messages_ListAttachments parameters: - name: user-id @@ -4084,6 +4156,7 @@ paths: tags: - users.message summary: Create new navigation property to attachments for users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.messages_CreateAttachments parameters: - name: user-id @@ -4122,6 +4195,7 @@ paths: tags: - users.message summary: Get attachments from users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.messages_GetAttachments parameters: - name: user-id @@ -4188,6 +4262,7 @@ paths: tags: - users.message summary: Update the navigation property attachments in users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.messages_UpdateAttachments parameters: - name: user-id @@ -4228,6 +4303,7 @@ paths: tags: - users.message summary: Delete navigation property attachments for users + description: The fileAttachment and itemAttachment attachments for the message. operationId: users.messages_DeleteAttachments parameters: - name: user-id @@ -4267,6 +4343,7 @@ paths: tags: - users.message summary: Get extensions from users + description: The collection of open extensions defined for the message. Nullable. operationId: users.messages_ListExtensions parameters: - name: user-id @@ -4352,6 +4429,7 @@ paths: tags: - users.message summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the message. Nullable. operationId: users.messages_CreateExtensions parameters: - name: user-id @@ -4390,6 +4468,7 @@ paths: tags: - users.message summary: Get extensions from users + description: The collection of open extensions defined for the message. Nullable. operationId: users.messages_GetExtensions parameters: - name: user-id @@ -4451,6 +4530,7 @@ paths: tags: - users.message summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the message. Nullable. operationId: users.messages_UpdateExtensions parameters: - name: user-id @@ -4491,6 +4571,7 @@ paths: tags: - users.message summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the message. Nullable. operationId: users.messages_DeleteExtensions parameters: - name: user-id @@ -4530,6 +4611,7 @@ paths: tags: - users.message summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.messages_ListMultiValueExtendedProperties parameters: - name: user-id @@ -4618,6 +4700,7 @@ paths: tags: - users.message summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.messages_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -4656,6 +4739,7 @@ paths: tags: - users.message summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.messages_GetMultiValueExtendedProperties parameters: - name: user-id @@ -4718,6 +4802,7 @@ paths: tags: - users.message summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.messages_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -4758,6 +4843,7 @@ paths: tags: - users.message summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the message. Nullable. operationId: users.messages_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -4797,6 +4883,7 @@ paths: tags: - users.message summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.messages_ListSingleValueExtendedProperties parameters: - name: user-id @@ -4885,6 +4972,7 @@ paths: tags: - users.message summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.messages_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -4923,6 +5011,7 @@ paths: tags: - users.message summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.messages_GetSingleValueExtendedProperties parameters: - name: user-id @@ -4985,6 +5074,7 @@ paths: tags: - users.message summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.messages_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -5025,6 +5115,7 @@ paths: tags: - users.message summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the message. Nullable. operationId: users.messages_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -5103,6 +5194,10 @@ components: type: string description: The mailFolder's display name. nullable: true + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. + nullable: true parentFolderId: type: string description: The unique identifier for the mailFolder's parent mailFolder. diff --git a/openApiDocs/v1.0/Notes.yml b/openApiDocs/v1.0/Notes.yml index 89ed1f98588..09fe8b30f7f 100644 --- a/openApiDocs/v1.0/Notes.yml +++ b/openApiDocs/v1.0/Notes.yml @@ -11,6 +11,7 @@ paths: tags: - groups.onenote summary: Get onenote from groups + description: Read-only. operationId: groups_GetOnenote parameters: - name: group-id @@ -95,6 +96,7 @@ paths: tags: - groups.onenote summary: Update the navigation property onenote in groups + description: Read-only. operationId: groups_UpdateOnenote parameters: - name: group-id @@ -121,6 +123,7 @@ paths: tags: - groups.onenote summary: Delete navigation property onenote for groups + description: Read-only. operationId: groups_DeleteOnenote parameters: - name: group-id @@ -146,6 +149,7 @@ paths: tags: - groups.onenote summary: Get notebooks from groups + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_ListNotebooks parameters: - name: group-id @@ -264,6 +268,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to notebooks for groups + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_CreateNotebooks parameters: - name: group-id @@ -295,6 +300,7 @@ paths: tags: - groups.onenote summary: Get notebooks from groups + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_GetNotebooks parameters: - name: group-id @@ -376,6 +382,7 @@ paths: tags: - groups.onenote summary: Update the navigation property notebooks in groups + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_UpdateNotebooks parameters: - name: group-id @@ -409,6 +416,7 @@ paths: tags: - groups.onenote summary: Delete navigation property notebooks for groups + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_DeleteNotebooks parameters: - name: group-id @@ -441,6 +449,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_ListSectionGroups parameters: - name: group-id @@ -558,6 +567,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_CreateSectionGroups parameters: - name: group-id @@ -596,6 +606,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_GetSectionGroups parameters: - name: group-id @@ -698,6 +709,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_UpdateSectionGroups parameters: - name: group-id @@ -738,6 +750,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_DeleteSectionGroups parameters: - name: group-id @@ -777,6 +790,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -867,6 +881,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -907,6 +922,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -946,6 +962,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -1048,6 +1065,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -1088,6 +1106,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -1127,6 +1146,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -1251,6 +1271,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -1296,6 +1317,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -1409,6 +1431,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -1456,6 +1479,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -1502,6 +1526,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_ListSections parameters: - name: group-id @@ -1627,6 +1652,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_CreateSections parameters: - name: group-id @@ -1672,6 +1698,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_GetSections parameters: - name: group-id @@ -1777,6 +1804,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_UpdateSections parameters: - name: group-id @@ -1824,6 +1852,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups_DeleteSections parameters: - name: group-id @@ -1870,6 +1899,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections_ListPages parameters: - name: group-id @@ -2006,6 +2036,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections_CreatePages parameters: - name: group-id @@ -2058,6 +2089,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections_GetPages parameters: - name: group-id @@ -2165,6 +2197,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections_UpdatePages parameters: - name: group-id @@ -2219,6 +2252,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections_DeletePages parameters: - name: group-id @@ -2380,6 +2414,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_GetParentNotebook parameters: - name: group-id @@ -2488,6 +2523,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: group-id @@ -2542,6 +2578,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: group-id @@ -2595,6 +2632,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_GetParentSection parameters: - name: group-id @@ -2710,6 +2748,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_UpdateParentSection parameters: - name: group-id @@ -2764,6 +2803,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages_DeleteParentSection parameters: - name: group-id @@ -2817,6 +2857,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_GetParentNotebook parameters: - name: group-id @@ -2916,6 +2957,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_UpdateParentNotebook parameters: - name: group-id @@ -2963,6 +3005,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_DeleteParentNotebook parameters: - name: group-id @@ -3009,6 +3052,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_GetParentSectionGroup parameters: - name: group-id @@ -3122,6 +3166,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -3169,6 +3214,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -3215,6 +3261,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_ListSections parameters: - name: group-id @@ -3333,6 +3380,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_CreateSections parameters: - name: group-id @@ -3371,6 +3419,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_GetSections parameters: - name: group-id @@ -3466,6 +3515,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_UpdateSections parameters: - name: group-id @@ -3506,6 +3556,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks_DeleteSections parameters: - name: group-id @@ -3545,6 +3596,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections_ListPages parameters: - name: group-id @@ -3674,6 +3726,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections_CreatePages parameters: - name: group-id @@ -3719,6 +3772,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections_GetPages parameters: - name: group-id @@ -3817,6 +3871,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections_UpdatePages parameters: - name: group-id @@ -3864,6 +3919,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections_DeletePages parameters: - name: group-id @@ -4004,6 +4060,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_GetParentNotebook parameters: - name: group-id @@ -4103,6 +4160,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_UpdateParentNotebook parameters: - name: group-id @@ -4150,6 +4208,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_DeleteParentNotebook parameters: - name: group-id @@ -4196,6 +4255,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_GetParentSection parameters: - name: group-id @@ -4301,6 +4361,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_UpdateParentSection parameters: - name: group-id @@ -4348,6 +4409,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages_DeleteParentSection parameters: - name: group-id @@ -4394,6 +4456,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_GetParentNotebook parameters: - name: group-id @@ -4484,6 +4547,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_UpdateParentNotebook parameters: - name: group-id @@ -4524,6 +4588,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_DeleteParentNotebook parameters: - name: group-id @@ -4563,6 +4628,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_GetParentSectionGroup parameters: - name: group-id @@ -4665,6 +4731,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -4705,6 +4772,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -4744,6 +4812,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_GetParentNotebook parameters: - name: group-id @@ -4834,6 +4903,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: group-id @@ -4874,6 +4944,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: group-id @@ -4913,6 +4984,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: group-id @@ -5015,6 +5087,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: group-id @@ -5055,6 +5128,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: group-id @@ -5094,6 +5168,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_ListSectionGroups parameters: - name: group-id @@ -5218,6 +5293,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_CreateSectionGroups parameters: - name: group-id @@ -5263,6 +5339,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_GetSectionGroups parameters: - name: group-id @@ -5376,6 +5453,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: group-id @@ -5423,6 +5501,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: group-id @@ -5469,6 +5548,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_ListSections parameters: - name: group-id @@ -5594,6 +5674,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_CreateSections parameters: - name: group-id @@ -5639,6 +5720,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_GetSections parameters: - name: group-id @@ -5744,6 +5826,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_UpdateSections parameters: - name: group-id @@ -5791,6 +5874,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.parentSectionGroup_DeleteSections parameters: - name: group-id @@ -5837,6 +5921,7 @@ paths: tags: - groups.onenote summary: Get operations from groups + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: groups.onenote_ListOperations parameters: - name: group-id @@ -5936,6 +6021,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to operations for groups + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: groups.onenote_CreateOperations parameters: - name: group-id @@ -5967,6 +6053,7 @@ paths: tags: - groups.onenote summary: Get operations from groups + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: groups.onenote_GetOperations parameters: - name: group-id @@ -6028,6 +6115,7 @@ paths: tags: - groups.onenote summary: Update the navigation property operations in groups + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: groups.onenote_UpdateOperations parameters: - name: group-id @@ -6061,6 +6149,7 @@ paths: tags: - groups.onenote summary: Delete navigation property operations for groups + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: groups.onenote_DeleteOperations parameters: - name: group-id @@ -6093,6 +6182,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_ListPages parameters: - name: group-id @@ -6208,6 +6298,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_CreatePages parameters: - name: group-id @@ -6239,6 +6330,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_GetPages parameters: - name: group-id @@ -6319,6 +6411,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_UpdatePages parameters: - name: group-id @@ -6352,6 +6445,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_DeletePages parameters: - name: group-id @@ -6450,6 +6544,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.pages_GetParentNotebook parameters: - name: group-id @@ -6531,6 +6626,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.pages_UpdateParentNotebook parameters: - name: group-id @@ -6564,6 +6660,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.pages_DeleteParentNotebook parameters: - name: group-id @@ -6596,6 +6693,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -6713,6 +6811,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -6751,6 +6850,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -6853,6 +6953,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -6893,6 +6994,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -6932,6 +7034,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -7022,6 +7125,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -7062,6 +7166,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -7101,6 +7206,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -7203,6 +7309,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -7243,6 +7350,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -7282,6 +7390,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -7406,6 +7515,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -7451,6 +7561,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -7564,6 +7675,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -7611,6 +7723,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -7657,6 +7770,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_ListSections parameters: - name: group-id @@ -7782,6 +7896,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: group-id @@ -7827,6 +7942,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_GetSections parameters: - name: group-id @@ -7932,6 +8048,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: group-id @@ -7979,6 +8096,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: group-id @@ -8025,6 +8143,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_ListPages parameters: - name: group-id @@ -8161,6 +8280,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_CreatePages parameters: - name: group-id @@ -8213,6 +8333,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_GetPages parameters: - name: group-id @@ -8320,6 +8441,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_UpdatePages parameters: - name: group-id @@ -8374,6 +8496,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_DeletePages parameters: - name: group-id @@ -8535,6 +8658,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_GetParentNotebook parameters: - name: group-id @@ -8634,6 +8758,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentNotebook parameters: - name: group-id @@ -8681,6 +8806,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentNotebook parameters: - name: group-id @@ -8727,6 +8853,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_GetParentSectionGroup parameters: - name: group-id @@ -8840,6 +8967,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -8887,6 +9015,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -8933,6 +9062,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_ListSections parameters: - name: group-id @@ -9051,6 +9181,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_CreateSections parameters: - name: group-id @@ -9089,6 +9220,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_GetSections parameters: - name: group-id @@ -9184,6 +9316,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_UpdateSections parameters: - name: group-id @@ -9224,6 +9357,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook_DeleteSections parameters: - name: group-id @@ -9263,6 +9397,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections_ListPages parameters: - name: group-id @@ -9392,6 +9527,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections_CreatePages parameters: - name: group-id @@ -9437,6 +9573,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections_GetPages parameters: - name: group-id @@ -9535,6 +9672,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections_UpdatePages parameters: - name: group-id @@ -9582,6 +9720,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections_DeletePages parameters: - name: group-id @@ -9722,6 +9861,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_GetParentNotebook parameters: - name: group-id @@ -9812,6 +9952,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_UpdateParentNotebook parameters: - name: group-id @@ -9852,6 +9993,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_DeleteParentNotebook parameters: - name: group-id @@ -9891,6 +10033,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_GetParentSectionGroup parameters: - name: group-id @@ -9993,6 +10136,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -10033,6 +10177,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -10072,6 +10217,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentNotebook parameters: - name: group-id @@ -10162,6 +10308,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: group-id @@ -10202,6 +10349,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: group-id @@ -10241,6 +10389,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: group-id @@ -10343,6 +10492,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: group-id @@ -10383,6 +10533,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: group-id @@ -10422,6 +10573,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSectionGroups parameters: - name: group-id @@ -10546,6 +10698,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSectionGroups parameters: - name: group-id @@ -10591,6 +10744,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSectionGroups parameters: - name: group-id @@ -10704,6 +10858,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: group-id @@ -10751,6 +10906,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: group-id @@ -10797,6 +10953,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSections parameters: - name: group-id @@ -10922,6 +11079,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSections parameters: - name: group-id @@ -10967,6 +11125,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSections parameters: - name: group-id @@ -11072,6 +11231,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSections parameters: - name: group-id @@ -11119,6 +11279,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSections parameters: - name: group-id @@ -11165,6 +11326,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.pages_GetParentSection parameters: - name: group-id @@ -11250,6 +11412,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.pages_UpdateParentSection parameters: - name: group-id @@ -11283,6 +11446,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.pages_DeleteParentSection parameters: - name: group-id @@ -11315,6 +11479,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection_ListPages parameters: - name: group-id @@ -11437,6 +11602,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection_CreatePages parameters: - name: group-id @@ -11475,6 +11641,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection_GetPages parameters: - name: group-id @@ -11564,6 +11731,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection_UpdatePages parameters: - name: group-id @@ -11604,6 +11772,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection_DeletePages parameters: - name: group-id @@ -11723,6 +11892,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_GetParentNotebook parameters: - name: group-id @@ -11804,6 +11974,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_UpdateParentNotebook parameters: - name: group-id @@ -11837,6 +12008,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_DeleteParentNotebook parameters: - name: group-id @@ -11869,6 +12041,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -11986,6 +12159,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -12024,6 +12198,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -12126,6 +12301,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -12166,6 +12342,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -12205,6 +12382,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -12295,6 +12473,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -12335,6 +12514,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -12374,6 +12554,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -12476,6 +12657,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -12516,6 +12698,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -12555,6 +12738,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -12679,6 +12863,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -12724,6 +12909,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -12837,6 +13023,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -12884,6 +13071,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -12930,6 +13118,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSections parameters: - name: group-id @@ -13055,6 +13244,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSections parameters: - name: group-id @@ -13100,6 +13290,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSections parameters: - name: group-id @@ -13205,6 +13396,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSections parameters: - name: group-id @@ -13252,6 +13444,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSections parameters: - name: group-id @@ -13298,6 +13491,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_ListSections parameters: - name: group-id @@ -13416,6 +13610,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_CreateSections parameters: - name: group-id @@ -13454,6 +13649,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_GetSections parameters: - name: group-id @@ -13549,6 +13745,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_UpdateSections parameters: - name: group-id @@ -13589,6 +13786,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentNotebook_DeleteSections parameters: - name: group-id @@ -13628,6 +13826,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_GetParentSectionGroup parameters: - name: group-id @@ -13719,6 +13918,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_UpdateParentSectionGroup parameters: - name: group-id @@ -13752,6 +13952,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.pages.parentSection_DeleteParentSectionGroup parameters: - name: group-id @@ -13784,6 +13985,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_GetParentNotebook parameters: - name: group-id @@ -13865,6 +14067,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_UpdateParentNotebook parameters: - name: group-id @@ -13898,6 +14101,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_DeleteParentNotebook parameters: - name: group-id @@ -13930,6 +14134,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -14047,6 +14252,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -14085,6 +14291,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -14187,6 +14394,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -14227,6 +14435,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -14266,6 +14475,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSections parameters: - name: group-id @@ -14384,6 +14594,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSections parameters: - name: group-id @@ -14422,6 +14633,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSections parameters: - name: group-id @@ -14517,6 +14729,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: group-id @@ -14557,6 +14770,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: group-id @@ -14596,6 +14810,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_GetParentSectionGroup parameters: - name: group-id @@ -14687,6 +14902,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_UpdateParentSectionGroup parameters: - name: group-id @@ -14720,6 +14936,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.pages.parentSection.parentSectionGroup_DeleteParentSectionGroup parameters: - name: group-id @@ -14752,6 +14969,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_ListSectionGroups parameters: - name: group-id @@ -14869,6 +15087,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_CreateSectionGroups parameters: - name: group-id @@ -14907,6 +15126,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_GetSectionGroups parameters: - name: group-id @@ -15009,6 +15229,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_UpdateSectionGroups parameters: - name: group-id @@ -15049,6 +15270,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_DeleteSectionGroups parameters: - name: group-id @@ -15088,6 +15310,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_ListSections parameters: - name: group-id @@ -15206,6 +15429,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_CreateSections parameters: - name: group-id @@ -15244,6 +15468,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_GetSections parameters: - name: group-id @@ -15339,6 +15564,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_UpdateSections parameters: - name: group-id @@ -15379,6 +15605,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.pages.parentSection.parentSectionGroup_DeleteSections parameters: - name: group-id @@ -15418,6 +15645,7 @@ paths: tags: - groups.onenote summary: Get resources from groups + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: groups.onenote_ListResources parameters: - name: group-id @@ -15505,6 +15733,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to resources for groups + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: groups.onenote_CreateResources parameters: - name: group-id @@ -15536,6 +15765,7 @@ paths: tags: - groups.onenote summary: Get resources from groups + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: groups.onenote_GetResources parameters: - name: group-id @@ -15593,6 +15823,7 @@ paths: tags: - groups.onenote summary: Update the navigation property resources in groups + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: groups.onenote_UpdateResources parameters: - name: group-id @@ -15626,6 +15857,7 @@ paths: tags: - groups.onenote summary: Delete navigation property resources for groups + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: groups.onenote_DeleteResources parameters: - name: group-id @@ -15724,6 +15956,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_ListSectionGroups parameters: - name: group-id @@ -15834,6 +16067,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_CreateSectionGroups parameters: - name: group-id @@ -15865,6 +16099,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_GetSectionGroups parameters: - name: group-id @@ -15956,6 +16191,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_UpdateSectionGroups parameters: - name: group-id @@ -15989,6 +16225,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_DeleteSectionGroups parameters: - name: group-id @@ -16021,6 +16258,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -16102,6 +16340,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -16135,6 +16374,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -16167,6 +16407,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -16284,6 +16525,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -16322,6 +16564,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -16424,6 +16667,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -16464,6 +16708,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -16503,6 +16748,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_ListSections parameters: - name: group-id @@ -16621,6 +16867,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_CreateSections parameters: - name: group-id @@ -16659,6 +16906,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_GetSections parameters: - name: group-id @@ -16754,6 +17002,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_UpdateSections parameters: - name: group-id @@ -16794,6 +17043,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook_DeleteSections parameters: - name: group-id @@ -16833,6 +17083,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook.sections_ListPages parameters: - name: group-id @@ -16962,6 +17213,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook.sections_CreatePages parameters: - name: group-id @@ -17007,6 +17259,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook.sections_GetPages parameters: - name: group-id @@ -17105,6 +17358,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook.sections_UpdatePages parameters: - name: group-id @@ -17152,6 +17406,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.parentNotebook.sections_DeletePages parameters: - name: group-id @@ -17292,6 +17547,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_GetParentNotebook parameters: - name: group-id @@ -17391,6 +17647,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentNotebook parameters: - name: group-id @@ -17438,6 +17695,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentNotebook parameters: - name: group-id @@ -17484,6 +17742,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_GetParentSection parameters: - name: group-id @@ -17589,6 +17848,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentSection parameters: - name: group-id @@ -17636,6 +17896,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentSection parameters: - name: group-id @@ -17682,6 +17943,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_GetParentNotebook parameters: - name: group-id @@ -17772,6 +18034,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_UpdateParentNotebook parameters: - name: group-id @@ -17812,6 +18075,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_DeleteParentNotebook parameters: - name: group-id @@ -17851,6 +18115,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_GetParentSectionGroup parameters: - name: group-id @@ -17953,6 +18218,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -17993,6 +18259,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -18032,6 +18299,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -18123,6 +18391,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -18156,6 +18425,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -18188,6 +18458,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -18305,6 +18576,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -18343,6 +18615,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -18445,6 +18718,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -18485,6 +18759,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -18524,6 +18799,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups_ListSections parameters: - name: group-id @@ -18642,6 +18918,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups_CreateSections parameters: - name: group-id @@ -18680,6 +18957,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups_GetSections parameters: - name: group-id @@ -18775,6 +19053,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups_UpdateSections parameters: - name: group-id @@ -18815,6 +19094,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups_DeleteSections parameters: - name: group-id @@ -18854,6 +19134,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections_ListPages parameters: - name: group-id @@ -18983,6 +19264,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections_CreatePages parameters: - name: group-id @@ -19028,6 +19310,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections_GetPages parameters: - name: group-id @@ -19126,6 +19409,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections_UpdatePages parameters: - name: group-id @@ -19173,6 +19457,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections_DeletePages parameters: - name: group-id @@ -19313,6 +19598,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_GetParentNotebook parameters: - name: group-id @@ -19412,6 +19698,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: group-id @@ -19459,6 +19746,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: group-id @@ -19505,6 +19793,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -19636,6 +19925,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -19688,6 +19978,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -19812,6 +20103,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -19866,6 +20158,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -19919,6 +20212,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_ListSections parameters: - name: group-id @@ -20051,6 +20345,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_CreateSections parameters: - name: group-id @@ -20103,6 +20398,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_GetSections parameters: - name: group-id @@ -20218,6 +20514,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSections parameters: - name: group-id @@ -20272,6 +20569,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSections parameters: - name: group-id @@ -20325,6 +20623,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_GetParentSection parameters: - name: group-id @@ -20430,6 +20729,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_UpdateParentSection parameters: - name: group-id @@ -20477,6 +20777,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages_DeleteParentSection parameters: - name: group-id @@ -20523,6 +20824,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_GetParentNotebook parameters: - name: group-id @@ -20613,6 +20915,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_UpdateParentNotebook parameters: - name: group-id @@ -20653,6 +20956,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_DeleteParentNotebook parameters: - name: group-id @@ -20692,6 +20996,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -20816,6 +21121,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -20861,6 +21167,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -20974,6 +21281,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -21021,6 +21329,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -21067,6 +21376,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_ListSections parameters: - name: group-id @@ -21192,6 +21502,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_CreateSections parameters: - name: group-id @@ -21237,6 +21548,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_GetSections parameters: - name: group-id @@ -21342,6 +21654,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_UpdateSections parameters: - name: group-id @@ -21389,6 +21702,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.parentNotebook_DeleteSections parameters: - name: group-id @@ -21435,6 +21749,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_GetParentSectionGroup parameters: - name: group-id @@ -21537,6 +21852,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -21577,6 +21893,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -21616,6 +21933,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_ListSections parameters: - name: group-id @@ -21727,6 +22045,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_CreateSections parameters: - name: group-id @@ -21758,6 +22077,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_GetSections parameters: - name: group-id @@ -21843,6 +22163,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_UpdateSections parameters: - name: group-id @@ -21876,6 +22197,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote_DeleteSections parameters: - name: group-id @@ -21908,6 +22230,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections_ListPages parameters: - name: group-id @@ -22030,6 +22353,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections_CreatePages parameters: - name: group-id @@ -22068,6 +22392,7 @@ paths: tags: - groups.onenote summary: Get pages from groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections_GetPages parameters: - name: group-id @@ -22157,6 +22482,7 @@ paths: tags: - groups.onenote summary: Update the navigation property pages in groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections_UpdatePages parameters: - name: group-id @@ -22197,6 +22523,7 @@ paths: tags: - groups.onenote summary: Delete navigation property pages for groups + description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections_DeletePages parameters: - name: group-id @@ -22316,6 +22643,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sections.pages_GetParentNotebook parameters: - name: group-id @@ -22406,6 +22734,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sections.pages_UpdateParentNotebook parameters: - name: group-id @@ -22446,6 +22775,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the page. Read-only. operationId: groups.onenote.sections.pages_DeleteParentNotebook parameters: - name: group-id @@ -22485,6 +22815,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -22609,6 +22940,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -22654,6 +22986,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -22767,6 +23100,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -22814,6 +23148,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -22860,6 +23195,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -22959,6 +23295,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -23006,6 +23343,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -23052,6 +23390,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -23165,6 +23504,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -23212,6 +23552,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -23258,6 +23599,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -23389,6 +23731,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -23441,6 +23784,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -23565,6 +23909,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -23619,6 +23964,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -23672,6 +24018,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_ListSections parameters: - name: group-id @@ -23804,6 +24151,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: group-id @@ -23856,6 +24204,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_GetSections parameters: - name: group-id @@ -23971,6 +24320,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: group-id @@ -24025,6 +24375,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: group-id @@ -24078,6 +24429,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_ListSections parameters: - name: group-id @@ -24203,6 +24555,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_CreateSections parameters: - name: group-id @@ -24248,6 +24601,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_GetSections parameters: - name: group-id @@ -24353,6 +24707,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_UpdateSections parameters: - name: group-id @@ -24400,6 +24755,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.pages.parentNotebook_DeleteSections parameters: - name: group-id @@ -24446,6 +24802,7 @@ paths: tags: - groups.onenote summary: Get parentSection from groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sections.pages_GetParentSection parameters: - name: group-id @@ -24541,6 +24898,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSection in groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sections.pages_UpdateParentSection parameters: - name: group-id @@ -24581,6 +24939,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSection for groups + description: The section that contains the page. Read-only. operationId: groups.onenote.sections.pages_DeleteParentSection parameters: - name: group-id @@ -24620,6 +24979,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sections_GetParentNotebook parameters: - name: group-id @@ -24701,6 +25061,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sections_UpdateParentNotebook parameters: - name: group-id @@ -24734,6 +25095,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section. Read-only. operationId: groups.onenote.sections_DeleteParentNotebook parameters: - name: group-id @@ -24766,6 +25128,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -24883,6 +25246,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -24921,6 +25285,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -25023,6 +25388,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -25063,6 +25429,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -25102,6 +25469,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: group-id @@ -25192,6 +25560,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: group-id @@ -25232,6 +25601,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: group-id @@ -25271,6 +25641,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: group-id @@ -25373,6 +25744,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: group-id @@ -25413,6 +25785,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: group-id @@ -25452,6 +25825,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: group-id @@ -25576,6 +25950,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: group-id @@ -25621,6 +25996,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: group-id @@ -25734,6 +26110,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: group-id @@ -25781,6 +26158,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: group-id @@ -25827,6 +26205,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_ListSections parameters: - name: group-id @@ -25952,6 +26331,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_CreateSections parameters: - name: group-id @@ -25997,6 +26377,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_GetSections parameters: - name: group-id @@ -26102,6 +26483,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_UpdateSections parameters: - name: group-id @@ -26149,6 +26531,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook.sectionGroups_DeleteSections parameters: - name: group-id @@ -26195,6 +26578,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_ListSections parameters: - name: group-id @@ -26313,6 +26697,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_CreateSections parameters: - name: group-id @@ -26351,6 +26736,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_GetSections parameters: - name: group-id @@ -26446,6 +26832,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_UpdateSections parameters: - name: group-id @@ -26486,6 +26873,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentNotebook_DeleteSections parameters: - name: group-id @@ -26525,6 +26913,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sections_GetParentSectionGroup parameters: - name: group-id @@ -26616,6 +27005,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sections_UpdateParentSectionGroup parameters: - name: group-id @@ -26649,6 +27039,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section. Read-only. operationId: groups.onenote.sections_DeleteParentSectionGroup parameters: - name: group-id @@ -26681,6 +27072,7 @@ paths: tags: - groups.onenote summary: Get parentNotebook from groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_GetParentNotebook parameters: - name: group-id @@ -26762,6 +27154,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentNotebook in groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: group-id @@ -26795,6 +27188,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentNotebook for groups + description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: group-id @@ -26827,6 +27221,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: group-id @@ -26944,6 +27339,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: group-id @@ -26982,6 +27378,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: group-id @@ -27084,6 +27481,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: group-id @@ -27124,6 +27522,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: group-id @@ -27163,6 +27562,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_ListSections parameters: - name: group-id @@ -27281,6 +27681,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_CreateSections parameters: - name: group-id @@ -27319,6 +27720,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_GetSections parameters: - name: group-id @@ -27414,6 +27816,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: group-id @@ -27454,6 +27857,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: group-id @@ -27493,6 +27897,7 @@ paths: tags: - groups.onenote summary: Get parentSectionGroup from groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: group-id @@ -27584,6 +27989,7 @@ paths: tags: - groups.onenote summary: Update the navigation property parentSectionGroup in groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: group-id @@ -27617,6 +28023,7 @@ paths: tags: - groups.onenote summary: Delete navigation property parentSectionGroup for groups + description: The section group that contains the section group. Read-only. operationId: groups.onenote.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: group-id @@ -27649,6 +28056,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_ListSectionGroups parameters: - name: group-id @@ -27766,6 +28174,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_CreateSectionGroups parameters: - name: group-id @@ -27804,6 +28213,7 @@ paths: tags: - groups.onenote summary: Get sectionGroups from groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_GetSectionGroups parameters: - name: group-id @@ -27906,6 +28316,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sectionGroups in groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: group-id @@ -27946,6 +28357,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sectionGroups for groups + description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: group-id @@ -27985,6 +28397,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_ListSections parameters: - name: group-id @@ -28103,6 +28516,7 @@ paths: tags: - groups.onenote summary: Create new navigation property to sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_CreateSections parameters: - name: group-id @@ -28141,6 +28555,7 @@ paths: tags: - groups.onenote summary: Get sections from groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_GetSections parameters: - name: group-id @@ -28236,6 +28651,7 @@ paths: tags: - groups.onenote summary: Update the navigation property sections in groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_UpdateSections parameters: - name: group-id @@ -28276,6 +28692,7 @@ paths: tags: - groups.onenote summary: Delete navigation property sections for groups + description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sections.parentSectionGroup_DeleteSections parameters: - name: group-id @@ -28315,6 +28732,7 @@ paths: tags: - sites.onenote summary: Get onenote from sites + description: Calls the OneNote service for notebook related operations. operationId: sites_GetOnenote parameters: - name: site-id @@ -28399,6 +28817,7 @@ paths: tags: - sites.onenote summary: Update the navigation property onenote in sites + description: Calls the OneNote service for notebook related operations. operationId: sites_UpdateOnenote parameters: - name: site-id @@ -28425,6 +28844,7 @@ paths: tags: - sites.onenote summary: Delete navigation property onenote for sites + description: Calls the OneNote service for notebook related operations. operationId: sites_DeleteOnenote parameters: - name: site-id @@ -28450,6 +28870,7 @@ paths: tags: - sites.onenote summary: Get notebooks from sites + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_ListNotebooks parameters: - name: site-id @@ -28568,6 +28989,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to notebooks for sites + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_CreateNotebooks parameters: - name: site-id @@ -28599,6 +29021,7 @@ paths: tags: - sites.onenote summary: Get notebooks from sites + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_GetNotebooks parameters: - name: site-id @@ -28680,6 +29103,7 @@ paths: tags: - sites.onenote summary: Update the navigation property notebooks in sites + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_UpdateNotebooks parameters: - name: site-id @@ -28713,6 +29137,7 @@ paths: tags: - sites.onenote summary: Delete navigation property notebooks for sites + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_DeleteNotebooks parameters: - name: site-id @@ -28745,6 +29170,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_ListSectionGroups parameters: - name: site-id @@ -28862,6 +29288,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_CreateSectionGroups parameters: - name: site-id @@ -28900,6 +29327,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_GetSectionGroups parameters: - name: site-id @@ -29002,6 +29430,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_UpdateSectionGroups parameters: - name: site-id @@ -29042,6 +29471,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_DeleteSectionGroups parameters: - name: site-id @@ -29081,6 +29511,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -29171,6 +29602,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -29211,6 +29643,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -29250,6 +29683,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -29352,6 +29786,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -29392,6 +29827,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -29431,6 +29867,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -29555,6 +29992,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -29600,6 +30038,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -29713,6 +30152,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -29760,6 +30200,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -29806,6 +30247,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_ListSections parameters: - name: site-id @@ -29931,6 +30373,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_CreateSections parameters: - name: site-id @@ -29976,6 +30419,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_GetSections parameters: - name: site-id @@ -30081,6 +30525,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_UpdateSections parameters: - name: site-id @@ -30128,6 +30573,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups_DeleteSections parameters: - name: site-id @@ -30174,6 +30620,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups.sections_ListPages parameters: - name: site-id @@ -30310,6 +30757,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups.sections_CreatePages parameters: - name: site-id @@ -30362,6 +30810,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups.sections_GetPages parameters: - name: site-id @@ -30469,6 +30918,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups.sections_UpdatePages parameters: - name: site-id @@ -30523,6 +30973,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sectionGroups.sections_DeletePages parameters: - name: site-id @@ -30684,6 +31135,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_GetParentNotebook parameters: - name: site-id @@ -30792,6 +31244,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: site-id @@ -30846,6 +31299,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: site-id @@ -30899,6 +31353,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_GetParentSection parameters: - name: site-id @@ -31014,6 +31469,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_UpdateParentSection parameters: - name: site-id @@ -31068,6 +31524,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections.pages_DeleteParentSection parameters: - name: site-id @@ -31121,6 +31578,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_GetParentNotebook parameters: - name: site-id @@ -31220,6 +31678,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_UpdateParentNotebook parameters: - name: site-id @@ -31267,6 +31726,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_DeleteParentNotebook parameters: - name: site-id @@ -31313,6 +31773,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_GetParentSectionGroup parameters: - name: site-id @@ -31426,6 +31887,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -31473,6 +31935,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -31519,6 +31982,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_ListSections parameters: - name: site-id @@ -31637,6 +32101,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_CreateSections parameters: - name: site-id @@ -31675,6 +32140,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_GetSections parameters: - name: site-id @@ -31770,6 +32236,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_UpdateSections parameters: - name: site-id @@ -31810,6 +32277,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.notebooks_DeleteSections parameters: - name: site-id @@ -31849,6 +32317,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections_ListPages parameters: - name: site-id @@ -31978,6 +32447,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections_CreatePages parameters: - name: site-id @@ -32023,6 +32493,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections_GetPages parameters: - name: site-id @@ -32121,6 +32592,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections_UpdatePages parameters: - name: site-id @@ -32168,6 +32640,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections_DeletePages parameters: - name: site-id @@ -32308,6 +32781,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_GetParentNotebook parameters: - name: site-id @@ -32407,6 +32881,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_UpdateParentNotebook parameters: - name: site-id @@ -32454,6 +32929,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_DeleteParentNotebook parameters: - name: site-id @@ -32500,6 +32976,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_GetParentSection parameters: - name: site-id @@ -32605,6 +33082,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_UpdateParentSection parameters: - name: site-id @@ -32652,6 +33130,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.notebooks.sections.pages_DeleteParentSection parameters: - name: site-id @@ -32698,6 +33177,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_GetParentNotebook parameters: - name: site-id @@ -32788,6 +33268,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_UpdateParentNotebook parameters: - name: site-id @@ -32828,6 +33309,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_DeleteParentNotebook parameters: - name: site-id @@ -32867,6 +33349,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_GetParentSectionGroup parameters: - name: site-id @@ -32969,6 +33452,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -33009,6 +33493,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.notebooks.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -33048,6 +33533,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_GetParentNotebook parameters: - name: site-id @@ -33138,6 +33624,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: site-id @@ -33178,6 +33665,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: site-id @@ -33217,6 +33705,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: site-id @@ -33319,6 +33808,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: site-id @@ -33359,6 +33849,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.notebooks.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: site-id @@ -33398,6 +33889,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_ListSectionGroups parameters: - name: site-id @@ -33522,6 +34014,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_CreateSectionGroups parameters: - name: site-id @@ -33567,6 +34060,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_GetSectionGroups parameters: - name: site-id @@ -33680,6 +34174,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: site-id @@ -33727,6 +34222,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: site-id @@ -33773,6 +34269,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_ListSections parameters: - name: site-id @@ -33898,6 +34395,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_CreateSections parameters: - name: site-id @@ -33943,6 +34441,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_GetSections parameters: - name: site-id @@ -34048,6 +34547,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_UpdateSections parameters: - name: site-id @@ -34095,6 +34595,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.notebooks.sections.parentSectionGroup_DeleteSections parameters: - name: site-id @@ -34141,6 +34642,7 @@ paths: tags: - sites.onenote summary: Get operations from sites + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: sites.onenote_ListOperations parameters: - name: site-id @@ -34240,6 +34742,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to operations for sites + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: sites.onenote_CreateOperations parameters: - name: site-id @@ -34271,6 +34774,7 @@ paths: tags: - sites.onenote summary: Get operations from sites + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: sites.onenote_GetOperations parameters: - name: site-id @@ -34332,6 +34836,7 @@ paths: tags: - sites.onenote summary: Update the navigation property operations in sites + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: sites.onenote_UpdateOperations parameters: - name: site-id @@ -34365,6 +34870,7 @@ paths: tags: - sites.onenote summary: Delete navigation property operations for sites + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: sites.onenote_DeleteOperations parameters: - name: site-id @@ -34397,6 +34903,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_ListPages parameters: - name: site-id @@ -34512,6 +35019,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_CreatePages parameters: - name: site-id @@ -34543,6 +35051,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_GetPages parameters: - name: site-id @@ -34623,6 +35132,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_UpdatePages parameters: - name: site-id @@ -34656,6 +35166,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_DeletePages parameters: - name: site-id @@ -34754,6 +35265,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.pages_GetParentNotebook parameters: - name: site-id @@ -34835,6 +35347,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.pages_UpdateParentNotebook parameters: - name: site-id @@ -34868,6 +35381,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.pages_DeleteParentNotebook parameters: - name: site-id @@ -34900,6 +35414,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -35017,6 +35532,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -35055,6 +35571,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -35157,6 +35674,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -35197,6 +35715,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -35236,6 +35755,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -35326,6 +35846,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -35366,6 +35887,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -35405,6 +35927,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -35507,6 +36030,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -35547,6 +36071,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -35586,6 +36111,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -35710,6 +36236,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -35755,6 +36282,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -35868,6 +36396,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -35915,6 +36444,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -35961,6 +36491,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_ListSections parameters: - name: site-id @@ -36086,6 +36617,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: site-id @@ -36131,6 +36663,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_GetSections parameters: - name: site-id @@ -36236,6 +36769,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: site-id @@ -36283,6 +36817,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: site-id @@ -36329,6 +36864,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_ListPages parameters: - name: site-id @@ -36465,6 +37001,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_CreatePages parameters: - name: site-id @@ -36517,6 +37054,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_GetPages parameters: - name: site-id @@ -36624,6 +37162,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_UpdatePages parameters: - name: site-id @@ -36678,6 +37217,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_DeletePages parameters: - name: site-id @@ -36839,6 +37379,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_GetParentNotebook parameters: - name: site-id @@ -36938,6 +37479,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentNotebook parameters: - name: site-id @@ -36985,6 +37527,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentNotebook parameters: - name: site-id @@ -37031,6 +37574,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_GetParentSectionGroup parameters: - name: site-id @@ -37144,6 +37688,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -37191,6 +37736,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -37237,6 +37783,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_ListSections parameters: - name: site-id @@ -37355,6 +37902,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_CreateSections parameters: - name: site-id @@ -37393,6 +37941,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_GetSections parameters: - name: site-id @@ -37488,6 +38037,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_UpdateSections parameters: - name: site-id @@ -37528,6 +38078,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook_DeleteSections parameters: - name: site-id @@ -37567,6 +38118,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections_ListPages parameters: - name: site-id @@ -37696,6 +38248,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections_CreatePages parameters: - name: site-id @@ -37741,6 +38294,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections_GetPages parameters: - name: site-id @@ -37839,6 +38393,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections_UpdatePages parameters: - name: site-id @@ -37886,6 +38441,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections_DeletePages parameters: - name: site-id @@ -38026,6 +38582,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_GetParentNotebook parameters: - name: site-id @@ -38116,6 +38673,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_UpdateParentNotebook parameters: - name: site-id @@ -38156,6 +38714,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_DeleteParentNotebook parameters: - name: site-id @@ -38195,6 +38754,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_GetParentSectionGroup parameters: - name: site-id @@ -38297,6 +38857,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -38337,6 +38898,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -38376,6 +38938,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentNotebook parameters: - name: site-id @@ -38466,6 +39029,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: site-id @@ -38506,6 +39070,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: site-id @@ -38545,6 +39110,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: site-id @@ -38647,6 +39213,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: site-id @@ -38687,6 +39254,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: site-id @@ -38726,6 +39294,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSectionGroups parameters: - name: site-id @@ -38850,6 +39419,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSectionGroups parameters: - name: site-id @@ -38895,6 +39465,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSectionGroups parameters: - name: site-id @@ -39008,6 +39579,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: site-id @@ -39055,6 +39627,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: site-id @@ -39101,6 +39674,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSections parameters: - name: site-id @@ -39226,6 +39800,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSections parameters: - name: site-id @@ -39271,6 +39846,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSections parameters: - name: site-id @@ -39376,6 +39952,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSections parameters: - name: site-id @@ -39423,6 +40000,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSections parameters: - name: site-id @@ -39469,6 +40047,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.pages_GetParentSection parameters: - name: site-id @@ -39554,6 +40133,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.pages_UpdateParentSection parameters: - name: site-id @@ -39587,6 +40167,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.pages_DeleteParentSection parameters: - name: site-id @@ -39619,6 +40200,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection_ListPages parameters: - name: site-id @@ -39741,6 +40323,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection_CreatePages parameters: - name: site-id @@ -39779,6 +40362,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection_GetPages parameters: - name: site-id @@ -39868,6 +40452,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection_UpdatePages parameters: - name: site-id @@ -39908,6 +40493,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection_DeletePages parameters: - name: site-id @@ -40027,6 +40613,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_GetParentNotebook parameters: - name: site-id @@ -40108,6 +40695,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_UpdateParentNotebook parameters: - name: site-id @@ -40141,6 +40729,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_DeleteParentNotebook parameters: - name: site-id @@ -40173,6 +40762,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -40290,6 +40880,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -40328,6 +40919,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -40430,6 +41022,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -40470,6 +41063,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -40509,6 +41103,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -40599,6 +41194,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -40639,6 +41235,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -40678,6 +41275,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -40780,6 +41378,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -40820,6 +41419,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -40859,6 +41459,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -40983,6 +41584,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -41028,6 +41630,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -41141,6 +41744,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -41188,6 +41792,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -41234,6 +41839,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSections parameters: - name: site-id @@ -41359,6 +41965,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSections parameters: - name: site-id @@ -41404,6 +42011,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSections parameters: - name: site-id @@ -41509,6 +42117,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSections parameters: - name: site-id @@ -41556,6 +42165,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSections parameters: - name: site-id @@ -41602,6 +42212,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_ListSections parameters: - name: site-id @@ -41720,6 +42331,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_CreateSections parameters: - name: site-id @@ -41758,6 +42370,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_GetSections parameters: - name: site-id @@ -41853,6 +42466,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_UpdateSections parameters: - name: site-id @@ -41893,6 +42507,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentNotebook_DeleteSections parameters: - name: site-id @@ -41932,6 +42547,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_GetParentSectionGroup parameters: - name: site-id @@ -42023,6 +42639,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_UpdateParentSectionGroup parameters: - name: site-id @@ -42056,6 +42673,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.pages.parentSection_DeleteParentSectionGroup parameters: - name: site-id @@ -42088,6 +42706,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_GetParentNotebook parameters: - name: site-id @@ -42169,6 +42788,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_UpdateParentNotebook parameters: - name: site-id @@ -42202,6 +42822,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_DeleteParentNotebook parameters: - name: site-id @@ -42234,6 +42855,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -42351,6 +42973,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -42389,6 +43012,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -42491,6 +43115,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -42531,6 +43156,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -42570,6 +43196,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSections parameters: - name: site-id @@ -42688,6 +43315,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSections parameters: - name: site-id @@ -42726,6 +43354,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSections parameters: - name: site-id @@ -42821,6 +43450,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: site-id @@ -42861,6 +43491,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: site-id @@ -42900,6 +43531,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_GetParentSectionGroup parameters: - name: site-id @@ -42991,6 +43623,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_UpdateParentSectionGroup parameters: - name: site-id @@ -43024,6 +43657,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.pages.parentSection.parentSectionGroup_DeleteParentSectionGroup parameters: - name: site-id @@ -43056,6 +43690,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_ListSectionGroups parameters: - name: site-id @@ -43173,6 +43808,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_CreateSectionGroups parameters: - name: site-id @@ -43211,6 +43847,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_GetSectionGroups parameters: - name: site-id @@ -43313,6 +43950,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_UpdateSectionGroups parameters: - name: site-id @@ -43353,6 +43991,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_DeleteSectionGroups parameters: - name: site-id @@ -43392,6 +44031,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_ListSections parameters: - name: site-id @@ -43510,6 +44150,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_CreateSections parameters: - name: site-id @@ -43548,6 +44189,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_GetSections parameters: - name: site-id @@ -43643,6 +44285,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_UpdateSections parameters: - name: site-id @@ -43683,6 +44326,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.pages.parentSection.parentSectionGroup_DeleteSections parameters: - name: site-id @@ -43722,6 +44366,7 @@ paths: tags: - sites.onenote summary: Get resources from sites + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: sites.onenote_ListResources parameters: - name: site-id @@ -43809,6 +44454,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to resources for sites + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: sites.onenote_CreateResources parameters: - name: site-id @@ -43840,6 +44486,7 @@ paths: tags: - sites.onenote summary: Get resources from sites + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: sites.onenote_GetResources parameters: - name: site-id @@ -43897,6 +44544,7 @@ paths: tags: - sites.onenote summary: Update the navigation property resources in sites + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: sites.onenote_UpdateResources parameters: - name: site-id @@ -43930,6 +44578,7 @@ paths: tags: - sites.onenote summary: Delete navigation property resources for sites + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: sites.onenote_DeleteResources parameters: - name: site-id @@ -44028,6 +44677,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_ListSectionGroups parameters: - name: site-id @@ -44138,6 +44788,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_CreateSectionGroups parameters: - name: site-id @@ -44169,6 +44820,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_GetSectionGroups parameters: - name: site-id @@ -44260,6 +44912,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_UpdateSectionGroups parameters: - name: site-id @@ -44293,6 +44946,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_DeleteSectionGroups parameters: - name: site-id @@ -44325,6 +44979,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -44406,6 +45061,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -44439,6 +45095,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -44471,6 +45128,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -44588,6 +45246,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -44626,6 +45285,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -44728,6 +45388,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -44768,6 +45429,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -44807,6 +45469,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_ListSections parameters: - name: site-id @@ -44925,6 +45588,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_CreateSections parameters: - name: site-id @@ -44963,6 +45627,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_GetSections parameters: - name: site-id @@ -45058,6 +45723,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_UpdateSections parameters: - name: site-id @@ -45098,6 +45764,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook_DeleteSections parameters: - name: site-id @@ -45137,6 +45804,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook.sections_ListPages parameters: - name: site-id @@ -45266,6 +45934,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook.sections_CreatePages parameters: - name: site-id @@ -45311,6 +45980,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook.sections_GetPages parameters: - name: site-id @@ -45409,6 +46079,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook.sections_UpdatePages parameters: - name: site-id @@ -45456,6 +46127,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.parentNotebook.sections_DeletePages parameters: - name: site-id @@ -45596,6 +46268,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_GetParentNotebook parameters: - name: site-id @@ -45695,6 +46368,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentNotebook parameters: - name: site-id @@ -45742,6 +46416,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentNotebook parameters: - name: site-id @@ -45788,6 +46463,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_GetParentSection parameters: - name: site-id @@ -45893,6 +46569,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentSection parameters: - name: site-id @@ -45940,6 +46617,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentSection parameters: - name: site-id @@ -45986,6 +46664,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_GetParentNotebook parameters: - name: site-id @@ -46076,6 +46755,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_UpdateParentNotebook parameters: - name: site-id @@ -46116,6 +46796,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_DeleteParentNotebook parameters: - name: site-id @@ -46155,6 +46836,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_GetParentSectionGroup parameters: - name: site-id @@ -46257,6 +46939,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -46297,6 +46980,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -46336,6 +47020,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -46427,6 +47112,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -46460,6 +47146,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -46492,6 +47179,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -46609,6 +47297,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -46647,6 +47336,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -46749,6 +47439,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -46789,6 +47480,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -46828,6 +47520,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sectionGroups_ListSections parameters: - name: site-id @@ -46946,6 +47639,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sectionGroups_CreateSections parameters: - name: site-id @@ -46984,6 +47678,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sectionGroups_GetSections parameters: - name: site-id @@ -47079,6 +47774,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sectionGroups_UpdateSections parameters: - name: site-id @@ -47119,6 +47815,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sectionGroups_DeleteSections parameters: - name: site-id @@ -47158,6 +47855,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections_ListPages parameters: - name: site-id @@ -47287,6 +47985,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections_CreatePages parameters: - name: site-id @@ -47332,6 +48031,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections_GetPages parameters: - name: site-id @@ -47430,6 +48130,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections_UpdatePages parameters: - name: site-id @@ -47477,6 +48178,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections_DeletePages parameters: - name: site-id @@ -47617,6 +48319,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_GetParentNotebook parameters: - name: site-id @@ -47716,6 +48419,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: site-id @@ -47763,6 +48467,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: site-id @@ -47809,6 +48514,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -47940,6 +48646,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -47992,6 +48699,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -48116,6 +48824,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -48170,6 +48879,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -48223,6 +48933,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_ListSections parameters: - name: site-id @@ -48355,6 +49066,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_CreateSections parameters: - name: site-id @@ -48407,6 +49119,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_GetSections parameters: - name: site-id @@ -48522,6 +49235,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSections parameters: - name: site-id @@ -48576,6 +49290,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSections parameters: - name: site-id @@ -48629,6 +49344,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_GetParentSection parameters: - name: site-id @@ -48734,6 +49450,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_UpdateParentSection parameters: - name: site-id @@ -48781,6 +49498,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sectionGroups.sections.pages_DeleteParentSection parameters: - name: site-id @@ -48827,6 +49545,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_GetParentNotebook parameters: - name: site-id @@ -48917,6 +49636,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_UpdateParentNotebook parameters: - name: site-id @@ -48957,6 +49677,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_DeleteParentNotebook parameters: - name: site-id @@ -48996,6 +49717,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -49120,6 +49842,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -49165,6 +49888,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -49278,6 +50002,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -49325,6 +50050,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -49371,6 +50097,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_ListSections parameters: - name: site-id @@ -49496,6 +50223,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_CreateSections parameters: - name: site-id @@ -49541,6 +50269,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_GetSections parameters: - name: site-id @@ -49646,6 +50375,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_UpdateSections parameters: - name: site-id @@ -49693,6 +50423,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sectionGroups.sections.parentNotebook_DeleteSections parameters: - name: site-id @@ -49739,6 +50470,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_GetParentSectionGroup parameters: - name: site-id @@ -49841,6 +50573,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -49881,6 +50614,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -49920,6 +50654,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_ListSections parameters: - name: site-id @@ -50031,6 +50766,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_CreateSections parameters: - name: site-id @@ -50062,6 +50798,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_GetSections parameters: - name: site-id @@ -50147,6 +50884,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_UpdateSections parameters: - name: site-id @@ -50180,6 +50918,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: sites.onenote_DeleteSections parameters: - name: site-id @@ -50212,6 +50951,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sections_ListPages parameters: - name: site-id @@ -50334,6 +51074,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sections_CreatePages parameters: - name: site-id @@ -50372,6 +51113,7 @@ paths: tags: - sites.onenote summary: Get pages from sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sections_GetPages parameters: - name: site-id @@ -50461,6 +51203,7 @@ paths: tags: - sites.onenote summary: Update the navigation property pages in sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sections_UpdatePages parameters: - name: site-id @@ -50501,6 +51244,7 @@ paths: tags: - sites.onenote summary: Delete navigation property pages for sites + description: The collection of pages in the section. Read-only. Nullable. operationId: sites.onenote.sections_DeletePages parameters: - name: site-id @@ -50620,6 +51364,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sections.pages_GetParentNotebook parameters: - name: site-id @@ -50710,6 +51455,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sections.pages_UpdateParentNotebook parameters: - name: site-id @@ -50750,6 +51496,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the page. Read-only. operationId: sites.onenote.sections.pages_DeleteParentNotebook parameters: - name: site-id @@ -50789,6 +51536,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -50913,6 +51661,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -50958,6 +51707,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -51071,6 +51821,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -51118,6 +51869,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -51164,6 +51916,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -51263,6 +52016,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -51310,6 +52064,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -51356,6 +52111,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -51469,6 +52225,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -51516,6 +52273,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -51562,6 +52320,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -51693,6 +52452,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -51745,6 +52505,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -51869,6 +52630,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -51923,6 +52685,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -51976,6 +52739,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_ListSections parameters: - name: site-id @@ -52108,6 +52872,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: site-id @@ -52160,6 +52925,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_GetSections parameters: - name: site-id @@ -52275,6 +53041,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: site-id @@ -52329,6 +53096,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: site-id @@ -52382,6 +53150,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_ListSections parameters: - name: site-id @@ -52507,6 +53276,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_CreateSections parameters: - name: site-id @@ -52552,6 +53322,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_GetSections parameters: - name: site-id @@ -52657,6 +53428,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_UpdateSections parameters: - name: site-id @@ -52704,6 +53476,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.pages.parentNotebook_DeleteSections parameters: - name: site-id @@ -52750,6 +53523,7 @@ paths: tags: - sites.onenote summary: Get parentSection from sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sections.pages_GetParentSection parameters: - name: site-id @@ -52845,6 +53619,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSection in sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sections.pages_UpdateParentSection parameters: - name: site-id @@ -52885,6 +53660,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSection for sites + description: The section that contains the page. Read-only. operationId: sites.onenote.sections.pages_DeleteParentSection parameters: - name: site-id @@ -52924,6 +53700,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sections_GetParentNotebook parameters: - name: site-id @@ -53005,6 +53782,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sections_UpdateParentNotebook parameters: - name: site-id @@ -53038,6 +53816,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section. Read-only. operationId: sites.onenote.sections_DeleteParentNotebook parameters: - name: site-id @@ -53070,6 +53849,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -53187,6 +53967,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -53225,6 +54006,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -53327,6 +54109,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -53367,6 +54150,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -53406,6 +54190,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: site-id @@ -53496,6 +54281,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: site-id @@ -53536,6 +54322,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: site-id @@ -53575,6 +54362,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: site-id @@ -53677,6 +54465,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: site-id @@ -53717,6 +54506,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: site-id @@ -53756,6 +54546,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: site-id @@ -53880,6 +54671,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: site-id @@ -53925,6 +54717,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: site-id @@ -54038,6 +54831,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: site-id @@ -54085,6 +54879,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: site-id @@ -54131,6 +54926,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_ListSections parameters: - name: site-id @@ -54256,6 +55052,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_CreateSections parameters: - name: site-id @@ -54301,6 +55098,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_GetSections parameters: - name: site-id @@ -54406,6 +55204,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_UpdateSections parameters: - name: site-id @@ -54453,6 +55252,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook.sectionGroups_DeleteSections parameters: - name: site-id @@ -54499,6 +55299,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_ListSections parameters: - name: site-id @@ -54617,6 +55418,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_CreateSections parameters: - name: site-id @@ -54655,6 +55457,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_GetSections parameters: - name: site-id @@ -54750,6 +55553,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_UpdateSections parameters: - name: site-id @@ -54790,6 +55594,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentNotebook_DeleteSections parameters: - name: site-id @@ -54829,6 +55634,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sections_GetParentSectionGroup parameters: - name: site-id @@ -54920,6 +55726,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sections_UpdateParentSectionGroup parameters: - name: site-id @@ -54953,6 +55760,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section. Read-only. operationId: sites.onenote.sections_DeleteParentSectionGroup parameters: - name: site-id @@ -54985,6 +55793,7 @@ paths: tags: - sites.onenote summary: Get parentNotebook from sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_GetParentNotebook parameters: - name: site-id @@ -55066,6 +55875,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentNotebook in sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: site-id @@ -55099,6 +55909,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentNotebook for sites + description: The notebook that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: site-id @@ -55131,6 +55942,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: site-id @@ -55248,6 +56060,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: site-id @@ -55286,6 +56099,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: site-id @@ -55388,6 +56202,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: site-id @@ -55428,6 +56243,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: site-id @@ -55467,6 +56283,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_ListSections parameters: - name: site-id @@ -55585,6 +56402,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_CreateSections parameters: - name: site-id @@ -55623,6 +56441,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_GetSections parameters: - name: site-id @@ -55718,6 +56537,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: site-id @@ -55758,6 +56578,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the notebook. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: site-id @@ -55797,6 +56618,7 @@ paths: tags: - sites.onenote summary: Get parentSectionGroup from sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: site-id @@ -55888,6 +56710,7 @@ paths: tags: - sites.onenote summary: Update the navigation property parentSectionGroup in sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: site-id @@ -55921,6 +56744,7 @@ paths: tags: - sites.onenote summary: Delete navigation property parentSectionGroup for sites + description: The section group that contains the section group. Read-only. operationId: sites.onenote.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: site-id @@ -55953,6 +56777,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_ListSectionGroups parameters: - name: site-id @@ -56070,6 +56895,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_CreateSectionGroups parameters: - name: site-id @@ -56108,6 +56934,7 @@ paths: tags: - sites.onenote summary: Get sectionGroups from sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_GetSectionGroups parameters: - name: site-id @@ -56210,6 +57037,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sectionGroups in sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: site-id @@ -56250,6 +57078,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sectionGroups for sites + description: The section groups in the section. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: site-id @@ -56289,6 +57118,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_ListSections parameters: - name: site-id @@ -56407,6 +57237,7 @@ paths: tags: - sites.onenote summary: Create new navigation property to sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_CreateSections parameters: - name: site-id @@ -56445,6 +57276,7 @@ paths: tags: - sites.onenote summary: Get sections from sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_GetSections parameters: - name: site-id @@ -56540,6 +57372,7 @@ paths: tags: - sites.onenote summary: Update the navigation property sections in sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_UpdateSections parameters: - name: site-id @@ -56580,6 +57413,7 @@ paths: tags: - sites.onenote summary: Delete navigation property sections for sites + description: The sections in the section group. Read-only. Nullable. operationId: sites.onenote.sections.parentSectionGroup_DeleteSections parameters: - name: site-id @@ -56619,6 +57453,7 @@ paths: tags: - users.onenote summary: Get onenote from users + description: Read-only. operationId: users_GetOnenote parameters: - name: user-id @@ -56703,6 +57538,7 @@ paths: tags: - users.onenote summary: Update the navigation property onenote in users + description: Read-only. operationId: users_UpdateOnenote parameters: - name: user-id @@ -56729,6 +57565,7 @@ paths: tags: - users.onenote summary: Delete navigation property onenote for users + description: Read-only. operationId: users_DeleteOnenote parameters: - name: user-id @@ -56754,6 +57591,7 @@ paths: tags: - users.onenote summary: Get notebooks from users + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_ListNotebooks parameters: - name: user-id @@ -56872,6 +57710,7 @@ paths: tags: - users.onenote summary: Create new navigation property to notebooks for users + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_CreateNotebooks parameters: - name: user-id @@ -56903,6 +57742,7 @@ paths: tags: - users.onenote summary: Get notebooks from users + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_GetNotebooks parameters: - name: user-id @@ -56984,6 +57824,7 @@ paths: tags: - users.onenote summary: Update the navigation property notebooks in users + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_UpdateNotebooks parameters: - name: user-id @@ -57017,6 +57858,7 @@ paths: tags: - users.onenote summary: Delete navigation property notebooks for users + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_DeleteNotebooks parameters: - name: user-id @@ -57049,6 +57891,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_ListSectionGroups parameters: - name: user-id @@ -57166,6 +58009,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_CreateSectionGroups parameters: - name: user-id @@ -57204,6 +58048,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_GetSectionGroups parameters: - name: user-id @@ -57306,6 +58151,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_UpdateSectionGroups parameters: - name: user-id @@ -57346,6 +58192,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_DeleteSectionGroups parameters: - name: user-id @@ -57385,6 +58232,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -57475,6 +58323,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -57515,6 +58364,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -57554,6 +58404,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -57656,6 +58507,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -57696,6 +58548,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -57735,6 +58588,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -57859,6 +58713,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -57904,6 +58759,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -58017,6 +58873,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -58064,6 +58921,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -58110,6 +58968,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_ListSections parameters: - name: user-id @@ -58235,6 +59094,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_CreateSections parameters: - name: user-id @@ -58280,6 +59140,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_GetSections parameters: - name: user-id @@ -58385,6 +59246,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_UpdateSections parameters: - name: user-id @@ -58432,6 +59294,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups_DeleteSections parameters: - name: user-id @@ -58478,6 +59341,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups.sections_ListPages parameters: - name: user-id @@ -58614,6 +59478,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups.sections_CreatePages parameters: - name: user-id @@ -58666,6 +59531,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups.sections_GetPages parameters: - name: user-id @@ -58773,6 +59639,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups.sections_UpdatePages parameters: - name: user-id @@ -58827,6 +59694,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sectionGroups.sections_DeletePages parameters: - name: user-id @@ -58988,6 +59856,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_GetParentNotebook parameters: - name: user-id @@ -59096,6 +59965,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: user-id @@ -59150,6 +60020,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: user-id @@ -59203,6 +60074,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_GetParentSection parameters: - name: user-id @@ -59318,6 +60190,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_UpdateParentSection parameters: - name: user-id @@ -59372,6 +60245,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections.pages_DeleteParentSection parameters: - name: user-id @@ -59425,6 +60299,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_GetParentNotebook parameters: - name: user-id @@ -59524,6 +60399,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_UpdateParentNotebook parameters: - name: user-id @@ -59571,6 +60447,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_DeleteParentNotebook parameters: - name: user-id @@ -59617,6 +60494,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_GetParentSectionGroup parameters: - name: user-id @@ -59730,6 +60608,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -59777,6 +60656,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -59823,6 +60703,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_ListSections parameters: - name: user-id @@ -59941,6 +60822,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_CreateSections parameters: - name: user-id @@ -59979,6 +60861,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_GetSections parameters: - name: user-id @@ -60074,6 +60957,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_UpdateSections parameters: - name: user-id @@ -60114,6 +60998,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.notebooks_DeleteSections parameters: - name: user-id @@ -60153,6 +61038,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections_ListPages parameters: - name: user-id @@ -60282,6 +61168,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections_CreatePages parameters: - name: user-id @@ -60327,6 +61214,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections_GetPages parameters: - name: user-id @@ -60425,6 +61313,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections_UpdatePages parameters: - name: user-id @@ -60472,6 +61361,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections_DeletePages parameters: - name: user-id @@ -60612,6 +61502,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_GetParentNotebook parameters: - name: user-id @@ -60711,6 +61602,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_UpdateParentNotebook parameters: - name: user-id @@ -60758,6 +61650,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_DeleteParentNotebook parameters: - name: user-id @@ -60804,6 +61697,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_GetParentSection parameters: - name: user-id @@ -60909,6 +61803,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_UpdateParentSection parameters: - name: user-id @@ -60956,6 +61851,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.notebooks.sections.pages_DeleteParentSection parameters: - name: user-id @@ -61002,6 +61898,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sections_GetParentNotebook parameters: - name: user-id @@ -61092,6 +61989,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sections_UpdateParentNotebook parameters: - name: user-id @@ -61132,6 +62030,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.notebooks.sections_DeleteParentNotebook parameters: - name: user-id @@ -61171,6 +62070,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sections_GetParentSectionGroup parameters: - name: user-id @@ -61273,6 +62173,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -61313,6 +62214,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.notebooks.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -61352,6 +62254,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_GetParentNotebook parameters: - name: user-id @@ -61442,6 +62345,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: user-id @@ -61482,6 +62386,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: user-id @@ -61521,6 +62426,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: user-id @@ -61623,6 +62529,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: user-id @@ -61663,6 +62570,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.notebooks.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: user-id @@ -61702,6 +62610,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_ListSectionGroups parameters: - name: user-id @@ -61826,6 +62735,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_CreateSectionGroups parameters: - name: user-id @@ -61871,6 +62781,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_GetSectionGroups parameters: - name: user-id @@ -61984,6 +62895,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: user-id @@ -62031,6 +62943,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: user-id @@ -62077,6 +62990,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_ListSections parameters: - name: user-id @@ -62202,6 +63116,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_CreateSections parameters: - name: user-id @@ -62247,6 +63162,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_GetSections parameters: - name: user-id @@ -62352,6 +63268,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_UpdateSections parameters: - name: user-id @@ -62399,6 +63316,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.notebooks.sections.parentSectionGroup_DeleteSections parameters: - name: user-id @@ -62445,6 +63363,7 @@ paths: tags: - users.onenote summary: Get operations from users + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: users.onenote_ListOperations parameters: - name: user-id @@ -62544,6 +63463,7 @@ paths: tags: - users.onenote summary: Create new navigation property to operations for users + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: users.onenote_CreateOperations parameters: - name: user-id @@ -62575,6 +63495,7 @@ paths: tags: - users.onenote summary: Get operations from users + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: users.onenote_GetOperations parameters: - name: user-id @@ -62636,6 +63557,7 @@ paths: tags: - users.onenote summary: Update the navigation property operations in users + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: users.onenote_UpdateOperations parameters: - name: user-id @@ -62669,6 +63591,7 @@ paths: tags: - users.onenote summary: Delete navigation property operations for users + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' operationId: users.onenote_DeleteOperations parameters: - name: user-id @@ -62701,6 +63624,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_ListPages parameters: - name: user-id @@ -62816,6 +63740,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_CreatePages parameters: - name: user-id @@ -62847,6 +63772,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_GetPages parameters: - name: user-id @@ -62927,6 +63853,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_UpdatePages parameters: - name: user-id @@ -62960,6 +63887,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_DeletePages parameters: - name: user-id @@ -63058,6 +63986,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.pages_GetParentNotebook parameters: - name: user-id @@ -63139,6 +64068,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.pages_UpdateParentNotebook parameters: - name: user-id @@ -63172,6 +64102,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.pages_DeleteParentNotebook parameters: - name: user-id @@ -63204,6 +64135,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -63321,6 +64253,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -63359,6 +64292,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -63461,6 +64395,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -63501,6 +64436,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -63540,6 +64476,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -63630,6 +64567,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -63670,6 +64608,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -63709,6 +64648,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -63811,6 +64751,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -63851,6 +64792,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -63890,6 +64832,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -64014,6 +64957,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -64059,6 +65003,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -64172,6 +65117,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -64219,6 +65165,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -64265,6 +65212,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_ListSections parameters: - name: user-id @@ -64390,6 +65338,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: user-id @@ -64435,6 +65384,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_GetSections parameters: - name: user-id @@ -64540,6 +65490,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: user-id @@ -64587,6 +65538,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: user-id @@ -64633,6 +65585,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_ListPages parameters: - name: user-id @@ -64769,6 +65722,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_CreatePages parameters: - name: user-id @@ -64821,6 +65775,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_GetPages parameters: - name: user-id @@ -64928,6 +65883,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_UpdatePages parameters: - name: user-id @@ -64982,6 +65938,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_DeletePages parameters: - name: user-id @@ -65143,6 +66100,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_GetParentNotebook parameters: - name: user-id @@ -65242,6 +66200,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentNotebook parameters: - name: user-id @@ -65289,6 +66248,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentNotebook parameters: - name: user-id @@ -65335,6 +66295,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_GetParentSectionGroup parameters: - name: user-id @@ -65448,6 +66409,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -65495,6 +66457,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -65541,6 +66504,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_ListSections parameters: - name: user-id @@ -65659,6 +66623,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_CreateSections parameters: - name: user-id @@ -65697,6 +66662,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_GetSections parameters: - name: user-id @@ -65792,6 +66758,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_UpdateSections parameters: - name: user-id @@ -65832,6 +66799,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook_DeleteSections parameters: - name: user-id @@ -65871,6 +66839,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections_ListPages parameters: - name: user-id @@ -66000,6 +66969,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections_CreatePages parameters: - name: user-id @@ -66045,6 +67015,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections_GetPages parameters: - name: user-id @@ -66143,6 +67114,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections_UpdatePages parameters: - name: user-id @@ -66190,6 +67162,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections_DeletePages parameters: - name: user-id @@ -66330,6 +67303,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_GetParentNotebook parameters: - name: user-id @@ -66420,6 +67394,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_UpdateParentNotebook parameters: - name: user-id @@ -66460,6 +67435,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_DeleteParentNotebook parameters: - name: user-id @@ -66499,6 +67475,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_GetParentSectionGroup parameters: - name: user-id @@ -66601,6 +67578,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -66641,6 +67619,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -66680,6 +67659,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentNotebook parameters: - name: user-id @@ -66770,6 +67750,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: user-id @@ -66810,6 +67791,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: user-id @@ -66849,6 +67831,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: user-id @@ -66951,6 +67934,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: user-id @@ -66991,6 +67975,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: user-id @@ -67030,6 +68015,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSectionGroups parameters: - name: user-id @@ -67154,6 +68140,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSectionGroups parameters: - name: user-id @@ -67199,6 +68186,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSectionGroups parameters: - name: user-id @@ -67312,6 +68300,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: user-id @@ -67359,6 +68348,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: user-id @@ -67405,6 +68395,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_ListSections parameters: - name: user-id @@ -67530,6 +68521,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_CreateSections parameters: - name: user-id @@ -67575,6 +68567,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_GetSections parameters: - name: user-id @@ -67680,6 +68673,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_UpdateSections parameters: - name: user-id @@ -67727,6 +68721,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentNotebook.sections.parentSectionGroup_DeleteSections parameters: - name: user-id @@ -67773,6 +68768,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.pages_GetParentSection parameters: - name: user-id @@ -67858,6 +68854,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.pages_UpdateParentSection parameters: - name: user-id @@ -67891,6 +68888,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.pages_DeleteParentSection parameters: - name: user-id @@ -67923,6 +68921,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection_ListPages parameters: - name: user-id @@ -68045,6 +69044,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection_CreatePages parameters: - name: user-id @@ -68083,6 +69083,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection_GetPages parameters: - name: user-id @@ -68172,6 +69173,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection_UpdatePages parameters: - name: user-id @@ -68212,6 +69214,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection_DeletePages parameters: - name: user-id @@ -68331,6 +69334,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentSection_GetParentNotebook parameters: - name: user-id @@ -68412,6 +69416,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentSection_UpdateParentNotebook parameters: - name: user-id @@ -68445,6 +69450,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.pages.parentSection_DeleteParentNotebook parameters: - name: user-id @@ -68477,6 +69483,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -68594,6 +69601,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -68632,6 +69640,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -68734,6 +69743,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -68774,6 +69784,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -68813,6 +69824,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -68903,6 +69915,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -68943,6 +69956,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -68982,6 +69996,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -69084,6 +70099,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -69124,6 +70140,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -69163,6 +70180,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -69287,6 +70305,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -69332,6 +70351,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -69445,6 +70465,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -69492,6 +70513,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -69538,6 +70560,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_ListSections parameters: - name: user-id @@ -69663,6 +70686,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_CreateSections parameters: - name: user-id @@ -69708,6 +70732,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_GetSections parameters: - name: user-id @@ -69813,6 +70838,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_UpdateSections parameters: - name: user-id @@ -69860,6 +70886,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook.sectionGroups_DeleteSections parameters: - name: user-id @@ -69906,6 +70933,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_ListSections parameters: - name: user-id @@ -70024,6 +71052,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_CreateSections parameters: - name: user-id @@ -70062,6 +71091,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_GetSections parameters: - name: user-id @@ -70157,6 +71187,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_UpdateSections parameters: - name: user-id @@ -70197,6 +71228,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentNotebook_DeleteSections parameters: - name: user-id @@ -70236,6 +71268,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentSection_GetParentSectionGroup parameters: - name: user-id @@ -70327,6 +71360,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentSection_UpdateParentSectionGroup parameters: - name: user-id @@ -70360,6 +71394,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.pages.parentSection_DeleteParentSectionGroup parameters: - name: user-id @@ -70392,6 +71427,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_GetParentNotebook parameters: - name: user-id @@ -70473,6 +71509,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_UpdateParentNotebook parameters: - name: user-id @@ -70506,6 +71543,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_DeleteParentNotebook parameters: - name: user-id @@ -70538,6 +71576,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -70655,6 +71694,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -70693,6 +71733,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -70795,6 +71836,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -70835,6 +71877,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -70874,6 +71917,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_ListSections parameters: - name: user-id @@ -70992,6 +72036,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_CreateSections parameters: - name: user-id @@ -71030,6 +72075,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_GetSections parameters: - name: user-id @@ -71125,6 +72171,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: user-id @@ -71165,6 +72212,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: user-id @@ -71204,6 +72252,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_GetParentSectionGroup parameters: - name: user-id @@ -71295,6 +72344,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_UpdateParentSectionGroup parameters: - name: user-id @@ -71328,6 +72378,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.pages.parentSection.parentSectionGroup_DeleteParentSectionGroup parameters: - name: user-id @@ -71360,6 +72411,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_ListSectionGroups parameters: - name: user-id @@ -71477,6 +72529,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_CreateSectionGroups parameters: - name: user-id @@ -71515,6 +72568,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_GetSectionGroups parameters: - name: user-id @@ -71617,6 +72671,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_UpdateSectionGroups parameters: - name: user-id @@ -71657,6 +72712,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_DeleteSectionGroups parameters: - name: user-id @@ -71696,6 +72752,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_ListSections parameters: - name: user-id @@ -71814,6 +72871,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_CreateSections parameters: - name: user-id @@ -71852,6 +72910,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_GetSections parameters: - name: user-id @@ -71947,6 +73006,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_UpdateSections parameters: - name: user-id @@ -71987,6 +73047,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.pages.parentSection.parentSectionGroup_DeleteSections parameters: - name: user-id @@ -72026,6 +73087,7 @@ paths: tags: - users.onenote summary: Get resources from users + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: users.onenote_ListResources parameters: - name: user-id @@ -72113,6 +73175,7 @@ paths: tags: - users.onenote summary: Create new navigation property to resources for users + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: users.onenote_CreateResources parameters: - name: user-id @@ -72144,6 +73207,7 @@ paths: tags: - users.onenote summary: Get resources from users + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: users.onenote_GetResources parameters: - name: user-id @@ -72201,6 +73265,7 @@ paths: tags: - users.onenote summary: Update the navigation property resources in users + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: users.onenote_UpdateResources parameters: - name: user-id @@ -72234,6 +73299,7 @@ paths: tags: - users.onenote summary: Delete navigation property resources for users + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' operationId: users.onenote_DeleteResources parameters: - name: user-id @@ -72332,6 +73398,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_ListSectionGroups parameters: - name: user-id @@ -72442,6 +73509,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_CreateSectionGroups parameters: - name: user-id @@ -72473,6 +73541,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_GetSectionGroups parameters: - name: user-id @@ -72564,6 +73633,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_UpdateSectionGroups parameters: - name: user-id @@ -72597,6 +73667,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_DeleteSectionGroups parameters: - name: user-id @@ -72629,6 +73700,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -72710,6 +73782,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -72743,6 +73816,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -72775,6 +73849,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -72892,6 +73967,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -72930,6 +74006,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -73032,6 +74109,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -73072,6 +74150,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -73111,6 +74190,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_ListSections parameters: - name: user-id @@ -73229,6 +74309,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_CreateSections parameters: - name: user-id @@ -73267,6 +74348,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_GetSections parameters: - name: user-id @@ -73362,6 +74444,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_UpdateSections parameters: - name: user-id @@ -73402,6 +74485,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook_DeleteSections parameters: - name: user-id @@ -73441,6 +74525,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook.sections_ListPages parameters: - name: user-id @@ -73570,6 +74655,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook.sections_CreatePages parameters: - name: user-id @@ -73615,6 +74701,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook.sections_GetPages parameters: - name: user-id @@ -73713,6 +74800,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook.sections_UpdatePages parameters: - name: user-id @@ -73760,6 +74848,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.parentNotebook.sections_DeletePages parameters: - name: user-id @@ -73900,6 +74989,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_GetParentNotebook parameters: - name: user-id @@ -73999,6 +75089,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentNotebook parameters: - name: user-id @@ -74046,6 +75137,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentNotebook parameters: - name: user-id @@ -74092,6 +75184,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_GetParentSection parameters: - name: user-id @@ -74197,6 +75290,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_UpdateParentSection parameters: - name: user-id @@ -74244,6 +75338,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections.pages_DeleteParentSection parameters: - name: user-id @@ -74290,6 +75385,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_GetParentNotebook parameters: - name: user-id @@ -74380,6 +75476,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_UpdateParentNotebook parameters: - name: user-id @@ -74420,6 +75517,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_DeleteParentNotebook parameters: - name: user-id @@ -74459,6 +75557,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_GetParentSectionGroup parameters: - name: user-id @@ -74561,6 +75660,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -74601,6 +75701,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.parentNotebook.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -74640,6 +75741,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -74731,6 +75833,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -74764,6 +75867,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -74796,6 +75900,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -74913,6 +76018,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -74951,6 +76057,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -75053,6 +76160,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -75093,6 +76201,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -75132,6 +76241,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sectionGroups_ListSections parameters: - name: user-id @@ -75250,6 +76360,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sectionGroups_CreateSections parameters: - name: user-id @@ -75288,6 +76399,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sectionGroups_GetSections parameters: - name: user-id @@ -75383,6 +76495,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sectionGroups_UpdateSections parameters: - name: user-id @@ -75423,6 +76536,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sectionGroups_DeleteSections parameters: - name: user-id @@ -75462,6 +76576,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections_ListPages parameters: - name: user-id @@ -75591,6 +76706,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections_CreatePages parameters: - name: user-id @@ -75636,6 +76752,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections_GetPages parameters: - name: user-id @@ -75734,6 +76851,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections_UpdatePages parameters: - name: user-id @@ -75781,6 +76899,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections_DeletePages parameters: - name: user-id @@ -75921,6 +77040,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_GetParentNotebook parameters: - name: user-id @@ -76020,6 +77140,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_UpdateParentNotebook parameters: - name: user-id @@ -76067,6 +77188,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_DeleteParentNotebook parameters: - name: user-id @@ -76113,6 +77235,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -76244,6 +77367,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -76296,6 +77420,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -76420,6 +77545,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -76474,6 +77600,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -76527,6 +77654,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_ListSections parameters: - name: user-id @@ -76659,6 +77787,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_CreateSections parameters: - name: user-id @@ -76711,6 +77840,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_GetSections parameters: - name: user-id @@ -76826,6 +77956,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_UpdateSections parameters: - name: user-id @@ -76880,6 +78011,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.pages.parentNotebook_DeleteSections parameters: - name: user-id @@ -76933,6 +78065,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_GetParentSection parameters: - name: user-id @@ -77038,6 +78171,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_UpdateParentSection parameters: - name: user-id @@ -77085,6 +78219,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.sectionGroups.sections.pages_DeleteParentSection parameters: - name: user-id @@ -77131,6 +78266,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_GetParentNotebook parameters: - name: user-id @@ -77221,6 +78357,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_UpdateParentNotebook parameters: - name: user-id @@ -77261,6 +78398,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_DeleteParentNotebook parameters: - name: user-id @@ -77300,6 +78438,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -77424,6 +78563,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -77469,6 +78609,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -77582,6 +78723,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -77629,6 +78771,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -77675,6 +78818,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_ListSections parameters: - name: user-id @@ -77800,6 +78944,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_CreateSections parameters: - name: user-id @@ -77845,6 +78990,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_GetSections parameters: - name: user-id @@ -77950,6 +79096,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_UpdateSections parameters: - name: user-id @@ -77997,6 +79144,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sectionGroups.sections.parentNotebook_DeleteSections parameters: - name: user-id @@ -78043,6 +79191,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_GetParentSectionGroup parameters: - name: user-id @@ -78145,6 +79294,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -78185,6 +79335,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.sectionGroups.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -78224,6 +79375,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_ListSections parameters: - name: user-id @@ -78335,6 +79487,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_CreateSections parameters: - name: user-id @@ -78366,6 +79519,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_GetSections parameters: - name: user-id @@ -78451,6 +79605,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_UpdateSections parameters: - name: user-id @@ -78484,6 +79639,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: users.onenote_DeleteSections parameters: - name: user-id @@ -78516,6 +79672,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sections_ListPages parameters: - name: user-id @@ -78638,6 +79795,7 @@ paths: tags: - users.onenote summary: Create new navigation property to pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sections_CreatePages parameters: - name: user-id @@ -78676,6 +79834,7 @@ paths: tags: - users.onenote summary: Get pages from users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sections_GetPages parameters: - name: user-id @@ -78765,6 +79924,7 @@ paths: tags: - users.onenote summary: Update the navigation property pages in users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sections_UpdatePages parameters: - name: user-id @@ -78805,6 +79965,7 @@ paths: tags: - users.onenote summary: Delete navigation property pages for users + description: The collection of pages in the section. Read-only. Nullable. operationId: users.onenote.sections_DeletePages parameters: - name: user-id @@ -78924,6 +80085,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sections.pages_GetParentNotebook parameters: - name: user-id @@ -79014,6 +80176,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sections.pages_UpdateParentNotebook parameters: - name: user-id @@ -79054,6 +80217,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the page. Read-only. operationId: users.onenote.sections.pages_DeleteParentNotebook parameters: - name: user-id @@ -79093,6 +80257,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -79217,6 +80382,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -79262,6 +80428,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -79375,6 +80542,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -79422,6 +80590,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -79468,6 +80637,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -79567,6 +80737,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -79614,6 +80785,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -79660,6 +80832,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -79773,6 +80946,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -79820,6 +80994,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -79866,6 +81041,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -79997,6 +81173,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -80049,6 +81226,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -80173,6 +81351,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -80227,6 +81406,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -80280,6 +81460,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_ListSections parameters: - name: user-id @@ -80412,6 +81593,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_CreateSections parameters: - name: user-id @@ -80464,6 +81646,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_GetSections parameters: - name: user-id @@ -80579,6 +81762,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_UpdateSections parameters: - name: user-id @@ -80633,6 +81817,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook.sectionGroups_DeleteSections parameters: - name: user-id @@ -80686,6 +81871,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_ListSections parameters: - name: user-id @@ -80811,6 +81997,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_CreateSections parameters: - name: user-id @@ -80856,6 +82043,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_GetSections parameters: - name: user-id @@ -80961,6 +82149,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_UpdateSections parameters: - name: user-id @@ -81008,6 +82197,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.pages.parentNotebook_DeleteSections parameters: - name: user-id @@ -81054,6 +82244,7 @@ paths: tags: - users.onenote summary: Get parentSection from users + description: The section that contains the page. Read-only. operationId: users.onenote.sections.pages_GetParentSection parameters: - name: user-id @@ -81149,6 +82340,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSection in users + description: The section that contains the page. Read-only. operationId: users.onenote.sections.pages_UpdateParentSection parameters: - name: user-id @@ -81189,6 +82381,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSection for users + description: The section that contains the page. Read-only. operationId: users.onenote.sections.pages_DeleteParentSection parameters: - name: user-id @@ -81228,6 +82421,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sections_GetParentNotebook parameters: - name: user-id @@ -81309,6 +82503,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sections_UpdateParentNotebook parameters: - name: user-id @@ -81342,6 +82537,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section. Read-only. operationId: users.onenote.sections_DeleteParentNotebook parameters: - name: user-id @@ -81374,6 +82570,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -81491,6 +82688,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -81529,6 +82727,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -81631,6 +82830,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -81671,6 +82871,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -81710,6 +82911,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_GetParentNotebook parameters: - name: user-id @@ -81800,6 +83002,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_UpdateParentNotebook parameters: - name: user-id @@ -81840,6 +83043,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_DeleteParentNotebook parameters: - name: user-id @@ -81879,6 +83083,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_GetParentSectionGroup parameters: - name: user-id @@ -81981,6 +83186,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_UpdateParentSectionGroup parameters: - name: user-id @@ -82021,6 +83227,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentNotebook.sectionGroups_DeleteParentSectionGroup parameters: - name: user-id @@ -82060,6 +83267,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_ListSectionGroups parameters: - name: user-id @@ -82184,6 +83392,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_CreateSectionGroups parameters: - name: user-id @@ -82229,6 +83438,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_GetSectionGroups parameters: - name: user-id @@ -82342,6 +83552,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_UpdateSectionGroups parameters: - name: user-id @@ -82389,6 +83600,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_DeleteSectionGroups parameters: - name: user-id @@ -82435,6 +83647,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_ListSections parameters: - name: user-id @@ -82560,6 +83773,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_CreateSections parameters: - name: user-id @@ -82605,6 +83819,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_GetSections parameters: - name: user-id @@ -82710,6 +83925,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_UpdateSections parameters: - name: user-id @@ -82757,6 +83973,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook.sectionGroups_DeleteSections parameters: - name: user-id @@ -82803,6 +84020,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_ListSections parameters: - name: user-id @@ -82921,6 +84139,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_CreateSections parameters: - name: user-id @@ -82959,6 +84178,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_GetSections parameters: - name: user-id @@ -83054,6 +84274,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_UpdateSections parameters: - name: user-id @@ -83094,6 +84315,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentNotebook_DeleteSections parameters: - name: user-id @@ -83133,6 +84355,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section. Read-only. operationId: users.onenote.sections_GetParentSectionGroup parameters: - name: user-id @@ -83224,6 +84447,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section. Read-only. operationId: users.onenote.sections_UpdateParentSectionGroup parameters: - name: user-id @@ -83257,6 +84481,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section. Read-only. operationId: users.onenote.sections_DeleteParentSectionGroup parameters: - name: user-id @@ -83289,6 +84514,7 @@ paths: tags: - users.onenote summary: Get parentNotebook from users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_GetParentNotebook parameters: - name: user-id @@ -83370,6 +84596,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentNotebook in users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_UpdateParentNotebook parameters: - name: user-id @@ -83403,6 +84630,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentNotebook for users + description: The notebook that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_DeleteParentNotebook parameters: - name: user-id @@ -83435,6 +84663,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_ListSectionGroups parameters: - name: user-id @@ -83552,6 +84781,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_CreateSectionGroups parameters: - name: user-id @@ -83590,6 +84820,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_GetSectionGroups parameters: - name: user-id @@ -83692,6 +84923,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_UpdateSectionGroups parameters: - name: user-id @@ -83732,6 +84964,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_DeleteSectionGroups parameters: - name: user-id @@ -83771,6 +85004,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_ListSections parameters: - name: user-id @@ -83889,6 +85123,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_CreateSections parameters: - name: user-id @@ -83927,6 +85162,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_GetSections parameters: - name: user-id @@ -84022,6 +85258,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_UpdateSections parameters: - name: user-id @@ -84062,6 +85299,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the notebook. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup.parentNotebook_DeleteSections parameters: - name: user-id @@ -84101,6 +85339,7 @@ paths: tags: - users.onenote summary: Get parentSectionGroup from users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_GetParentSectionGroup parameters: - name: user-id @@ -84192,6 +85431,7 @@ paths: tags: - users.onenote summary: Update the navigation property parentSectionGroup in users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_UpdateParentSectionGroup parameters: - name: user-id @@ -84225,6 +85465,7 @@ paths: tags: - users.onenote summary: Delete navigation property parentSectionGroup for users + description: The section group that contains the section group. Read-only. operationId: users.onenote.sections.parentSectionGroup_DeleteParentSectionGroup parameters: - name: user-id @@ -84257,6 +85498,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_ListSectionGroups parameters: - name: user-id @@ -84374,6 +85616,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_CreateSectionGroups parameters: - name: user-id @@ -84412,6 +85655,7 @@ paths: tags: - users.onenote summary: Get sectionGroups from users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_GetSectionGroups parameters: - name: user-id @@ -84514,6 +85758,7 @@ paths: tags: - users.onenote summary: Update the navigation property sectionGroups in users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_UpdateSectionGroups parameters: - name: user-id @@ -84554,6 +85799,7 @@ paths: tags: - users.onenote summary: Delete navigation property sectionGroups for users + description: The section groups in the section. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_DeleteSectionGroups parameters: - name: user-id @@ -84593,6 +85839,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_ListSections parameters: - name: user-id @@ -84711,6 +85958,7 @@ paths: tags: - users.onenote summary: Create new navigation property to sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_CreateSections parameters: - name: user-id @@ -84749,6 +85997,7 @@ paths: tags: - users.onenote summary: Get sections from users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_GetSections parameters: - name: user-id @@ -84844,6 +86093,7 @@ paths: tags: - users.onenote summary: Update the navigation property sections in users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_UpdateSections parameters: - name: user-id @@ -84884,6 +86134,7 @@ paths: tags: - users.onenote summary: Delete navigation property sections for users + description: The sections in the section group. Read-only. Nullable. operationId: users.onenote.sections.parentSectionGroup_DeleteSections parameters: - name: user-id diff --git a/openApiDocs/v1.0/People.yml b/openApiDocs/v1.0/People.yml index b9ada8014e6..e268c2f3788 100644 --- a/openApiDocs/v1.0/People.yml +++ b/openApiDocs/v1.0/People.yml @@ -11,6 +11,7 @@ paths: tags: - users.officeGraphInsights summary: Get insights from users + description: Read-only. Nullable. operationId: users_GetInsights parameters: - name: user-id @@ -77,6 +78,7 @@ paths: tags: - users.officeGraphInsights summary: Update the navigation property insights in users + description: Read-only. Nullable. operationId: users_UpdateInsights parameters: - name: user-id @@ -103,6 +105,7 @@ paths: tags: - users.officeGraphInsights summary: Delete navigation property insights for users + description: Read-only. Nullable. operationId: users_DeleteInsights parameters: - name: user-id @@ -128,6 +131,7 @@ paths: tags: - users.officeGraphInsights summary: Get shared from users + description: Access this property from the derived type itemInsights. operationId: users.insights_ListShared parameters: - name: user-id @@ -222,6 +226,7 @@ paths: tags: - users.officeGraphInsights summary: Create new navigation property to shared for users + description: Access this property from the derived type itemInsights. operationId: users.insights_CreateShared parameters: - name: user-id @@ -253,6 +258,7 @@ paths: tags: - users.officeGraphInsights summary: Get shared from users + description: Access this property from the derived type itemInsights. operationId: users.insights_GetShared parameters: - name: user-id @@ -326,6 +332,7 @@ paths: tags: - users.officeGraphInsights summary: Update the navigation property shared in users + description: Access this property from the derived type itemInsights. operationId: users.insights_UpdateShared parameters: - name: user-id @@ -359,6 +366,7 @@ paths: tags: - users.officeGraphInsights summary: Delete navigation property shared for users + description: Access this property from the derived type itemInsights. operationId: users.insights_DeleteShared parameters: - name: user-id @@ -543,6 +551,7 @@ paths: tags: - users.officeGraphInsights summary: Get resource from users + description: 'Used for navigating to the item that was shared. For file attachments, the type is fileAttachment. For linked attachments, the type is driveItem.' operationId: users.insights.shared_GetResource parameters: - name: user-id @@ -598,6 +607,7 @@ paths: tags: - users.officeGraphInsights summary: Get ref of resource from users + description: 'Used for navigating to the item that was shared. For file attachments, the type is fileAttachment. For linked attachments, the type is driveItem.' operationId: users.insights.shared_GetRefResource parameters: - name: user-id @@ -628,6 +638,7 @@ paths: tags: - users.officeGraphInsights summary: Update the ref of navigation property resource in users + description: 'Used for navigating to the item that was shared. For file attachments, the type is fileAttachment. For linked attachments, the type is driveItem.' operationId: users.insights.shared_SetRefResource parameters: - name: user-id @@ -663,6 +674,7 @@ paths: tags: - users.officeGraphInsights summary: Delete ref of navigation property resource for users + description: 'Used for navigating to the item that was shared. For file attachments, the type is fileAttachment. For linked attachments, the type is driveItem.' operationId: users.insights.shared_DeleteRefResource parameters: - name: user-id @@ -695,6 +707,7 @@ paths: tags: - users.officeGraphInsights summary: Get trending from users + description: Access this property from the derived type itemInsights. operationId: users.insights_ListTrending parameters: - name: user-id @@ -787,6 +800,7 @@ paths: tags: - users.officeGraphInsights summary: Create new navigation property to trending for users + description: Access this property from the derived type itemInsights. operationId: users.insights_CreateTrending parameters: - name: user-id @@ -818,6 +832,7 @@ paths: tags: - users.officeGraphInsights summary: Get trending from users + description: Access this property from the derived type itemInsights. operationId: users.insights_GetTrending parameters: - name: user-id @@ -884,6 +899,7 @@ paths: tags: - users.officeGraphInsights summary: Update the navigation property trending in users + description: Access this property from the derived type itemInsights. operationId: users.insights_UpdateTrending parameters: - name: user-id @@ -917,6 +933,7 @@ paths: tags: - users.officeGraphInsights summary: Delete navigation property trending for users + description: Access this property from the derived type itemInsights. operationId: users.insights_DeleteTrending parameters: - name: user-id @@ -949,6 +966,7 @@ paths: tags: - users.officeGraphInsights summary: Get resource from users + description: Used for navigating to the trending document. operationId: users.insights.trending_GetResource parameters: - name: user-id @@ -1004,6 +1022,7 @@ paths: tags: - users.officeGraphInsights summary: Get ref of resource from users + description: Used for navigating to the trending document. operationId: users.insights.trending_GetRefResource parameters: - name: user-id @@ -1034,6 +1053,7 @@ paths: tags: - users.officeGraphInsights summary: Update the ref of navigation property resource in users + description: Used for navigating to the trending document. operationId: users.insights.trending_SetRefResource parameters: - name: user-id @@ -1069,6 +1089,7 @@ paths: tags: - users.officeGraphInsights summary: Delete ref of navigation property resource for users + description: Used for navigating to the trending document. operationId: users.insights.trending_DeleteRefResource parameters: - name: user-id @@ -1101,6 +1122,7 @@ paths: tags: - users.officeGraphInsights summary: Get used from users + description: Access this property from the derived type itemInsights. operationId: users.insights_ListUsed parameters: - name: user-id @@ -1190,6 +1212,7 @@ paths: tags: - users.officeGraphInsights summary: Create new navigation property to used for users + description: Access this property from the derived type itemInsights. operationId: users.insights_CreateUsed parameters: - name: user-id @@ -1221,6 +1244,7 @@ paths: tags: - users.officeGraphInsights summary: Get used from users + description: Access this property from the derived type itemInsights. operationId: users.insights_GetUsed parameters: - name: user-id @@ -1286,6 +1310,7 @@ paths: tags: - users.officeGraphInsights summary: Update the navigation property used in users + description: Access this property from the derived type itemInsights. operationId: users.insights_UpdateUsed parameters: - name: user-id @@ -1319,6 +1344,7 @@ paths: tags: - users.officeGraphInsights summary: Delete navigation property used for users + description: Access this property from the derived type itemInsights. operationId: users.insights_DeleteUsed parameters: - name: user-id @@ -1351,6 +1377,7 @@ paths: tags: - users.officeGraphInsights summary: Get resource from users + description: 'Used for navigating to the item that was used. For file attachments, the type is fileAttachment. For linked attachments, the type is driveItem.' operationId: users.insights.used_GetResource parameters: - name: user-id @@ -1406,6 +1433,7 @@ paths: tags: - users.officeGraphInsights summary: Get ref of resource from users + description: 'Used for navigating to the item that was used. For file attachments, the type is fileAttachment. For linked attachments, the type is driveItem.' operationId: users.insights.used_GetRefResource parameters: - name: user-id @@ -1436,6 +1464,7 @@ paths: tags: - users.officeGraphInsights summary: Update the ref of navigation property resource in users + description: 'Used for navigating to the item that was used. For file attachments, the type is fileAttachment. For linked attachments, the type is driveItem.' operationId: users.insights.used_SetRefResource parameters: - name: user-id @@ -1471,6 +1500,7 @@ paths: tags: - users.officeGraphInsights summary: Delete ref of navigation property resource for users + description: 'Used for navigating to the item that was used. For file attachments, the type is fileAttachment. For linked attachments, the type is driveItem.' operationId: users.insights.used_DeleteRefResource parameters: - name: user-id @@ -1503,6 +1533,7 @@ paths: tags: - users.person summary: Get people from users + description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' operationId: users_ListPeople parameters: - name: user-id @@ -1638,6 +1669,7 @@ paths: tags: - users.person summary: Create new navigation property to people for users + description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' operationId: users_CreatePeople parameters: - name: user-id @@ -1669,6 +1701,7 @@ paths: tags: - users.person summary: Get people from users + description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' operationId: users_GetPeople parameters: - name: user-id @@ -1742,6 +1775,7 @@ paths: tags: - users.person summary: Update the navigation property people in users + description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' operationId: users_UpdatePeople parameters: - name: user-id @@ -1775,6 +1809,7 @@ paths: tags: - users.person summary: Delete navigation property people for users + description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' operationId: users_DeletePeople parameters: - name: user-id diff --git a/openApiDocs/v1.0/PersonalContacts.yml b/openApiDocs/v1.0/PersonalContacts.yml index 69c21363860..42f4726b8fe 100644 --- a/openApiDocs/v1.0/PersonalContacts.yml +++ b/openApiDocs/v1.0/PersonalContacts.yml @@ -11,6 +11,7 @@ paths: tags: - users.contactFolder summary: Get contactFolders from users + description: The user's contacts folders. Read-only. Nullable. operationId: users_ListContactFolders parameters: - name: user-id @@ -103,6 +104,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to contactFolders for users + description: The user's contacts folders. Read-only. Nullable. operationId: users_CreateContactFolders parameters: - name: user-id @@ -134,6 +136,7 @@ paths: tags: - users.contactFolder summary: Get contactFolders from users + description: The user's contacts folders. Read-only. Nullable. operationId: users_GetContactFolders parameters: - name: user-id @@ -219,6 +222,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property contactFolders in users + description: The user's contacts folders. Read-only. Nullable. operationId: users_UpdateContactFolders parameters: - name: user-id @@ -252,6 +256,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property contactFolders for users + description: The user's contacts folders. Read-only. Nullable. operationId: users_DeleteContactFolders parameters: - name: user-id @@ -284,6 +289,7 @@ paths: tags: - users.contactFolder summary: Get childFolders from users + description: The collection of child folders in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_ListChildFolders parameters: - name: user-id @@ -383,6 +389,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to childFolders for users + description: The collection of child folders in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_CreateChildFolders parameters: - name: user-id @@ -421,6 +428,7 @@ paths: tags: - users.contactFolder summary: Get childFolders from users + description: The collection of child folders in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_GetChildFolders parameters: - name: user-id @@ -517,6 +525,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property childFolders in users + description: The collection of child folders in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_UpdateChildFolders parameters: - name: user-id @@ -557,6 +566,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property childFolders for users + description: The collection of child folders in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_DeleteChildFolders parameters: - name: user-id @@ -596,6 +606,7 @@ paths: tags: - users.contactFolder summary: Get contacts from users + description: The contacts in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_ListContacts parameters: - name: user-id @@ -800,6 +811,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to contacts for users + description: The contacts in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_CreateContacts parameters: - name: user-id @@ -838,6 +850,7 @@ paths: tags: - users.contactFolder summary: Get contacts from users + description: The contacts in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_GetContacts parameters: - name: user-id @@ -969,6 +982,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property contacts in users + description: The contacts in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_UpdateContacts parameters: - name: user-id @@ -1009,6 +1023,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property contacts for users + description: The contacts in the folder. Navigation property. Read-only. Nullable. operationId: users.contactFolders_DeleteContacts parameters: - name: user-id @@ -1048,6 +1063,7 @@ paths: tags: - users.contactFolder summary: Get extensions from users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contactFolders.contacts_ListExtensions parameters: - name: user-id @@ -1140,6 +1156,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contactFolders.contacts_CreateExtensions parameters: - name: user-id @@ -1185,6 +1202,7 @@ paths: tags: - users.contactFolder summary: Get extensions from users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contactFolders.contacts_GetExtensions parameters: - name: user-id @@ -1253,6 +1271,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contactFolders.contacts_UpdateExtensions parameters: - name: user-id @@ -1300,6 +1319,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contactFolders.contacts_DeleteExtensions parameters: - name: user-id @@ -1346,6 +1366,7 @@ paths: tags: - users.contactFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_ListMultiValueExtendedProperties parameters: - name: user-id @@ -1441,6 +1462,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -1486,6 +1508,7 @@ paths: tags: - users.contactFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_GetMultiValueExtendedProperties parameters: - name: user-id @@ -1555,6 +1578,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -1602,6 +1626,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -1648,6 +1673,7 @@ paths: tags: - users.contactFolder summary: Get photo from users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contactFolders.contacts_GetPhoto parameters: - name: user-id @@ -1711,6 +1737,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property photo in users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contactFolders.contacts_UpdatePhoto parameters: - name: user-id @@ -1751,6 +1778,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property photo for users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contactFolders.contacts_DeletePhoto parameters: - name: user-id @@ -1790,6 +1818,7 @@ paths: tags: - users.contactFolder summary: Get media content for the navigation property photo from users + description: The user's profile photo. Read-only. operationId: users.contactFolders.contacts_GetPhotoContent parameters: - name: user-id @@ -1828,6 +1857,7 @@ paths: tags: - users.contactFolder summary: Update media content for the navigation property photo in users + description: The user's profile photo. Read-only. operationId: users.contactFolders.contacts_SetPhotoContent parameters: - name: user-id @@ -1870,6 +1900,7 @@ paths: tags: - users.contactFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_ListSingleValueExtendedProperties parameters: - name: user-id @@ -1965,6 +1996,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -2010,6 +2042,7 @@ paths: tags: - users.contactFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_GetSingleValueExtendedProperties parameters: - name: user-id @@ -2079,6 +2112,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -2126,6 +2160,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contactFolders.contacts_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -2172,6 +2207,7 @@ paths: tags: - users.contactFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_ListMultiValueExtendedProperties parameters: - name: user-id @@ -2260,6 +2296,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -2298,6 +2335,7 @@ paths: tags: - users.contactFolder summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_GetMultiValueExtendedProperties parameters: - name: user-id @@ -2360,6 +2398,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -2400,6 +2439,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -2439,6 +2479,7 @@ paths: tags: - users.contactFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_ListSingleValueExtendedProperties parameters: - name: user-id @@ -2527,6 +2568,7 @@ paths: tags: - users.contactFolder summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -2565,6 +2607,7 @@ paths: tags: - users.contactFolder summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_GetSingleValueExtendedProperties parameters: - name: user-id @@ -2627,6 +2670,7 @@ paths: tags: - users.contactFolder summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -2667,6 +2711,7 @@ paths: tags: - users.contactFolder summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable. operationId: users.contactFolders_DeleteSingleValueExtendedProperties parameters: - name: user-id @@ -2706,6 +2751,7 @@ paths: tags: - users.contact summary: Get contacts from users + description: The user's contacts. Read-only. Nullable. operationId: users_ListContacts parameters: - name: user-id @@ -2903,6 +2949,7 @@ paths: tags: - users.contact summary: Create new navigation property to contacts for users + description: The user's contacts. Read-only. Nullable. operationId: users_CreateContacts parameters: - name: user-id @@ -2934,6 +2981,7 @@ paths: tags: - users.contact summary: Get contacts from users + description: The user's contacts. Read-only. Nullable. operationId: users_GetContacts parameters: - name: user-id @@ -3054,6 +3102,7 @@ paths: tags: - users.contact summary: Update the navigation property contacts in users + description: The user's contacts. Read-only. Nullable. operationId: users_UpdateContacts parameters: - name: user-id @@ -3087,6 +3136,7 @@ paths: tags: - users.contact summary: Delete navigation property contacts for users + description: The user's contacts. Read-only. Nullable. operationId: users_DeleteContacts parameters: - name: user-id @@ -3119,6 +3169,7 @@ paths: tags: - users.contact summary: Get extensions from users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contacts_ListExtensions parameters: - name: user-id @@ -3204,6 +3255,7 @@ paths: tags: - users.contact summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contacts_CreateExtensions parameters: - name: user-id @@ -3242,6 +3294,7 @@ paths: tags: - users.contact summary: Get extensions from users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contacts_GetExtensions parameters: - name: user-id @@ -3303,6 +3356,7 @@ paths: tags: - users.contact summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contacts_UpdateExtensions parameters: - name: user-id @@ -3343,6 +3397,7 @@ paths: tags: - users.contact summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the contact. Nullable. operationId: users.contacts_DeleteExtensions parameters: - name: user-id @@ -3382,6 +3437,7 @@ paths: tags: - users.contact summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_ListMultiValueExtendedProperties parameters: - name: user-id @@ -3470,6 +3526,7 @@ paths: tags: - users.contact summary: Create new navigation property to multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_CreateMultiValueExtendedProperties parameters: - name: user-id @@ -3508,6 +3565,7 @@ paths: tags: - users.contact summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_GetMultiValueExtendedProperties parameters: - name: user-id @@ -3570,6 +3628,7 @@ paths: tags: - users.contact summary: Update the navigation property multiValueExtendedProperties in users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_UpdateMultiValueExtendedProperties parameters: - name: user-id @@ -3610,6 +3669,7 @@ paths: tags: - users.contact summary: Delete navigation property multiValueExtendedProperties for users + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_DeleteMultiValueExtendedProperties parameters: - name: user-id @@ -3649,6 +3709,7 @@ paths: tags: - users.contact summary: Get photo from users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contacts_GetPhoto parameters: - name: user-id @@ -3705,6 +3766,7 @@ paths: tags: - users.contact summary: Update the navigation property photo in users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contacts_UpdatePhoto parameters: - name: user-id @@ -3738,6 +3800,7 @@ paths: tags: - users.contact summary: Delete navigation property photo for users + description: Optional contact picture. You can get or set a photo for a contact. operationId: users.contacts_DeletePhoto parameters: - name: user-id @@ -3770,6 +3833,7 @@ paths: tags: - users.contact summary: Get media content for the navigation property photo from users + description: The user's profile photo. Read-only. operationId: users.contacts_GetPhotoContent parameters: - name: user-id @@ -3801,6 +3865,7 @@ paths: tags: - users.contact summary: Update media content for the navigation property photo in users + description: The user's profile photo. Read-only. operationId: users.contacts_SetPhotoContent parameters: - name: user-id @@ -3836,6 +3901,7 @@ paths: tags: - users.contact summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_ListSingleValueExtendedProperties parameters: - name: user-id @@ -3924,6 +3990,7 @@ paths: tags: - users.contact summary: Create new navigation property to singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_CreateSingleValueExtendedProperties parameters: - name: user-id @@ -3962,6 +4029,7 @@ paths: tags: - users.contact summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_GetSingleValueExtendedProperties parameters: - name: user-id @@ -4024,6 +4092,7 @@ paths: tags: - users.contact summary: Update the navigation property singleValueExtendedProperties in users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_UpdateSingleValueExtendedProperties parameters: - name: user-id @@ -4064,6 +4133,7 @@ paths: tags: - users.contact summary: Delete navigation property singleValueExtendedProperties for users + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. operationId: users.contacts_DeleteSingleValueExtendedProperties parameters: - name: user-id diff --git a/openApiDocs/v1.0/Planner.yml b/openApiDocs/v1.0/Planner.yml index 00b2fa01923..0b67c78cd81 100644 --- a/openApiDocs/v1.0/Planner.yml +++ b/openApiDocs/v1.0/Planner.yml @@ -11,6 +11,7 @@ paths: tags: - groups.plannerGroup summary: Get planner from groups + description: Selective Planner services available to the group. Read-only. Nullable. operationId: groups_GetPlanner parameters: - name: group-id @@ -65,6 +66,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property planner in groups + description: Selective Planner services available to the group. Read-only. Nullable. operationId: groups_UpdatePlanner parameters: - name: group-id @@ -91,6 +93,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property planner for groups + description: Selective Planner services available to the group. Read-only. Nullable. operationId: groups_DeletePlanner parameters: - name: group-id @@ -116,6 +119,7 @@ paths: tags: - groups.plannerGroup summary: Get plans from groups + description: Read-only. Nullable. Returns the plannerPlans owned by the group. operationId: groups.planner_ListPlans parameters: - name: group-id @@ -212,6 +216,7 @@ paths: tags: - groups.plannerGroup summary: Create new navigation property to plans for groups + description: Read-only. Nullable. Returns the plannerPlans owned by the group. operationId: groups.planner_CreatePlans parameters: - name: group-id @@ -243,6 +248,7 @@ paths: tags: - groups.plannerGroup summary: Get plans from groups + description: Read-only. Nullable. Returns the plannerPlans owned by the group. operationId: groups.planner_GetPlans parameters: - name: group-id @@ -323,6 +329,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property plans in groups + description: Read-only. Nullable. Returns the plannerPlans owned by the group. operationId: groups.planner_UpdatePlans parameters: - name: group-id @@ -356,6 +363,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property plans for groups + description: Read-only. Nullable. Returns the plannerPlans owned by the group. operationId: groups.planner_DeletePlans parameters: - name: group-id @@ -388,6 +396,7 @@ paths: tags: - groups.plannerGroup summary: Get buckets from groups + description: Collection of buckets in the plan. Read-only. Nullable. operationId: groups.planner.plans_ListBuckets parameters: - name: group-id @@ -484,6 +493,7 @@ paths: tags: - groups.plannerGroup summary: Create new navigation property to buckets for groups + description: Collection of buckets in the plan. Read-only. Nullable. operationId: groups.planner.plans_CreateBuckets parameters: - name: group-id @@ -522,6 +532,7 @@ paths: tags: - groups.plannerGroup summary: Get buckets from groups + description: Collection of buckets in the plan. Read-only. Nullable. operationId: groups.planner.plans_GetBuckets parameters: - name: group-id @@ -595,6 +606,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property buckets in groups + description: Collection of buckets in the plan. Read-only. Nullable. operationId: groups.planner.plans_UpdateBuckets parameters: - name: group-id @@ -635,6 +647,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property buckets for groups + description: Collection of buckets in the plan. Read-only. Nullable. operationId: groups.planner.plans_DeleteBuckets parameters: - name: group-id @@ -674,6 +687,7 @@ paths: tags: - groups.plannerGroup summary: Get tasks from groups + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets_ListTasks parameters: - name: group-id @@ -834,6 +848,7 @@ paths: tags: - groups.plannerGroup summary: Create new navigation property to tasks for groups + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets_CreateTasks parameters: - name: group-id @@ -879,6 +894,7 @@ paths: tags: - groups.plannerGroup summary: Get tasks from groups + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets_GetTasks parameters: - name: group-id @@ -1004,6 +1020,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property tasks in groups + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets_UpdateTasks parameters: - name: group-id @@ -1051,6 +1068,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property tasks for groups + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets_DeleteTasks parameters: - name: group-id @@ -1097,6 +1115,7 @@ paths: tags: - groups.plannerGroup summary: Get assignedToTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.buckets.tasks_GetAssignedToTaskBoardFormat parameters: - name: group-id @@ -1167,6 +1186,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property assignedToTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.buckets.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: group-id @@ -1214,6 +1234,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property assignedToTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.buckets.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: group-id @@ -1260,6 +1281,7 @@ paths: tags: - groups.plannerGroup summary: Get bucketTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.buckets.tasks_GetBucketTaskBoardFormat parameters: - name: group-id @@ -1329,6 +1351,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property bucketTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.buckets.tasks_UpdateBucketTaskBoardFormat parameters: - name: group-id @@ -1376,6 +1399,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property bucketTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.buckets.tasks_DeleteBucketTaskBoardFormat parameters: - name: group-id @@ -1422,6 +1446,7 @@ paths: tags: - groups.plannerGroup summary: Get details from groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.buckets.tasks_GetDetails parameters: - name: group-id @@ -1494,6 +1519,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property details in groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.buckets.tasks_UpdateDetails parameters: - name: group-id @@ -1541,6 +1567,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property details for groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.buckets.tasks_DeleteDetails parameters: - name: group-id @@ -1587,6 +1614,7 @@ paths: tags: - groups.plannerGroup summary: Get progressTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.buckets.tasks_GetProgressTaskBoardFormat parameters: - name: group-id @@ -1656,6 +1684,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property progressTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.buckets.tasks_UpdateProgressTaskBoardFormat parameters: - name: group-id @@ -1703,6 +1732,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property progressTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.buckets.tasks_DeleteProgressTaskBoardFormat parameters: - name: group-id @@ -1749,6 +1779,7 @@ paths: tags: - groups.plannerGroup summary: Get details from groups + description: Additional details about the plan. Read-only. Nullable. operationId: groups.planner.plans_GetDetails parameters: - name: group-id @@ -1805,6 +1836,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property details in groups + description: Additional details about the plan. Read-only. Nullable. operationId: groups.planner.plans_UpdateDetails parameters: - name: group-id @@ -1838,6 +1870,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property details for groups + description: Additional details about the plan. Read-only. Nullable. operationId: groups.planner.plans_DeleteDetails parameters: - name: group-id @@ -1870,6 +1903,7 @@ paths: tags: - groups.plannerGroup summary: Get tasks from groups + description: Collection of tasks in the plan. Read-only. Nullable. operationId: groups.planner.plans_ListTasks parameters: - name: group-id @@ -2023,6 +2057,7 @@ paths: tags: - groups.plannerGroup summary: Create new navigation property to tasks for groups + description: Collection of tasks in the plan. Read-only. Nullable. operationId: groups.planner.plans_CreateTasks parameters: - name: group-id @@ -2061,6 +2096,7 @@ paths: tags: - groups.plannerGroup summary: Get tasks from groups + description: Collection of tasks in the plan. Read-only. Nullable. operationId: groups.planner.plans_GetTasks parameters: - name: group-id @@ -2175,6 +2211,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property tasks in groups + description: Collection of tasks in the plan. Read-only. Nullable. operationId: groups.planner.plans_UpdateTasks parameters: - name: group-id @@ -2215,6 +2252,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property tasks for groups + description: Collection of tasks in the plan. Read-only. Nullable. operationId: groups.planner.plans_DeleteTasks parameters: - name: group-id @@ -2254,6 +2292,7 @@ paths: tags: - groups.plannerGroup summary: Get assignedToTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.tasks_GetAssignedToTaskBoardFormat parameters: - name: group-id @@ -2317,6 +2356,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property assignedToTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: group-id @@ -2357,6 +2397,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property assignedToTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: group-id @@ -2396,6 +2437,7 @@ paths: tags: - groups.plannerGroup summary: Get bucketTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.tasks_GetBucketTaskBoardFormat parameters: - name: group-id @@ -2458,6 +2500,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property bucketTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.tasks_UpdateBucketTaskBoardFormat parameters: - name: group-id @@ -2498,6 +2541,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property bucketTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.tasks_DeleteBucketTaskBoardFormat parameters: - name: group-id @@ -2537,6 +2581,7 @@ paths: tags: - groups.plannerGroup summary: Get details from groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.tasks_GetDetails parameters: - name: group-id @@ -2602,6 +2647,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property details in groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.tasks_UpdateDetails parameters: - name: group-id @@ -2642,6 +2688,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property details for groups + description: Read-only. Nullable. Additional details about the task. operationId: groups.planner.plans.tasks_DeleteDetails parameters: - name: group-id @@ -2681,6 +2728,7 @@ paths: tags: - groups.plannerGroup summary: Get progressTaskBoardFormat from groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.tasks_GetProgressTaskBoardFormat parameters: - name: group-id @@ -2743,6 +2791,7 @@ paths: tags: - groups.plannerGroup summary: Update the navigation property progressTaskBoardFormat in groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.tasks_UpdateProgressTaskBoardFormat parameters: - name: group-id @@ -2783,6 +2832,7 @@ paths: tags: - groups.plannerGroup summary: Delete navigation property progressTaskBoardFormat for groups + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.tasks_DeleteProgressTaskBoardFormat parameters: - name: group-id @@ -2894,6 +2944,7 @@ paths: tags: - planner.plannerBucket summary: Get buckets from planner + description: Read-only. Nullable. Returns a collection of the specified buckets operationId: planner_ListBuckets parameters: - $ref: '#/components/parameters/top' @@ -2976,6 +3027,7 @@ paths: tags: - planner.plannerBucket summary: Create new navigation property to buckets for planner + description: Read-only. Nullable. Returns a collection of the specified buckets operationId: planner_CreateBuckets requestBody: description: New navigation property @@ -2999,6 +3051,7 @@ paths: tags: - planner.plannerBucket summary: Get buckets from planner + description: Read-only. Nullable. Returns a collection of the specified buckets operationId: planner_GetBuckets parameters: - name: plannerBucket-id @@ -3056,6 +3109,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property buckets in planner + description: Read-only. Nullable. Returns a collection of the specified buckets operationId: planner_UpdateBuckets parameters: - name: plannerBucket-id @@ -3082,6 +3136,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property buckets for planner + description: Read-only. Nullable. Returns a collection of the specified buckets operationId: planner_DeleteBuckets parameters: - name: plannerBucket-id @@ -3107,6 +3162,7 @@ paths: tags: - planner.plannerBucket summary: Get tasks from planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.buckets_ListTasks parameters: - name: plannerBucket-id @@ -3253,6 +3309,7 @@ paths: tags: - planner.plannerBucket summary: Create new navigation property to tasks for planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.buckets_CreateTasks parameters: - name: plannerBucket-id @@ -3284,6 +3341,7 @@ paths: tags: - planner.plannerBucket summary: Get tasks from planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.buckets_GetTasks parameters: - name: plannerBucket-id @@ -3387,6 +3445,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property tasks in planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.buckets_UpdateTasks parameters: - name: plannerBucket-id @@ -3420,6 +3479,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property tasks for planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.buckets_DeleteTasks parameters: - name: plannerBucket-id @@ -3452,6 +3512,7 @@ paths: tags: - planner.plannerBucket summary: Get assignedToTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.buckets.tasks_GetAssignedToTaskBoardFormat parameters: - name: plannerBucket-id @@ -3508,6 +3569,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property assignedToTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.buckets.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: plannerBucket-id @@ -3541,6 +3603,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property assignedToTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.buckets.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: plannerBucket-id @@ -3573,6 +3636,7 @@ paths: tags: - planner.plannerBucket summary: Get bucketTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.buckets.tasks_GetBucketTaskBoardFormat parameters: - name: plannerBucket-id @@ -3628,6 +3692,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property bucketTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.buckets.tasks_UpdateBucketTaskBoardFormat parameters: - name: plannerBucket-id @@ -3661,6 +3726,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property bucketTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.buckets.tasks_DeleteBucketTaskBoardFormat parameters: - name: plannerBucket-id @@ -3693,6 +3759,7 @@ paths: tags: - planner.plannerBucket summary: Get details from planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.buckets.tasks_GetDetails parameters: - name: plannerBucket-id @@ -3751,6 +3818,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property details in planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.buckets.tasks_UpdateDetails parameters: - name: plannerBucket-id @@ -3784,6 +3852,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property details for planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.buckets.tasks_DeleteDetails parameters: - name: plannerBucket-id @@ -3816,6 +3885,7 @@ paths: tags: - planner.plannerBucket summary: Get progressTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.buckets.tasks_GetProgressTaskBoardFormat parameters: - name: plannerBucket-id @@ -3871,6 +3941,7 @@ paths: tags: - planner.plannerBucket summary: Update the navigation property progressTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.buckets.tasks_UpdateProgressTaskBoardFormat parameters: - name: plannerBucket-id @@ -3904,6 +3975,7 @@ paths: tags: - planner.plannerBucket summary: Delete navigation property progressTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.buckets.tasks_DeleteProgressTaskBoardFormat parameters: - name: plannerBucket-id @@ -3936,6 +4008,7 @@ paths: tags: - planner.plannerPlan summary: Get plans from planner + description: Read-only. Nullable. Returns a collection of the specified plans operationId: planner_ListPlans parameters: - $ref: '#/components/parameters/top' @@ -4025,6 +4098,7 @@ paths: tags: - planner.plannerPlan summary: Create new navigation property to plans for planner + description: Read-only. Nullable. Returns a collection of the specified plans operationId: planner_CreatePlans requestBody: description: New navigation property @@ -4048,6 +4122,7 @@ paths: tags: - planner.plannerPlan summary: Get plans from planner + description: Read-only. Nullable. Returns a collection of the specified plans operationId: planner_GetPlans parameters: - name: plannerPlan-id @@ -4118,6 +4193,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property plans in planner + description: Read-only. Nullable. Returns a collection of the specified plans operationId: planner_UpdatePlans parameters: - name: plannerPlan-id @@ -4144,6 +4220,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property plans for planner + description: Read-only. Nullable. Returns a collection of the specified plans operationId: planner_DeletePlans parameters: - name: plannerPlan-id @@ -4169,6 +4246,7 @@ paths: tags: - planner.plannerPlan summary: Get buckets from planner + description: Collection of buckets in the plan. Read-only. Nullable. operationId: planner.plans_ListBuckets parameters: - name: plannerPlan-id @@ -4258,6 +4336,7 @@ paths: tags: - planner.plannerPlan summary: Create new navigation property to buckets for planner + description: Collection of buckets in the plan. Read-only. Nullable. operationId: planner.plans_CreateBuckets parameters: - name: plannerPlan-id @@ -4289,6 +4368,7 @@ paths: tags: - planner.plannerPlan summary: Get buckets from planner + description: Collection of buckets in the plan. Read-only. Nullable. operationId: planner.plans_GetBuckets parameters: - name: plannerPlan-id @@ -4354,6 +4434,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property buckets in planner + description: Collection of buckets in the plan. Read-only. Nullable. operationId: planner.plans_UpdateBuckets parameters: - name: plannerPlan-id @@ -4387,6 +4468,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property buckets for planner + description: Collection of buckets in the plan. Read-only. Nullable. operationId: planner.plans_DeleteBuckets parameters: - name: plannerPlan-id @@ -4419,6 +4501,7 @@ paths: tags: - planner.plannerPlan summary: Get tasks from planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.plans.buckets_ListTasks parameters: - name: plannerPlan-id @@ -4572,6 +4655,7 @@ paths: tags: - planner.plannerPlan summary: Create new navigation property to tasks for planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.plans.buckets_CreateTasks parameters: - name: plannerPlan-id @@ -4610,6 +4694,7 @@ paths: tags: - planner.plannerPlan summary: Get tasks from planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.plans.buckets_GetTasks parameters: - name: plannerPlan-id @@ -4724,6 +4809,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property tasks in planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.plans.buckets_UpdateTasks parameters: - name: plannerPlan-id @@ -4764,6 +4850,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property tasks for planner + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: planner.plans.buckets_DeleteTasks parameters: - name: plannerPlan-id @@ -4803,6 +4890,7 @@ paths: tags: - planner.plannerPlan summary: Get assignedToTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.buckets.tasks_GetAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -4866,6 +4954,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property assignedToTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.buckets.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -4906,6 +4995,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property assignedToTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.buckets.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -4945,6 +5035,7 @@ paths: tags: - planner.plannerPlan summary: Get bucketTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.buckets.tasks_GetBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -5007,6 +5098,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property bucketTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.buckets.tasks_UpdateBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -5047,6 +5139,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property bucketTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.buckets.tasks_DeleteBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -5086,6 +5179,7 @@ paths: tags: - planner.plannerPlan summary: Get details from planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.buckets.tasks_GetDetails parameters: - name: plannerPlan-id @@ -5151,6 +5245,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property details in planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.buckets.tasks_UpdateDetails parameters: - name: plannerPlan-id @@ -5191,6 +5286,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property details for planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.buckets.tasks_DeleteDetails parameters: - name: plannerPlan-id @@ -5230,6 +5326,7 @@ paths: tags: - planner.plannerPlan summary: Get progressTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.buckets.tasks_GetProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -5292,6 +5389,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property progressTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.buckets.tasks_UpdateProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -5332,6 +5430,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property progressTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.buckets.tasks_DeleteProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -5371,6 +5470,7 @@ paths: tags: - planner.plannerPlan summary: Get details from planner + description: Additional details about the plan. Read-only. Nullable. operationId: planner.plans_GetDetails parameters: - name: plannerPlan-id @@ -5420,6 +5520,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property details in planner + description: Additional details about the plan. Read-only. Nullable. operationId: planner.plans_UpdateDetails parameters: - name: plannerPlan-id @@ -5446,6 +5547,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property details for planner + description: Additional details about the plan. Read-only. Nullable. operationId: planner.plans_DeleteDetails parameters: - name: plannerPlan-id @@ -5471,6 +5573,7 @@ paths: tags: - planner.plannerPlan summary: Get tasks from planner + description: Collection of tasks in the plan. Read-only. Nullable. operationId: planner.plans_ListTasks parameters: - name: plannerPlan-id @@ -5617,6 +5720,7 @@ paths: tags: - planner.plannerPlan summary: Create new navigation property to tasks for planner + description: Collection of tasks in the plan. Read-only. Nullable. operationId: planner.plans_CreateTasks parameters: - name: plannerPlan-id @@ -5648,6 +5752,7 @@ paths: tags: - planner.plannerPlan summary: Get tasks from planner + description: Collection of tasks in the plan. Read-only. Nullable. operationId: planner.plans_GetTasks parameters: - name: plannerPlan-id @@ -5751,6 +5856,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property tasks in planner + description: Collection of tasks in the plan. Read-only. Nullable. operationId: planner.plans_UpdateTasks parameters: - name: plannerPlan-id @@ -5784,6 +5890,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property tasks for planner + description: Collection of tasks in the plan. Read-only. Nullable. operationId: planner.plans_DeleteTasks parameters: - name: plannerPlan-id @@ -5816,6 +5923,7 @@ paths: tags: - planner.plannerPlan summary: Get assignedToTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.tasks_GetAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -5872,6 +5980,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property assignedToTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -5905,6 +6014,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property assignedToTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.plans.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: plannerPlan-id @@ -5937,6 +6047,7 @@ paths: tags: - planner.plannerPlan summary: Get bucketTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.tasks_GetBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -5992,6 +6103,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property bucketTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.tasks_UpdateBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -6025,6 +6137,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property bucketTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.plans.tasks_DeleteBucketTaskBoardFormat parameters: - name: plannerPlan-id @@ -6057,6 +6170,7 @@ paths: tags: - planner.plannerPlan summary: Get details from planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.tasks_GetDetails parameters: - name: plannerPlan-id @@ -6115,6 +6229,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property details in planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.tasks_UpdateDetails parameters: - name: plannerPlan-id @@ -6148,6 +6263,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property details for planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.plans.tasks_DeleteDetails parameters: - name: plannerPlan-id @@ -6180,6 +6296,7 @@ paths: tags: - planner.plannerPlan summary: Get progressTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.tasks_GetProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -6235,6 +6352,7 @@ paths: tags: - planner.plannerPlan summary: Update the navigation property progressTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.tasks_UpdateProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -6268,6 +6386,7 @@ paths: tags: - planner.plannerPlan summary: Delete navigation property progressTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.plans.tasks_DeleteProgressTaskBoardFormat parameters: - name: plannerPlan-id @@ -6300,6 +6419,7 @@ paths: tags: - planner.plannerTask summary: Get tasks from planner + description: Read-only. Nullable. Returns a collection of the specified tasks operationId: planner_ListTasks parameters: - $ref: '#/components/parameters/top' @@ -6439,6 +6559,7 @@ paths: tags: - planner.plannerTask summary: Create new navigation property to tasks for planner + description: Read-only. Nullable. Returns a collection of the specified tasks operationId: planner_CreateTasks requestBody: description: New navigation property @@ -6462,6 +6583,7 @@ paths: tags: - planner.plannerTask summary: Get tasks from planner + description: Read-only. Nullable. Returns a collection of the specified tasks operationId: planner_GetTasks parameters: - name: plannerTask-id @@ -6554,6 +6676,7 @@ paths: tags: - planner.plannerTask summary: Update the navigation property tasks in planner + description: Read-only. Nullable. Returns a collection of the specified tasks operationId: planner_UpdateTasks parameters: - name: plannerTask-id @@ -6580,6 +6703,7 @@ paths: tags: - planner.plannerTask summary: Delete navigation property tasks for planner + description: Read-only. Nullable. Returns a collection of the specified tasks operationId: planner_DeleteTasks parameters: - name: plannerTask-id @@ -6605,6 +6729,7 @@ paths: tags: - planner.plannerTask summary: Get assignedToTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.tasks_GetAssignedToTaskBoardFormat parameters: - name: plannerTask-id @@ -6654,6 +6779,7 @@ paths: tags: - planner.plannerTask summary: Update the navigation property assignedToTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: plannerTask-id @@ -6680,6 +6806,7 @@ paths: tags: - planner.plannerTask summary: Delete navigation property assignedToTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: planner.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: plannerTask-id @@ -6705,6 +6832,7 @@ paths: tags: - planner.plannerTask summary: Get bucketTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.tasks_GetBucketTaskBoardFormat parameters: - name: plannerTask-id @@ -6753,6 +6881,7 @@ paths: tags: - planner.plannerTask summary: Update the navigation property bucketTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.tasks_UpdateBucketTaskBoardFormat parameters: - name: plannerTask-id @@ -6779,6 +6908,7 @@ paths: tags: - planner.plannerTask summary: Delete navigation property bucketTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: planner.tasks_DeleteBucketTaskBoardFormat parameters: - name: plannerTask-id @@ -6804,6 +6934,7 @@ paths: tags: - planner.plannerTask summary: Get details from planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.tasks_GetDetails parameters: - name: plannerTask-id @@ -6855,6 +6986,7 @@ paths: tags: - planner.plannerTask summary: Update the navigation property details in planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.tasks_UpdateDetails parameters: - name: plannerTask-id @@ -6881,6 +7013,7 @@ paths: tags: - planner.plannerTask summary: Delete navigation property details for planner + description: Read-only. Nullable. Additional details about the task. operationId: planner.tasks_DeleteDetails parameters: - name: plannerTask-id @@ -6906,6 +7039,7 @@ paths: tags: - planner.plannerTask summary: Get progressTaskBoardFormat from planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.tasks_GetProgressTaskBoardFormat parameters: - name: plannerTask-id @@ -6954,6 +7088,7 @@ paths: tags: - planner.plannerTask summary: Update the navigation property progressTaskBoardFormat in planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.tasks_UpdateProgressTaskBoardFormat parameters: - name: plannerTask-id @@ -6980,6 +7115,7 @@ paths: tags: - planner.plannerTask summary: Delete navigation property progressTaskBoardFormat for planner + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: planner.tasks_DeleteProgressTaskBoardFormat parameters: - name: plannerTask-id @@ -7005,6 +7141,7 @@ paths: tags: - users.plannerUser summary: Get planner from users + description: Selective Planner services available to the user. Read-only. Nullable. operationId: users_GetPlanner parameters: - name: user-id @@ -7065,6 +7202,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property planner in users + description: Selective Planner services available to the user. Read-only. Nullable. operationId: users_UpdatePlanner parameters: - name: user-id @@ -7091,6 +7229,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property planner for users + description: Selective Planner services available to the user. Read-only. Nullable. operationId: users_DeletePlanner parameters: - name: user-id @@ -7116,6 +7255,7 @@ paths: tags: - users.plannerUser summary: Get plans from users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_ListPlans parameters: - name: user-id @@ -7212,6 +7352,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property to plans for users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_CreatePlans parameters: - name: user-id @@ -7243,6 +7384,7 @@ paths: tags: - users.plannerUser summary: Get plans from users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_GetPlans parameters: - name: user-id @@ -7323,6 +7465,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property plans in users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_UpdatePlans parameters: - name: user-id @@ -7356,6 +7499,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property plans for users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_DeletePlans parameters: - name: user-id @@ -7388,6 +7532,7 @@ paths: tags: - users.plannerUser summary: Get buckets from users + description: Collection of buckets in the plan. Read-only. Nullable. operationId: users.planner.plans_ListBuckets parameters: - name: user-id @@ -7484,6 +7629,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property to buckets for users + description: Collection of buckets in the plan. Read-only. Nullable. operationId: users.planner.plans_CreateBuckets parameters: - name: user-id @@ -7522,6 +7668,7 @@ paths: tags: - users.plannerUser summary: Get buckets from users + description: Collection of buckets in the plan. Read-only. Nullable. operationId: users.planner.plans_GetBuckets parameters: - name: user-id @@ -7595,6 +7742,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property buckets in users + description: Collection of buckets in the plan. Read-only. Nullable. operationId: users.planner.plans_UpdateBuckets parameters: - name: user-id @@ -7635,6 +7783,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property buckets for users + description: Collection of buckets in the plan. Read-only. Nullable. operationId: users.planner.plans_DeleteBuckets parameters: - name: user-id @@ -7674,6 +7823,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: users.planner.plans.buckets_ListTasks parameters: - name: user-id @@ -7834,6 +7984,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property to tasks for users + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: users.planner.plans.buckets_CreateTasks parameters: - name: user-id @@ -7879,6 +8030,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: users.planner.plans.buckets_GetTasks parameters: - name: user-id @@ -8004,6 +8156,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property tasks in users + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: users.planner.plans.buckets_UpdateTasks parameters: - name: user-id @@ -8051,6 +8204,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property tasks for users + description: Read-only. Nullable. The collection of tasks in the bucket. operationId: users.planner.plans.buckets_DeleteTasks parameters: - name: user-id @@ -8097,6 +8251,7 @@ paths: tags: - users.plannerUser summary: Get assignedToTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.buckets.tasks_GetAssignedToTaskBoardFormat parameters: - name: user-id @@ -8167,6 +8322,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property assignedToTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.buckets.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: user-id @@ -8214,6 +8370,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property assignedToTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.buckets.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: user-id @@ -8260,6 +8417,7 @@ paths: tags: - users.plannerUser summary: Get bucketTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.buckets.tasks_GetBucketTaskBoardFormat parameters: - name: user-id @@ -8329,6 +8487,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property bucketTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.buckets.tasks_UpdateBucketTaskBoardFormat parameters: - name: user-id @@ -8376,6 +8535,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property bucketTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.buckets.tasks_DeleteBucketTaskBoardFormat parameters: - name: user-id @@ -8422,6 +8582,7 @@ paths: tags: - users.plannerUser summary: Get details from users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.buckets.tasks_GetDetails parameters: - name: user-id @@ -8494,6 +8655,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property details in users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.buckets.tasks_UpdateDetails parameters: - name: user-id @@ -8541,6 +8703,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property details for users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.buckets.tasks_DeleteDetails parameters: - name: user-id @@ -8587,6 +8750,7 @@ paths: tags: - users.plannerUser summary: Get progressTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.buckets.tasks_GetProgressTaskBoardFormat parameters: - name: user-id @@ -8656,6 +8820,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property progressTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.buckets.tasks_UpdateProgressTaskBoardFormat parameters: - name: user-id @@ -8703,6 +8868,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property progressTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.buckets.tasks_DeleteProgressTaskBoardFormat parameters: - name: user-id @@ -8749,6 +8915,7 @@ paths: tags: - users.plannerUser summary: Get details from users + description: Additional details about the plan. Read-only. Nullable. operationId: users.planner.plans_GetDetails parameters: - name: user-id @@ -8805,6 +8972,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property details in users + description: Additional details about the plan. Read-only. Nullable. operationId: users.planner.plans_UpdateDetails parameters: - name: user-id @@ -8838,6 +9006,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property details for users + description: Additional details about the plan. Read-only. Nullable. operationId: users.planner.plans_DeleteDetails parameters: - name: user-id @@ -8870,6 +9039,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Collection of tasks in the plan. Read-only. Nullable. operationId: users.planner.plans_ListTasks parameters: - name: user-id @@ -9023,6 +9193,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property to tasks for users + description: Collection of tasks in the plan. Read-only. Nullable. operationId: users.planner.plans_CreateTasks parameters: - name: user-id @@ -9061,6 +9232,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Collection of tasks in the plan. Read-only. Nullable. operationId: users.planner.plans_GetTasks parameters: - name: user-id @@ -9175,6 +9347,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property tasks in users + description: Collection of tasks in the plan. Read-only. Nullable. operationId: users.planner.plans_UpdateTasks parameters: - name: user-id @@ -9215,6 +9388,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property tasks for users + description: Collection of tasks in the plan. Read-only. Nullable. operationId: users.planner.plans_DeleteTasks parameters: - name: user-id @@ -9254,6 +9428,7 @@ paths: tags: - users.plannerUser summary: Get assignedToTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.tasks_GetAssignedToTaskBoardFormat parameters: - name: user-id @@ -9317,6 +9492,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property assignedToTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: user-id @@ -9357,6 +9533,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property assignedToTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.plans.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: user-id @@ -9396,6 +9573,7 @@ paths: tags: - users.plannerUser summary: Get bucketTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.tasks_GetBucketTaskBoardFormat parameters: - name: user-id @@ -9458,6 +9636,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property bucketTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.tasks_UpdateBucketTaskBoardFormat parameters: - name: user-id @@ -9498,6 +9677,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property bucketTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.plans.tasks_DeleteBucketTaskBoardFormat parameters: - name: user-id @@ -9537,6 +9717,7 @@ paths: tags: - users.plannerUser summary: Get details from users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.tasks_GetDetails parameters: - name: user-id @@ -9602,6 +9783,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property details in users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.tasks_UpdateDetails parameters: - name: user-id @@ -9642,6 +9824,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property details for users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.plans.tasks_DeleteDetails parameters: - name: user-id @@ -9681,6 +9864,7 @@ paths: tags: - users.plannerUser summary: Get progressTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.tasks_GetProgressTaskBoardFormat parameters: - name: user-id @@ -9743,6 +9927,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property progressTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.tasks_UpdateProgressTaskBoardFormat parameters: - name: user-id @@ -9783,6 +9968,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property progressTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.plans.tasks_DeleteProgressTaskBoardFormat parameters: - name: user-id @@ -9822,6 +10008,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_ListTasks parameters: - name: user-id @@ -9968,6 +10155,7 @@ paths: tags: - users.plannerUser summary: Create new navigation property to tasks for users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_CreateTasks parameters: - name: user-id @@ -9999,6 +10187,7 @@ paths: tags: - users.plannerUser summary: Get tasks from users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_GetTasks parameters: - name: user-id @@ -10102,6 +10291,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property tasks in users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_UpdateTasks parameters: - name: user-id @@ -10135,6 +10325,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property tasks for users + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. operationId: users.planner_DeleteTasks parameters: - name: user-id @@ -10167,6 +10358,7 @@ paths: tags: - users.plannerUser summary: Get assignedToTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.tasks_GetAssignedToTaskBoardFormat parameters: - name: user-id @@ -10223,6 +10415,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property assignedToTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.tasks_UpdateAssignedToTaskBoardFormat parameters: - name: user-id @@ -10256,6 +10449,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property assignedToTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: users.planner.tasks_DeleteAssignedToTaskBoardFormat parameters: - name: user-id @@ -10288,6 +10482,7 @@ paths: tags: - users.plannerUser summary: Get bucketTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.tasks_GetBucketTaskBoardFormat parameters: - name: user-id @@ -10343,6 +10538,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property bucketTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.tasks_UpdateBucketTaskBoardFormat parameters: - name: user-id @@ -10376,6 +10572,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property bucketTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: users.planner.tasks_DeleteBucketTaskBoardFormat parameters: - name: user-id @@ -10408,6 +10605,7 @@ paths: tags: - users.plannerUser summary: Get details from users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.tasks_GetDetails parameters: - name: user-id @@ -10466,6 +10664,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property details in users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.tasks_UpdateDetails parameters: - name: user-id @@ -10499,6 +10698,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property details for users + description: Read-only. Nullable. Additional details about the task. operationId: users.planner.tasks_DeleteDetails parameters: - name: user-id @@ -10531,6 +10731,7 @@ paths: tags: - users.plannerUser summary: Get progressTaskBoardFormat from users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.tasks_GetProgressTaskBoardFormat parameters: - name: user-id @@ -10586,6 +10787,7 @@ paths: tags: - users.plannerUser summary: Update the navigation property progressTaskBoardFormat in users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.tasks_UpdateProgressTaskBoardFormat parameters: - name: user-id @@ -10619,6 +10821,7 @@ paths: tags: - users.plannerUser summary: Delete navigation property progressTaskBoardFormat for users + description: Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: users.planner.tasks_DeleteProgressTaskBoardFormat parameters: - name: user-id diff --git a/openApiDocs/v1.0/Reports.yml b/openApiDocs/v1.0/Reports.yml index c37587a1ee4..43c4b1ad158 100644 --- a/openApiDocs/v1.0/Reports.yml +++ b/openApiDocs/v1.0/Reports.yml @@ -87,6 +87,7 @@ paths: tags: - auditLogs.directoryAudit summary: Get directoryAudits from auditLogs + description: Read-only. Nullable. operationId: auditLogs_ListDirectoryAudits parameters: - $ref: '#/components/parameters/top' @@ -191,6 +192,7 @@ paths: tags: - auditLogs.directoryAudit summary: Create new navigation property to directoryAudits for auditLogs + description: Read-only. Nullable. operationId: auditLogs_CreateDirectoryAudits requestBody: description: New navigation property @@ -214,6 +216,7 @@ paths: tags: - auditLogs.directoryAudit summary: Get directoryAudits from auditLogs + description: Read-only. Nullable. operationId: auditLogs_GetDirectoryAudits parameters: - name: directoryAudit-id @@ -272,6 +275,7 @@ paths: tags: - auditLogs.directoryAudit summary: Update the navigation property directoryAudits in auditLogs + description: Read-only. Nullable. operationId: auditLogs_UpdateDirectoryAudits parameters: - name: directoryAudit-id @@ -298,6 +302,7 @@ paths: tags: - auditLogs.directoryAudit summary: Delete navigation property directoryAudits for auditLogs + description: Read-only. Nullable. operationId: auditLogs_DeleteDirectoryAudits parameters: - name: directoryAudit-id @@ -867,6 +872,7 @@ paths: tags: - auditLogs.signIn summary: Get signIns from auditLogs + description: Read-only. Nullable. operationId: auditLogs_ListSignIns parameters: - $ref: '#/components/parameters/top' @@ -1007,6 +1013,7 @@ paths: tags: - auditLogs.signIn summary: Create new navigation property to signIns for auditLogs + description: Read-only. Nullable. operationId: auditLogs_CreateSignIns requestBody: description: New navigation property @@ -1030,6 +1037,7 @@ paths: tags: - auditLogs.signIn summary: Get signIns from auditLogs + description: Read-only. Nullable. operationId: auditLogs_GetSignIns parameters: - name: signIn-id @@ -1100,6 +1108,7 @@ paths: tags: - auditLogs.signIn summary: Update the navigation property signIns in auditLogs + description: Read-only. Nullable. operationId: auditLogs_UpdateSignIns parameters: - name: signIn-id @@ -1126,6 +1135,7 @@ paths: tags: - auditLogs.signIn summary: Delete navigation property signIns for auditLogs + description: Read-only. Nullable. operationId: auditLogs_DeleteSignIns parameters: - name: signIn-id @@ -1651,6 +1661,7 @@ paths: tags: - reports.Functions summary: Invoke function deviceConfigurationDeviceActivity + description: Metadata for the device configuration device activity report operationId: reports_deviceConfigurationDeviceActivity responses: '200': @@ -1667,6 +1678,7 @@ paths: tags: - reports.Functions summary: Invoke function deviceConfigurationUserActivity + description: Metadata for the device configuration user activity report operationId: reports_deviceConfigurationUserActivity responses: '200': @@ -4415,11 +4427,11 @@ components: properties: appDisplayName: type: string - description: The application name displayed in the Azure Portal. + description: The application name displayed in the Azure Portal. Supports $filter (eq and startsWith operators only). nullable: true appId: type: string - description: The application identifier in Azure Active Directory. + description: The application identifier in Azure Active Directory. Supports $filter (eq operator only). nullable: true appliedConditionalAccessPolicies: type: array @@ -4428,24 +4440,24 @@ 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. Supports $filter (eq operator only).' nullable: true conditionalAccessStatus: $ref: '#/components/schemas/microsoft.graph.conditionalAccessStatus' correlationId: type: string - description: The identifier that's sent from the client when sign-in is initiated. This is used for troubleshooting the corresponding sign-in activity when calling for support. + description: The identifier that's sent from the client when sign-in is initiated. This is used for troubleshooting the corresponding sign-in activity when calling for support. Supports $filter (eq operator only). 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 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.' + 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. Supports $orderby and $filter (eq, le, and ge operators only).' format: date-time deviceDetail: $ref: '#/components/schemas/microsoft.graph.deviceDetail' ipAddress: type: string - description: The IP address of the client from where the sign-in occurred. + description: The IP address of the client from where the sign-in occurred. Supports $filter (eq and startsWith operators only). nullable: true isInteractive: type: boolean @@ -4455,11 +4467,11 @@ components: $ref: '#/components/schemas/microsoft.graph.signInLocation' resourceDisplayName: type: string - description: The name of the resource that the user signed in to. + description: The name of the resource that the user signed in to. Supports $filter (eq operator only). nullable: true resourceId: type: string - description: The identifier of the resource that the user signed in to. + description: The identifier of the resource that the user signed in to. Supports $filter (eq operator only). nullable: true riskDetail: $ref: '#/components/schemas/microsoft.graph.riskDetail' @@ -4467,13 +4479,13 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.riskEventType' - description: 'The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue.' + description: 'The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue. Supports $filter (eq operator only).' riskEventTypes_v2: type: array items: type: string nullable: true - description: 'The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue.' + description: 'The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue. Supports $filter (eq and startsWith operators only).' riskLevelAggregated: $ref: '#/components/schemas/microsoft.graph.riskLevel' riskLevelDuringSignIn: @@ -4484,14 +4496,14 @@ components: $ref: '#/components/schemas/microsoft.graph.signInStatus' userDisplayName: type: string - description: The display name of the user. + description: The display name of the user. Supports $filter (eq and startsWith operators only). nullable: true userId: type: string - description: The identifier of the user. + description: The identifier of the user. Supports $filter (eq operator only). userPrincipalName: type: string - description: The UPN of the user. + description: The UPN of the user. Supports $filter (eq and startsWith operators only). nullable: true additionalProperties: type: object @@ -4611,11 +4623,11 @@ components: 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.' + description: Key. 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. + description: Value. nullable: true additionalProperties: type: object @@ -4955,27 +4967,21 @@ components: additionalProperties: type: object microsoft.graph.userIdentity: - title: userIdentity - type: object - properties: - displayName: - type: string - description: The identity's display name. Note that this may not always be available or up-to-date. - nullable: true - id: - type: string - description: Unique identifier for the identity. - nullable: true - 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 + 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.printJobProcessingState: title: printJobProcessingState enum: @@ -5055,17 +5061,21 @@ components: properties: additionalDetails: type: string + description: Additional details in case of error. nullable: true errorCategory: $ref: '#/components/schemas/microsoft.graph.provisioningStatusErrorCategory' errorCode: type: string + description: Unique error code if any occurred. Learn more nullable: true reason: type: string + description: Summarizes the status and describes why the status happened. nullable: true recommendedAction: type: string + description: Provides the resolution for the corresponding error. nullable: true additionalProperties: type: object diff --git a/openApiDocs/v1.0/Security.yml b/openApiDocs/v1.0/Security.yml index 6c98f7cdbb0..dcba4825f99 100644 --- a/openApiDocs/v1.0/Security.yml +++ b/openApiDocs/v1.0/Security.yml @@ -83,6 +83,7 @@ paths: tags: - security.alert summary: Get alerts from security + description: Read-only. Nullable. operationId: security_ListAlerts parameters: - $ref: '#/components/parameters/top' @@ -271,6 +272,7 @@ paths: tags: - security.alert summary: Create new navigation property to alerts for security + description: Read-only. Nullable. operationId: security_CreateAlerts requestBody: description: New navigation property @@ -294,6 +296,7 @@ paths: tags: - security.alert summary: Get alerts from security + description: Read-only. Nullable. operationId: security_GetAlerts parameters: - name: alert-id @@ -380,6 +383,7 @@ paths: tags: - security.alert summary: Update the navigation property alerts in security + description: Read-only. Nullable. operationId: security_UpdateAlerts parameters: - name: alert-id @@ -406,6 +410,7 @@ paths: tags: - security.alert summary: Delete navigation property alerts for security + description: Read-only. Nullable. operationId: security_DeleteAlerts parameters: - name: alert-id diff --git a/openApiDocs/v1.0/Sites.yml b/openApiDocs/v1.0/Sites.yml index 8373c5be768..3a278e1431e 100644 --- a/openApiDocs/v1.0/Sites.yml +++ b/openApiDocs/v1.0/Sites.yml @@ -11,6 +11,7 @@ paths: tags: - groups.site summary: Get sites from groups + description: The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups_ListSites parameters: - name: group-id @@ -155,6 +156,7 @@ paths: tags: - groups.site summary: Create new navigation property to sites for groups + description: The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups_CreateSites parameters: - name: group-id @@ -186,6 +188,7 @@ paths: tags: - groups.site summary: Get sites from groups + description: The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups_GetSites parameters: - name: group-id @@ -339,6 +342,7 @@ paths: tags: - groups.site summary: Update the navigation property sites in groups + description: The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups_UpdateSites parameters: - name: group-id @@ -372,6 +376,7 @@ paths: tags: - groups.site summary: Delete navigation property sites for groups + description: The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups_DeleteSites parameters: - name: group-id @@ -749,6 +754,7 @@ paths: tags: - sites.itemAnalytics summary: Get analytics from sites + description: Analytics about the view activities that took place in this site. operationId: sites_GetAnalytics parameters: - name: site-id @@ -816,6 +822,7 @@ paths: tags: - sites.itemAnalytics summary: Get ref of analytics from sites + description: Analytics about the view activities that took place in this site. operationId: sites_GetRefAnalytics parameters: - name: site-id @@ -852,6 +859,7 @@ paths: tags: - sites.itemAnalytics summary: Update the ref of navigation property analytics in sites + description: Analytics about the view activities that took place in this site. operationId: sites_SetRefAnalytics parameters: - name: site-id @@ -880,6 +888,7 @@ paths: tags: - sites.itemAnalytics summary: Delete ref of navigation property analytics for sites + description: Analytics about the view activities that took place in this site. operationId: sites_DeleteRefAnalytics parameters: - name: site-id @@ -905,6 +914,7 @@ paths: tags: - sites.columnDefinition summary: Get columns from sites + description: The collection of column definitions reusable across lists under this site. operationId: sites_ListColumns parameters: - name: site-id @@ -1043,6 +1053,7 @@ paths: tags: - sites.columnDefinition summary: Create new navigation property to columns for sites + description: The collection of column definitions reusable across lists under this site. operationId: sites_CreateColumns parameters: - name: site-id @@ -1074,6 +1085,7 @@ paths: tags: - sites.columnDefinition summary: Get columns from sites + description: The collection of column definitions reusable across lists under this site. operationId: sites_GetColumns parameters: - name: site-id @@ -1148,6 +1160,7 @@ paths: tags: - sites.columnDefinition summary: Update the navigation property columns in sites + description: The collection of column definitions reusable across lists under this site. operationId: sites_UpdateColumns parameters: - name: site-id @@ -1181,6 +1194,7 @@ paths: tags: - sites.columnDefinition summary: Delete navigation property columns for sites + description: The collection of column definitions reusable across lists under this site. operationId: sites_DeleteColumns parameters: - name: site-id @@ -1213,6 +1227,7 @@ paths: tags: - sites.contentType summary: Get contentTypes from sites + description: The collection of content types defined for this site. operationId: sites_ListContentTypes parameters: - name: site-id @@ -1320,6 +1335,7 @@ paths: tags: - sites.contentType summary: Create new navigation property to contentTypes for sites + description: The collection of content types defined for this site. operationId: sites_CreateContentTypes parameters: - name: site-id @@ -1351,6 +1367,7 @@ paths: tags: - sites.contentType summary: Get contentTypes from sites + description: The collection of content types defined for this site. operationId: sites_GetContentTypes parameters: - name: site-id @@ -1422,6 +1439,7 @@ paths: tags: - sites.contentType summary: Update the navigation property contentTypes in sites + description: The collection of content types defined for this site. operationId: sites_UpdateContentTypes parameters: - name: site-id @@ -1455,6 +1473,7 @@ paths: tags: - sites.contentType summary: Delete navigation property contentTypes for sites + description: The collection of content types defined for this site. operationId: sites_DeleteContentTypes parameters: - name: site-id @@ -1487,6 +1506,7 @@ paths: tags: - sites.contentType summary: Get columnLinks from sites + description: The collection of columns that are required by this content type operationId: sites.contentTypes_ListColumnLinks parameters: - name: site-id @@ -1575,6 +1595,7 @@ paths: tags: - sites.contentType summary: Create new navigation property to columnLinks for sites + description: The collection of columns that are required by this content type operationId: sites.contentTypes_CreateColumnLinks parameters: - name: site-id @@ -1613,6 +1634,7 @@ paths: tags: - sites.contentType summary: Get columnLinks from sites + description: The collection of columns that are required by this content type operationId: sites.contentTypes_GetColumnLinks parameters: - name: site-id @@ -1675,6 +1697,7 @@ paths: tags: - sites.contentType summary: Update the navigation property columnLinks in sites + description: The collection of columns that are required by this content type operationId: sites.contentTypes_UpdateColumnLinks parameters: - name: site-id @@ -1715,6 +1738,7 @@ paths: tags: - sites.contentType summary: Delete navigation property columnLinks for sites + description: The collection of columns that are required by this content type operationId: sites.contentTypes_DeleteColumnLinks parameters: - name: site-id @@ -1754,6 +1778,7 @@ paths: tags: - sites.drive summary: Get drive from sites + description: The default drive (document library) for this site. operationId: sites_GetDrive parameters: - name: site-id @@ -1858,6 +1883,7 @@ paths: tags: - sites.drive summary: Update the navigation property drive in sites + description: The default drive (document library) for this site. operationId: sites_UpdateDrive parameters: - name: site-id @@ -1884,6 +1910,7 @@ paths: tags: - sites.drive summary: Delete navigation property drive for sites + description: The default drive (document library) for this site. operationId: sites_DeleteDrive parameters: - name: site-id @@ -1909,6 +1936,7 @@ paths: tags: - sites.drive summary: Get drives from sites + description: The collection of drives (document libraries) under this site. operationId: sites_ListDrives parameters: - name: site-id @@ -2043,6 +2071,7 @@ paths: tags: - sites.drive summary: Create new navigation property to drives for sites + description: The collection of drives (document libraries) under this site. operationId: sites_CreateDrives parameters: - name: site-id @@ -2074,6 +2103,7 @@ paths: tags: - sites.drive summary: Get drives from sites + description: The collection of drives (document libraries) under this site. operationId: sites_GetDrives parameters: - name: site-id @@ -2192,6 +2222,7 @@ paths: tags: - sites.drive summary: Update the navigation property drives in sites + description: The collection of drives (document libraries) under this site. operationId: sites_UpdateDrives parameters: - name: site-id @@ -2225,6 +2256,7 @@ paths: tags: - sites.drive summary: Delete navigation property drives for sites + description: The collection of drives (document libraries) under this site. operationId: sites_DeleteDrives parameters: - name: site-id @@ -2257,6 +2289,7 @@ paths: tags: - sites.list summary: Get lists from sites + description: The collection of lists under this site. operationId: sites_ListLists parameters: - name: site-id @@ -2388,6 +2421,7 @@ paths: tags: - sites.list summary: Create new navigation property to lists for sites + description: The collection of lists under this site. operationId: sites_CreateLists parameters: - name: site-id @@ -2419,6 +2453,7 @@ paths: tags: - sites.list summary: Get lists from sites + description: The collection of lists under this site. operationId: sites_GetLists parameters: - name: site-id @@ -2536,6 +2571,7 @@ paths: tags: - sites.list summary: Update the navigation property lists in sites + description: The collection of lists under this site. operationId: sites_UpdateLists parameters: - name: site-id @@ -2569,6 +2605,7 @@ paths: tags: - sites.list summary: Delete navigation property lists for sites + description: The collection of lists under this site. operationId: sites_DeleteLists parameters: - name: site-id @@ -2601,6 +2638,7 @@ paths: tags: - sites.list summary: Get columns from sites + description: The collection of field definitions for this list. operationId: sites.lists_ListColumns parameters: - name: site-id @@ -2746,6 +2784,7 @@ paths: tags: - sites.list summary: Create new navigation property to columns for sites + description: The collection of field definitions for this list. operationId: sites.lists_CreateColumns parameters: - name: site-id @@ -2784,6 +2823,7 @@ paths: tags: - sites.list summary: Get columns from sites + description: The collection of field definitions for this list. operationId: sites.lists_GetColumns parameters: - name: site-id @@ -2865,6 +2905,7 @@ paths: tags: - sites.list summary: Update the navigation property columns in sites + description: The collection of field definitions for this list. operationId: sites.lists_UpdateColumns parameters: - name: site-id @@ -2905,6 +2946,7 @@ paths: tags: - sites.list summary: Delete navigation property columns for sites + description: The collection of field definitions for this list. operationId: sites.lists_DeleteColumns parameters: - name: site-id @@ -2944,6 +2986,7 @@ paths: tags: - sites.list summary: Get contentTypes from sites + description: The collection of content types present in this list. operationId: sites.lists_ListContentTypes parameters: - name: site-id @@ -3058,6 +3101,7 @@ paths: tags: - sites.list summary: Create new navigation property to contentTypes for sites + description: The collection of content types present in this list. operationId: sites.lists_CreateContentTypes parameters: - name: site-id @@ -3096,6 +3140,7 @@ paths: tags: - sites.list summary: Get contentTypes from sites + description: The collection of content types present in this list. operationId: sites.lists_GetContentTypes parameters: - name: site-id @@ -3175,6 +3220,7 @@ paths: tags: - sites.list summary: Update the navigation property contentTypes in sites + description: The collection of content types present in this list. operationId: sites.lists_UpdateContentTypes parameters: - name: site-id @@ -3215,6 +3261,7 @@ paths: tags: - sites.list summary: Delete navigation property contentTypes for sites + description: The collection of content types present in this list. operationId: sites.lists_DeleteContentTypes parameters: - name: site-id @@ -3254,6 +3301,7 @@ paths: tags: - sites.list summary: Get columnLinks from sites + description: The collection of columns that are required by this content type operationId: sites.lists.contentTypes_ListColumnLinks parameters: - name: site-id @@ -3349,6 +3397,7 @@ paths: tags: - sites.list summary: Create new navigation property to columnLinks for sites + description: The collection of columns that are required by this content type operationId: sites.lists.contentTypes_CreateColumnLinks parameters: - name: site-id @@ -3394,6 +3443,7 @@ paths: tags: - sites.list summary: Get columnLinks from sites + description: The collection of columns that are required by this content type operationId: sites.lists.contentTypes_GetColumnLinks parameters: - name: site-id @@ -3463,6 +3513,7 @@ paths: tags: - sites.list summary: Update the navigation property columnLinks in sites + description: The collection of columns that are required by this content type operationId: sites.lists.contentTypes_UpdateColumnLinks parameters: - name: site-id @@ -3510,6 +3561,7 @@ paths: tags: - sites.list summary: Delete navigation property columnLinks for sites + description: The collection of columns that are required by this content type operationId: sites.lists.contentTypes_DeleteColumnLinks parameters: - name: site-id @@ -3556,6 +3608,7 @@ paths: tags: - sites.list summary: Get drive from sites + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: sites.lists_GetDrive parameters: - name: site-id @@ -3674,6 +3727,7 @@ paths: tags: - sites.list summary: Update the navigation property drive in sites + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: sites.lists_UpdateDrive parameters: - name: site-id @@ -3707,6 +3761,7 @@ paths: tags: - sites.list summary: Delete navigation property drive for sites + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: sites.lists_DeleteDrive parameters: - name: site-id @@ -3739,6 +3794,7 @@ paths: tags: - sites.list summary: Get items from sites + description: All items contained in the list. operationId: sites.lists_ListItems parameters: - name: site-id @@ -3869,6 +3925,7 @@ paths: tags: - sites.list summary: Create new navigation property to items for sites + description: All items contained in the list. operationId: sites.lists_CreateItems parameters: - name: site-id @@ -3907,6 +3964,7 @@ paths: tags: - sites.list summary: Get items from sites + description: All items contained in the list. operationId: sites.lists_GetItems parameters: - name: site-id @@ -4028,6 +4086,7 @@ paths: tags: - sites.list summary: Update the navigation property items in sites + description: All items contained in the list. operationId: sites.lists_UpdateItems parameters: - name: site-id @@ -4068,6 +4127,7 @@ paths: tags: - sites.list summary: Delete navigation property items for sites + description: All items contained in the list. operationId: sites.lists_DeleteItems parameters: - name: site-id @@ -4107,6 +4167,7 @@ paths: tags: - sites.list summary: Get analytics from sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.items_GetAnalytics parameters: - name: site-id @@ -4194,6 +4255,7 @@ paths: tags: - sites.list summary: Get ref of analytics from sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.items_GetRefAnalytics parameters: - name: site-id @@ -4250,6 +4312,7 @@ paths: tags: - sites.list summary: Update the ref of navigation property analytics in sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.items_SetRefAnalytics parameters: - name: site-id @@ -4292,6 +4355,7 @@ paths: tags: - sites.list summary: Delete ref of navigation property analytics for sites + description: Analytics about the view activities that took place on this item. operationId: sites.lists.items_DeleteRefAnalytics parameters: - name: site-id @@ -4331,6 +4395,7 @@ paths: tags: - sites.list summary: Get driveItem from sites + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: sites.lists.items_GetDriveItem parameters: - name: site-id @@ -4504,6 +4569,7 @@ paths: tags: - sites.list summary: Update the navigation property driveItem in sites + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: sites.lists.items_UpdateDriveItem parameters: - name: site-id @@ -4544,6 +4610,7 @@ paths: tags: - sites.list summary: Delete navigation property driveItem for sites + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: sites.lists.items_DeleteDriveItem parameters: - name: site-id @@ -4663,6 +4730,7 @@ paths: tags: - sites.list summary: Get fields from sites + description: The values of the columns set on this list item. operationId: sites.lists.items_GetFields parameters: - name: site-id @@ -4724,6 +4792,7 @@ paths: tags: - sites.list summary: Update the navigation property fields in sites + description: The values of the columns set on this list item. operationId: sites.lists.items_UpdateFields parameters: - name: site-id @@ -4764,6 +4833,7 @@ paths: tags: - sites.list summary: Delete navigation property fields for sites + description: The values of the columns set on this list item. operationId: sites.lists.items_DeleteFields parameters: - name: site-id @@ -4904,6 +4974,7 @@ paths: tags: - sites.list summary: Get versions from sites + description: The list of previous versions of the list item. operationId: sites.lists.items_ListVersions parameters: - name: site-id @@ -5007,6 +5078,7 @@ paths: tags: - sites.list summary: Create new navigation property to versions for sites + description: The list of previous versions of the list item. operationId: sites.lists.items_CreateVersions parameters: - name: site-id @@ -5052,6 +5124,7 @@ paths: tags: - sites.list summary: Get versions from sites + description: The list of previous versions of the list item. operationId: sites.lists.items_GetVersions parameters: - name: site-id @@ -5133,6 +5206,7 @@ paths: tags: - sites.list summary: Update the navigation property versions in sites + description: The list of previous versions of the list item. operationId: sites.lists.items_UpdateVersions parameters: - name: site-id @@ -5180,6 +5254,7 @@ paths: tags: - sites.list summary: Delete navigation property versions for sites + description: The list of previous versions of the list item. operationId: sites.lists.items_DeleteVersions parameters: - name: site-id @@ -5226,6 +5301,7 @@ paths: tags: - sites.list summary: Get fields from sites + description: A collection of the fields and values for this version of the list item. operationId: sites.lists.items.versions_GetFields parameters: - name: site-id @@ -5294,6 +5370,7 @@ paths: tags: - sites.list summary: Update the navigation property fields in sites + description: A collection of the fields and values for this version of the list item. operationId: sites.lists.items.versions_UpdateFields parameters: - name: site-id @@ -5341,6 +5418,7 @@ paths: tags: - sites.list summary: Delete navigation property fields for sites + description: A collection of the fields and values for this version of the list item. operationId: sites.lists.items.versions_DeleteFields parameters: - name: site-id @@ -5428,6 +5506,7 @@ paths: tags: - sites.list summary: Get subscriptions from sites + description: The set of subscriptions on the list. operationId: sites.lists_ListSubscriptions parameters: - name: site-id @@ -5552,6 +5631,7 @@ paths: tags: - sites.list summary: Create new navigation property to subscriptions for sites + description: The set of subscriptions on the list. operationId: sites.lists_CreateSubscriptions parameters: - name: site-id @@ -5590,6 +5670,7 @@ paths: tags: - sites.list summary: Get subscriptions from sites + description: The set of subscriptions on the list. operationId: sites.lists_GetSubscriptions parameters: - name: site-id @@ -5664,6 +5745,7 @@ paths: tags: - sites.list summary: Update the navigation property subscriptions in sites + description: The set of subscriptions on the list. operationId: sites.lists_UpdateSubscriptions parameters: - name: site-id @@ -5704,6 +5786,7 @@ paths: tags: - sites.list summary: Delete navigation property subscriptions for sites + description: The set of subscriptions on the list. operationId: sites.lists_DeleteSubscriptions parameters: - name: site-id @@ -12572,6 +12655,7 @@ paths: tags: - sites.permission summary: Get permissions from sites + description: The permissions associated with the site. Nullable. operationId: sites_ListPermissions parameters: - name: site-id @@ -12677,6 +12761,7 @@ paths: tags: - sites.permission summary: Create new navigation property to permissions for sites + description: The permissions associated with the site. Nullable. operationId: sites_CreatePermissions parameters: - name: site-id @@ -12708,6 +12793,7 @@ paths: tags: - sites.permission summary: Get permissions from sites + description: The permissions associated with the site. Nullable. operationId: sites_GetPermissions parameters: - name: site-id @@ -12771,6 +12857,7 @@ paths: tags: - sites.permission summary: Update the navigation property permissions in sites + description: The permissions associated with the site. Nullable. operationId: sites_UpdatePermissions parameters: - name: site-id @@ -12804,6 +12891,7 @@ paths: tags: - sites.permission summary: Delete navigation property permissions for sites + description: The permissions associated with the site. Nullable. operationId: sites_DeletePermissions parameters: - name: site-id @@ -12888,6 +12976,7 @@ paths: tags: - sites.site summary: Get sites from sites + description: The collection of the sub-sites under this site. operationId: sites_ListSites parameters: - name: site-id @@ -13032,6 +13121,7 @@ paths: tags: - sites.site summary: Create new navigation property to sites for sites + description: The collection of the sub-sites under this site. operationId: sites_CreateSites parameters: - name: site-id @@ -13063,6 +13153,7 @@ paths: tags: - sites.site summary: Get sites from sites + description: The collection of the sub-sites under this site. operationId: sites_GetSites parameters: - name: site-id @@ -13216,6 +13307,7 @@ paths: tags: - sites.site summary: Update the navigation property sites in sites + description: The collection of the sub-sites under this site. operationId: sites_UpdateSites parameters: - name: site-id @@ -13249,6 +13341,7 @@ paths: tags: - sites.site summary: Delete navigation property sites for sites + description: The collection of the sub-sites under this site. operationId: sites_DeleteSites parameters: - name: site-id @@ -15545,7 +15638,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -15558,7 +15651,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -15570,12 +15663,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -15584,11 +15677,11 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -15604,7 +15697,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -15622,7 +15715,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -15641,7 +15734,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -15660,11 +15753,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -15672,7 +15765,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -15719,7 +15812,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -15728,7 +15821,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredLanguage: type: string @@ -15756,15 +15849,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -15772,7 +15865,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -16008,6 +16101,10 @@ components: $ref: '#/components/schemas/microsoft.graph.presence' authentication: $ref: '#/components/schemas/microsoft.graph.authentication' + chats: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' joinedTeams: type: array items: @@ -16649,7 +16746,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -16923,7 +17020,7 @@ components: 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).' + description: 'Indicates whether 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 principalId: type: string @@ -17449,6 +17546,10 @@ components: type: string description: The mailFolder's display name. nullable: true + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. + nullable: true parentFolderId: type: string description: The unique identifier for the mailFolder's parent mailFolder. @@ -17883,6 +17984,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -17896,6 +18001,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -17935,6 +18044,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -17949,6 +18062,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -17969,6 +18086,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -18308,6 +18429,51 @@ components: $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 + 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 + topic: + type: string + description: (Optional) Subject or topic for the chat. Only available for group chats. + 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.team: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -18326,7 +18492,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true displayName: type: string @@ -19343,6 +19509,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState @@ -20072,6 +20241,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: @@ -20167,6 +20337,166 @@ components: $ref: '#/components/schemas/microsoft.graph.device' additionalProperties: type: object + microsoft.graph.chatType: + title: chatType + enum: + - oneOnOne + - group + - meeting + - unknownFutureValue + type: string + microsoft.graph.teamsAppInstallation: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamsAppInstallation + type: object + properties: + teamsApp: + $ref: '#/components/schemas/microsoft.graph.teamsApp' + teamsAppDefinition: + $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' + additionalProperties: + type: object + microsoft.graph.conversationMember: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: conversationMember + type: object + properties: + displayName: + type: string + description: The display name of the user. + nullable: true + roles: + type: array + items: + type: string + nullable: true + description: The roles for that user. + visibleHistoryStartDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. + format: date-time + nullable: true + 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 + 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: 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. 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.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.teamFunSettings: title: teamFunSettings type: object @@ -20614,6 +20944,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -20697,42 +21028,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.teamsAppInstallation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsAppInstallation - type: object - properties: - teamsApp: - $ref: '#/components/schemas/microsoft.graph.teamsApp' - teamsAppDefinition: - $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' - additionalProperties: - type: object - microsoft.graph.conversationMember: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: conversationMember - type: object - properties: - displayName: - type: string - description: The display name of the user. - nullable: true - roles: - type: array - items: - type: string - nullable: true - description: The roles for that user. - visibleHistoryStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. - format: date-time - nullable: true - additionalProperties: - type: object microsoft.graph.teamsAsyncOperation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -22018,7 +22313,7 @@ components: 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -22033,6 +22328,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -22048,6 +22344,210 @@ components: - weak - unknown type: string + 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: + 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 + description: Short description of the application. + 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.chatMessageAttachment: + title: chatMessageAttachment + type: object + properties: + content: + type: string + description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' + nullable: true + contentType: + type: string + description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' + nullable: true + contentUrl: + type: string + description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' + nullable: true + id: + type: string + description: Read-only. Unique id of the attachment. + nullable: true + name: + type: string + description: Name of the attachment. + nullable: true + thumbnailUrl: + type: string + description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' + 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: + - normal + - high + - urgent + - unknownFutureValue + type: string + microsoft.graph.chatMessageMention: + title: chatMessageMention + type: object + properties: + id: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' + format: int32 + nullable: true + mentioned: + $ref: '#/components/schemas/microsoft.graph.identitySet' + mentionText: + type: string + description: 'String used to represent the mention. For example, a user''s display name, a team name.' + nullable: true + additionalProperties: + type: object + microsoft.graph.chatMessageType: + title: chatMessageType + enum: + - message + - chatEvent + - typing + - unknownFutureValue + type: string + microsoft.graph.chatMessagePolicyViolation: + title: chatMessagePolicyViolation + type: object + properties: + dlpAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' + justificationText: + type: string + description: Justification text provided by the sender of the message when overriding a policy violation. + nullable: true + policyTip: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' + userAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' + verdictDetails: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' + additionalProperties: + type: object + microsoft.graph.chatMessageReaction: + title: chatMessageReaction + 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: 'The Timestamp type represents date and time information using ISO 8601 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 + description: 'Supported values are like, angry, sad, laugh, heart, surprised.' + user: + $ref: '#/components/schemas/microsoft.graph.identitySet' + additionalProperties: + type: object + microsoft.graph.chatMessageHostedContent: + allOf: + - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' + - title: chatMessageHostedContent + type: object + additionalProperties: + type: object + 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.giphyRatingType: title: giphyRatingType enum: @@ -22228,122 +22728,6 @@ components: - private - unknownFutureValue type: string - 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 - 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: 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. 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.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.assignedLabel: title: assignedLabel type: object @@ -22387,7 +22771,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -22530,68 +22914,6 @@ components: description: Read-only. Nullable. Returns the plannerPlans owned by the group. 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: - 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 - description: Short description of the application. - 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 @@ -22626,51 +22948,6 @@ components: - failed - unknownFutureValue type: string - 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 - 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 - topic: - type: string - description: (Optional) Subject or topic for the chat. Only available for group chats. - 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.wellknownListName: title: wellknownListName enum: @@ -23094,6 +23371,89 @@ components: nullable: true additionalProperties: type: object + 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.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.scheduleChangeRequest: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' @@ -23201,148 +23561,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.chatMessageAttachment: - title: chatMessageAttachment - type: object - properties: - content: - type: string - description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' - nullable: true - contentType: - type: string - description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' - nullable: true - contentUrl: - type: string - description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' - nullable: true - id: - type: string - description: Read-only. Unique id of the attachment. - nullable: true - name: - type: string - description: Name of the attachment. - nullable: true - thumbnailUrl: - type: string - description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' - 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: - - normal - - high - - urgent - - unknownFutureValue - type: string - microsoft.graph.chatMessageMention: - title: chatMessageMention - type: object - properties: - id: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' - format: int32 - nullable: true - mentioned: - $ref: '#/components/schemas/microsoft.graph.identitySet' - mentionText: - type: string - description: 'String used to represent the mention. For example, a user''s display name, a team name.' - nullable: true - additionalProperties: - type: object - microsoft.graph.chatMessageType: - title: chatMessageType - enum: - - message - - chatEvent - - typing - - unknownFutureValue - type: string - microsoft.graph.chatMessagePolicyViolation: - title: chatMessagePolicyViolation - type: object - properties: - dlpAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' - justificationText: - type: string - description: Justification text provided by the sender of the message when overriding a policy violation. - nullable: true - policyTip: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' - userAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' - verdictDetails: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' - additionalProperties: - type: object - microsoft.graph.chatMessageReaction: - title: chatMessageReaction - 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: 'The Timestamp type represents date and time information using ISO 8601 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 - description: 'Supported values are like, angry, sad, laugh, heart, surprised.' - user: - $ref: '#/components/schemas/microsoft.graph.identitySet' - additionalProperties: - type: object - microsoft.graph.chatMessageHostedContent: - allOf: - - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' - - title: chatMessageHostedContent - type: object - additionalProperties: - type: object - 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.settingValue: title: settingValue type: object @@ -23414,37 +23632,6 @@ components: description: The collection of single-value extended properties defined for the post. Read-only. Nullable. additionalProperties: type: object - 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.chatType: - title: chatType - enum: - - oneOnOne - - group - - meeting - - unknownFutureValue - type: string microsoft.graph.taskStatus: title: taskStatus enum: @@ -23609,66 +23796,6 @@ components: $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.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 c78069112a4..3d7cec10640 100644 --- a/openApiDocs/v1.0/Teams.yml +++ b/openApiDocs/v1.0/Teams.yml @@ -224,6 +224,7 @@ paths: tags: - appCatalogs.teamsApp summary: Get appDefinitions from appCatalogs + description: The details for each version of the app. operationId: appCatalogs.teamsApps_ListAppDefinitions parameters: - name: teamsApp-id @@ -328,6 +329,7 @@ paths: tags: - appCatalogs.teamsApp summary: Create new navigation property to appDefinitions for appCatalogs + description: The details for each version of the app. operationId: appCatalogs.teamsApps_CreateAppDefinitions parameters: - name: teamsApp-id @@ -359,6 +361,7 @@ paths: tags: - appCatalogs.teamsApp summary: Get appDefinitions from appCatalogs + description: The details for each version of the app. operationId: appCatalogs.teamsApps_GetAppDefinitions parameters: - name: teamsApp-id @@ -429,6 +432,7 @@ paths: tags: - appCatalogs.teamsApp summary: Update the navigation property appDefinitions in appCatalogs + description: The details for each version of the app. operationId: appCatalogs.teamsApps_UpdateAppDefinitions parameters: - name: teamsApp-id @@ -462,6 +466,7 @@ paths: tags: - appCatalogs.teamsApp summary: Delete navigation property appDefinitions for appCatalogs + description: The details for each version of the app. operationId: appCatalogs.teamsApps_DeleteAppDefinitions parameters: - name: teamsApp-id @@ -494,6 +499,7 @@ paths: tags: - appCatalogs.teamsApp summary: Get bot from appCatalogs + description: The details of the bot specified in the Teams app manifest. operationId: appCatalogs.teamsApps.appDefinitions_GetBot parameters: - name: teamsApp-id @@ -548,6 +554,7 @@ paths: tags: - appCatalogs.teamsApp summary: Update the navigation property bot in appCatalogs + description: The details of the bot specified in the Teams app manifest. operationId: appCatalogs.teamsApps.appDefinitions_UpdateBot parameters: - name: teamsApp-id @@ -581,6 +588,7 @@ paths: tags: - appCatalogs.teamsApp summary: Delete navigation property bot for appCatalogs + description: The details of the bot specified in the Teams app manifest. operationId: appCatalogs.teamsApps.appDefinitions_DeleteBot parameters: - name: teamsApp-id @@ -854,6 +862,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get installedApps from chats + description: A collection of all the apps in the chat. Nullable. operationId: chats_ListInstalledApps parameters: - name: chat-id @@ -936,6 +945,7 @@ paths: tags: - chats.teamsAppInstallation summary: Create new navigation property to installedApps for chats + description: A collection of all the apps in the chat. Nullable. operationId: chats_CreateInstalledApps parameters: - name: chat-id @@ -967,6 +977,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get installedApps from chats + description: A collection of all the apps in the chat. Nullable. operationId: chats_GetInstalledApps parameters: - name: chat-id @@ -1036,6 +1047,7 @@ paths: tags: - chats.teamsAppInstallation summary: Update the navigation property installedApps in chats + description: A collection of all the apps in the chat. Nullable. operationId: chats_UpdateInstalledApps parameters: - name: chat-id @@ -1069,6 +1081,7 @@ paths: tags: - chats.teamsAppInstallation summary: Delete navigation property installedApps for chats + description: A collection of all the apps in the chat. Nullable. operationId: chats_DeleteInstalledApps parameters: - name: chat-id @@ -1128,6 +1141,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get teamsApp from chats + description: The app that is installed. operationId: chats.installedApps_GetTeamsApp parameters: - name: chat-id @@ -1194,6 +1208,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get ref of teamsApp from chats + description: The app that is installed. operationId: chats.installedApps_GetRefTeamsApp parameters: - name: chat-id @@ -1230,6 +1245,7 @@ paths: tags: - chats.teamsAppInstallation summary: Update the ref of navigation property teamsApp in chats + description: The app that is installed. operationId: chats.installedApps_SetRefTeamsApp parameters: - name: chat-id @@ -1265,6 +1281,7 @@ paths: tags: - chats.teamsAppInstallation summary: Delete ref of navigation property teamsApp for chats + description: The app that is installed. operationId: chats.installedApps_DeleteRefTeamsApp parameters: - name: chat-id @@ -1297,6 +1314,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get teamsAppDefinition from chats + description: The details of this version of the app. operationId: chats.installedApps_GetTeamsAppDefinition parameters: - name: chat-id @@ -1368,6 +1386,7 @@ paths: tags: - chats.teamsAppInstallation summary: Get ref of teamsAppDefinition from chats + description: The details of this version of the app. operationId: chats.installedApps_GetRefTeamsAppDefinition parameters: - name: chat-id @@ -1404,6 +1423,7 @@ paths: tags: - chats.teamsAppInstallation summary: Update the ref of navigation property teamsAppDefinition in chats + description: The details of this version of the app. operationId: chats.installedApps_SetRefTeamsAppDefinition parameters: - name: chat-id @@ -1439,6 +1459,7 @@ paths: tags: - chats.teamsAppInstallation summary: Delete ref of navigation property teamsAppDefinition for chats + description: The details of this version of the app. operationId: chats.installedApps_DeleteRefTeamsAppDefinition parameters: - name: chat-id @@ -1471,6 +1492,7 @@ paths: tags: - chats.conversationMember summary: Get members from chats + description: A collection of all the members in the chat. Nullable. operationId: chats_ListMembers parameters: - name: chat-id @@ -1558,6 +1580,7 @@ paths: tags: - chats.conversationMember summary: Create new navigation property to members for chats + description: A collection of all the members in the chat. Nullable. operationId: chats_CreateMembers parameters: - name: chat-id @@ -1589,6 +1612,7 @@ paths: tags: - chats.conversationMember summary: Get members from chats + description: A collection of all the members in the chat. Nullable. operationId: chats_GetMembers parameters: - name: chat-id @@ -1646,6 +1670,7 @@ paths: tags: - chats.conversationMember summary: Update the navigation property members in chats + description: A collection of all the members in the chat. Nullable. operationId: chats_UpdateMembers parameters: - name: chat-id @@ -1679,6 +1704,7 @@ paths: tags: - chats.conversationMember summary: Delete navigation property members for chats + description: A collection of all the members in the chat. Nullable. operationId: chats_DeleteMembers parameters: - name: chat-id @@ -1711,6 +1737,7 @@ paths: tags: - chats.chatMessage summary: Get messages from chats + description: A collection of all the messages in the chat. Nullable. operationId: chats_ListMessages parameters: - name: chat-id @@ -1853,6 +1880,7 @@ paths: tags: - chats.chatMessage summary: Create new navigation property to messages for chats + description: A collection of all the messages in the chat. Nullable. operationId: chats_CreateMessages parameters: - name: chat-id @@ -1884,6 +1912,7 @@ paths: tags: - chats.chatMessage summary: Get messages from chats + description: A collection of all the messages in the chat. Nullable. operationId: chats_GetMessages parameters: - name: chat-id @@ -1973,6 +2002,7 @@ paths: tags: - chats.chatMessage summary: Update the navigation property messages in chats + description: A collection of all the messages in the chat. Nullable. operationId: chats_UpdateMessages parameters: - name: chat-id @@ -2006,6 +2036,7 @@ paths: tags: - chats.chatMessage summary: Delete navigation property messages for chats + description: A collection of all the messages in the chat. Nullable. operationId: chats_DeleteMessages parameters: - name: chat-id @@ -2038,6 +2069,7 @@ paths: tags: - chats.chatMessage summary: Get hostedContents from chats + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: chats.messages_ListHostedContents parameters: - name: chat-id @@ -2129,6 +2161,7 @@ paths: tags: - chats.chatMessage summary: Create new navigation property to hostedContents for chats + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: chats.messages_CreateHostedContents parameters: - name: chat-id @@ -2167,6 +2200,7 @@ paths: tags: - chats.chatMessage summary: Get hostedContents from chats + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: chats.messages_GetHostedContents parameters: - name: chat-id @@ -2230,6 +2264,7 @@ paths: tags: - chats.chatMessage summary: Update the navigation property hostedContents in chats + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: chats.messages_UpdateHostedContents parameters: - name: chat-id @@ -2270,6 +2305,7 @@ paths: tags: - chats.chatMessage summary: Delete navigation property hostedContents for chats + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: chats.messages_DeleteHostedContents parameters: - name: chat-id @@ -2309,6 +2345,7 @@ paths: tags: - chats.chatMessage summary: Get replies from chats + description: Replies for a specified message. operationId: chats.messages_ListReplies parameters: - name: chat-id @@ -2458,6 +2495,7 @@ paths: tags: - chats.chatMessage summary: Create new navigation property to replies for chats + description: Replies for a specified message. operationId: chats.messages_CreateReplies parameters: - name: chat-id @@ -2496,6 +2534,7 @@ paths: tags: - chats.chatMessage summary: Get replies from chats + description: Replies for a specified message. operationId: chats.messages_GetReplies parameters: - name: chat-id @@ -2594,6 +2633,7 @@ paths: tags: - chats.chatMessage summary: Update the navigation property replies in chats + description: Replies for a specified message. operationId: chats.messages_UpdateReplies parameters: - name: chat-id @@ -2634,6 +2674,7 @@ paths: tags: - chats.chatMessage summary: Delete navigation property replies for chats + description: Replies for a specified message. operationId: chats.messages_DeleteReplies parameters: - name: chat-id @@ -3029,6 +3070,7 @@ paths: tags: - chats.teamsTab summary: Get teamsApp from chats + description: The application that is linked to the tab. operationId: chats.tabs_GetTeamsApp parameters: - name: chat-id @@ -3095,6 +3137,7 @@ paths: tags: - chats.teamsTab summary: Get ref of teamsApp from chats + description: The application that is linked to the tab. operationId: chats.tabs_GetRefTeamsApp parameters: - name: chat-id @@ -3131,6 +3174,7 @@ paths: tags: - chats.teamsTab summary: Update the ref of navigation property teamsApp in chats + description: The application that is linked to the tab. operationId: chats.tabs_SetRefTeamsApp parameters: - name: chat-id @@ -3166,6 +3210,7 @@ paths: tags: - chats.teamsTab summary: Delete ref of navigation property teamsApp for chats + description: The application that is linked to the tab. operationId: chats.tabs_DeleteRefTeamsApp parameters: - name: chat-id @@ -3685,6 +3730,7 @@ paths: tags: - teams.channel summary: Get channels from teams + description: The collection of channels & messages associated with the team. operationId: teams_ListChannels parameters: - name: team-id @@ -3792,6 +3838,7 @@ paths: tags: - teams.channel summary: Create new navigation property to channels for teams + description: The collection of channels & messages associated with the team. operationId: teams_CreateChannels parameters: - name: team-id @@ -3823,6 +3870,7 @@ paths: tags: - teams.channel summary: Get channels from teams + description: The collection of channels & messages associated with the team. operationId: teams_GetChannels parameters: - name: team-id @@ -3913,6 +3961,7 @@ paths: tags: - teams.channel summary: Update the navigation property channels in teams + description: The collection of channels & messages associated with the team. operationId: teams_UpdateChannels parameters: - name: team-id @@ -3946,6 +3995,7 @@ paths: tags: - teams.channel summary: Delete navigation property channels for teams + description: The collection of channels & messages associated with the team. operationId: teams_DeleteChannels parameters: - name: team-id @@ -3978,6 +4028,7 @@ paths: tags: - teams.channel summary: Get filesFolder from teams + description: Metadata for the location where the channel's files are stored. operationId: teams.channels_GetFilesFolder parameters: - name: team-id @@ -4134,6 +4185,7 @@ paths: tags: - teams.channel summary: Update the navigation property filesFolder in teams + description: Metadata for the location where the channel's files are stored. operationId: teams.channels_UpdateFilesFolder parameters: - name: team-id @@ -4167,6 +4219,7 @@ paths: tags: - teams.channel summary: Delete navigation property filesFolder for teams + description: Metadata for the location where the channel's files are stored. operationId: teams.channels_DeleteFilesFolder parameters: - name: team-id @@ -4265,6 +4318,7 @@ paths: tags: - teams.channel summary: Get members from teams + description: A collection of membership records associated with the channel. operationId: teams.channels_ListMembers parameters: - name: team-id @@ -4359,6 +4413,7 @@ paths: tags: - teams.channel summary: Create new navigation property to members for teams + description: A collection of membership records associated with the channel. operationId: teams.channels_CreateMembers parameters: - name: team-id @@ -4397,6 +4452,7 @@ paths: tags: - teams.channel summary: Get members from teams + description: A collection of membership records associated with the channel. operationId: teams.channels_GetMembers parameters: - name: team-id @@ -4461,6 +4517,7 @@ paths: tags: - teams.channel summary: Update the navigation property members in teams + description: A collection of membership records associated with the channel. operationId: teams.channels_UpdateMembers parameters: - name: team-id @@ -4501,6 +4558,7 @@ paths: tags: - teams.channel summary: Delete navigation property members for teams + description: A collection of membership records associated with the channel. operationId: teams.channels_DeleteMembers parameters: - name: team-id @@ -4540,6 +4598,7 @@ paths: tags: - teams.channel summary: Get messages from teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.channels_ListMessages parameters: - name: team-id @@ -4689,6 +4748,7 @@ paths: tags: - teams.channel summary: Create new navigation property to messages for teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.channels_CreateMessages parameters: - name: team-id @@ -4727,6 +4787,7 @@ paths: tags: - teams.channel summary: Get messages from teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.channels_GetMessages parameters: - name: team-id @@ -4825,6 +4886,7 @@ paths: tags: - teams.channel summary: Update the navigation property messages in teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.channels_UpdateMessages parameters: - name: team-id @@ -4865,6 +4927,7 @@ paths: tags: - teams.channel summary: Delete navigation property messages for teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.channels_DeleteMessages parameters: - name: team-id @@ -4904,6 +4967,7 @@ paths: tags: - teams.channel summary: Get hostedContents from teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.channels.messages_ListHostedContents parameters: - name: team-id @@ -5002,6 +5066,7 @@ paths: tags: - teams.channel summary: Create new navigation property to hostedContents for teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.channels.messages_CreateHostedContents parameters: - name: team-id @@ -5047,6 +5112,7 @@ paths: tags: - teams.channel summary: Get hostedContents from teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.channels.messages_GetHostedContents parameters: - name: team-id @@ -5117,6 +5183,7 @@ paths: tags: - teams.channel summary: Update the navigation property hostedContents in teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.channels.messages_UpdateHostedContents parameters: - name: team-id @@ -5164,6 +5231,7 @@ paths: tags: - teams.channel summary: Delete navigation property hostedContents for teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.channels.messages_DeleteHostedContents parameters: - name: team-id @@ -5210,6 +5278,7 @@ paths: tags: - teams.channel summary: Get replies from teams + description: Replies for a specified message. operationId: teams.channels.messages_ListReplies parameters: - name: team-id @@ -5366,6 +5435,7 @@ paths: tags: - teams.channel summary: Create new navigation property to replies for teams + description: Replies for a specified message. operationId: teams.channels.messages_CreateReplies parameters: - name: team-id @@ -5411,6 +5481,7 @@ paths: tags: - teams.channel summary: Get replies from teams + description: Replies for a specified message. operationId: teams.channels.messages_GetReplies parameters: - name: team-id @@ -5518,6 +5589,7 @@ paths: tags: - teams.channel summary: Update the navigation property replies in teams + description: Replies for a specified message. operationId: teams.channels.messages_UpdateReplies parameters: - name: team-id @@ -5565,6 +5637,7 @@ paths: tags: - teams.channel summary: Delete navigation property replies for teams + description: Replies for a specified message. operationId: teams.channels.messages_DeleteReplies parameters: - name: team-id @@ -5711,6 +5784,7 @@ paths: tags: - teams.channel summary: Get tabs from teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.channels_ListTabs parameters: - name: team-id @@ -5807,6 +5881,7 @@ paths: tags: - teams.channel summary: Create new navigation property to tabs for teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.channels_CreateTabs parameters: - name: team-id @@ -5845,6 +5920,7 @@ paths: tags: - teams.channel summary: Get tabs from teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.channels_GetTabs parameters: - name: team-id @@ -5918,6 +5994,7 @@ paths: tags: - teams.channel summary: Update the navigation property tabs in teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.channels_UpdateTabs parameters: - name: team-id @@ -5958,6 +6035,7 @@ paths: tags: - teams.channel summary: Delete navigation property tabs for teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.channels_DeleteTabs parameters: - name: team-id @@ -5997,6 +6075,7 @@ paths: tags: - teams.channel summary: Get teamsApp from teams + description: The application that is linked to the tab. operationId: teams.channels.tabs_GetTeamsApp parameters: - name: team-id @@ -6071,6 +6150,7 @@ paths: tags: - teams.channel summary: Get ref of teamsApp from teams + description: The application that is linked to the tab. operationId: teams.channels.tabs_GetRefTeamsApp parameters: - name: team-id @@ -6115,6 +6195,7 @@ paths: tags: - teams.channel summary: Update the ref of navigation property teamsApp in teams + description: The application that is linked to the tab. operationId: teams.channels.tabs_SetRefTeamsApp parameters: - name: team-id @@ -6157,6 +6238,7 @@ paths: tags: - teams.channel summary: Delete ref of navigation property teamsApp for teams + description: The application that is linked to the tab. operationId: teams.channels.tabs_DeleteRefTeamsApp parameters: - name: team-id @@ -6630,6 +6712,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get installedApps from teams + description: The apps installed in this team. operationId: teams_ListInstalledApps parameters: - name: team-id @@ -6712,6 +6795,7 @@ paths: tags: - teams.teamsAppInstallation summary: Create new navigation property to installedApps for teams + description: The apps installed in this team. operationId: teams_CreateInstalledApps parameters: - name: team-id @@ -6743,6 +6827,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get installedApps from teams + description: The apps installed in this team. operationId: teams_GetInstalledApps parameters: - name: team-id @@ -6812,6 +6897,7 @@ paths: tags: - teams.teamsAppInstallation summary: Update the navigation property installedApps in teams + description: The apps installed in this team. operationId: teams_UpdateInstalledApps parameters: - name: team-id @@ -6845,6 +6931,7 @@ paths: tags: - teams.teamsAppInstallation summary: Delete navigation property installedApps for teams + description: The apps installed in this team. operationId: teams_DeleteInstalledApps parameters: - name: team-id @@ -6904,6 +6991,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get teamsApp from teams + description: The app that is installed. operationId: teams.installedApps_GetTeamsApp parameters: - name: team-id @@ -6970,6 +7058,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get ref of teamsApp from teams + description: The app that is installed. operationId: teams.installedApps_GetRefTeamsApp parameters: - name: team-id @@ -7006,6 +7095,7 @@ paths: tags: - teams.teamsAppInstallation summary: Update the ref of navigation property teamsApp in teams + description: The app that is installed. operationId: teams.installedApps_SetRefTeamsApp parameters: - name: team-id @@ -7041,6 +7131,7 @@ paths: tags: - teams.teamsAppInstallation summary: Delete ref of navigation property teamsApp for teams + description: The app that is installed. operationId: teams.installedApps_DeleteRefTeamsApp parameters: - name: team-id @@ -7073,6 +7164,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get teamsAppDefinition from teams + description: The details of this version of the app. operationId: teams.installedApps_GetTeamsAppDefinition parameters: - name: team-id @@ -7144,6 +7236,7 @@ paths: tags: - teams.teamsAppInstallation summary: Get ref of teamsAppDefinition from teams + description: The details of this version of the app. operationId: teams.installedApps_GetRefTeamsAppDefinition parameters: - name: team-id @@ -7180,6 +7273,7 @@ paths: tags: - teams.teamsAppInstallation summary: Update the ref of navigation property teamsAppDefinition in teams + description: The details of this version of the app. operationId: teams.installedApps_SetRefTeamsAppDefinition parameters: - name: team-id @@ -7215,6 +7309,7 @@ paths: tags: - teams.teamsAppInstallation summary: Delete ref of navigation property teamsAppDefinition for teams + description: The details of this version of the app. operationId: teams.installedApps_DeleteRefTeamsAppDefinition parameters: - name: team-id @@ -7247,6 +7342,7 @@ paths: tags: - teams.conversationMember summary: Get members from teams + description: Members and owners of the team. operationId: teams_ListMembers parameters: - name: team-id @@ -7334,6 +7430,7 @@ paths: tags: - teams.conversationMember summary: Create new navigation property to members for teams + description: Members and owners of the team. operationId: teams_CreateMembers parameters: - name: team-id @@ -7365,6 +7462,7 @@ paths: tags: - teams.conversationMember summary: Get members from teams + description: Members and owners of the team. operationId: teams_GetMembers parameters: - name: team-id @@ -7422,6 +7520,7 @@ paths: tags: - teams.conversationMember summary: Update the navigation property members in teams + description: Members and owners of the team. operationId: teams_UpdateMembers parameters: - name: team-id @@ -7455,6 +7554,7 @@ paths: tags: - teams.conversationMember summary: Delete navigation property members for teams + description: Members and owners of the team. operationId: teams_DeleteMembers parameters: - name: team-id @@ -7654,6 +7754,7 @@ paths: tags: - teams.teamsAsyncOperation summary: Get operations from teams + description: The async operations that ran or are running on this team. operationId: teams_ListOperations parameters: - name: team-id @@ -7756,6 +7857,7 @@ paths: tags: - teams.teamsAsyncOperation summary: Create new navigation property to operations for teams + description: The async operations that ran or are running on this team. operationId: teams_CreateOperations parameters: - name: team-id @@ -7787,6 +7889,7 @@ paths: tags: - teams.teamsAsyncOperation summary: Get operations from teams + description: The async operations that ran or are running on this team. operationId: teams_GetOperations parameters: - name: team-id @@ -7849,6 +7952,7 @@ paths: tags: - teams.teamsAsyncOperation summary: Update the navigation property operations in teams + description: The async operations that ran or are running on this team. operationId: teams_UpdateOperations parameters: - name: team-id @@ -7882,6 +7986,7 @@ paths: tags: - teams.teamsAsyncOperation summary: Delete navigation property operations for teams + description: The async operations that ran or are running on this team. operationId: teams_DeleteOperations parameters: - name: team-id @@ -7914,6 +8019,7 @@ paths: tags: - teams.channel summary: Get primaryChannel from teams + description: The general channel for the team. operationId: teams_GetPrimaryChannel parameters: - name: team-id @@ -7993,6 +8099,7 @@ paths: tags: - teams.channel summary: Update the navigation property primaryChannel in teams + description: The general channel for the team. operationId: teams_UpdatePrimaryChannel parameters: - name: team-id @@ -8019,6 +8126,7 @@ paths: tags: - teams.channel summary: Delete navigation property primaryChannel for teams + description: The general channel for the team. operationId: teams_DeletePrimaryChannel parameters: - name: team-id @@ -8044,6 +8152,7 @@ paths: tags: - teams.channel summary: Get filesFolder from teams + description: Metadata for the location where the channel's files are stored. operationId: teams.primaryChannel_GetFilesFolder parameters: - name: team-id @@ -8183,6 +8292,7 @@ paths: tags: - teams.channel summary: Update the navigation property filesFolder in teams + description: Metadata for the location where the channel's files are stored. operationId: teams.primaryChannel_UpdateFilesFolder parameters: - name: team-id @@ -8209,6 +8319,7 @@ paths: tags: - teams.channel summary: Delete navigation property filesFolder for teams + description: Metadata for the location where the channel's files are stored. operationId: teams.primaryChannel_DeleteFilesFolder parameters: - name: team-id @@ -8286,6 +8397,7 @@ paths: tags: - teams.channel summary: Get members from teams + description: A collection of membership records associated with the channel. operationId: teams.primaryChannel_ListMembers parameters: - name: team-id @@ -8373,6 +8485,7 @@ paths: tags: - teams.channel summary: Create new navigation property to members for teams + description: A collection of membership records associated with the channel. operationId: teams.primaryChannel_CreateMembers parameters: - name: team-id @@ -8404,6 +8517,7 @@ paths: tags: - teams.channel summary: Get members from teams + description: A collection of membership records associated with the channel. operationId: teams.primaryChannel_GetMembers parameters: - name: team-id @@ -8461,6 +8575,7 @@ paths: tags: - teams.channel summary: Update the navigation property members in teams + description: A collection of membership records associated with the channel. operationId: teams.primaryChannel_UpdateMembers parameters: - name: team-id @@ -8494,6 +8609,7 @@ paths: tags: - teams.channel summary: Delete navigation property members for teams + description: A collection of membership records associated with the channel. operationId: teams.primaryChannel_DeleteMembers parameters: - name: team-id @@ -8526,6 +8642,7 @@ paths: tags: - teams.channel summary: Get messages from teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.primaryChannel_ListMessages parameters: - name: team-id @@ -8668,6 +8785,7 @@ paths: tags: - teams.channel summary: Create new navigation property to messages for teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.primaryChannel_CreateMessages parameters: - name: team-id @@ -8699,6 +8817,7 @@ paths: tags: - teams.channel summary: Get messages from teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.primaryChannel_GetMessages parameters: - name: team-id @@ -8788,6 +8907,7 @@ paths: tags: - teams.channel summary: Update the navigation property messages in teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.primaryChannel_UpdateMessages parameters: - name: team-id @@ -8821,6 +8941,7 @@ paths: tags: - teams.channel summary: Delete navigation property messages for teams + description: A collection of all the messages in the channel. A navigation property. Nullable. operationId: teams.primaryChannel_DeleteMessages parameters: - name: team-id @@ -8853,6 +8974,7 @@ paths: tags: - teams.channel summary: Get hostedContents from teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.primaryChannel.messages_ListHostedContents parameters: - name: team-id @@ -8944,6 +9066,7 @@ paths: tags: - teams.channel summary: Create new navigation property to hostedContents for teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.primaryChannel.messages_CreateHostedContents parameters: - name: team-id @@ -8982,6 +9105,7 @@ paths: tags: - teams.channel summary: Get hostedContents from teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.primaryChannel.messages_GetHostedContents parameters: - name: team-id @@ -9045,6 +9169,7 @@ paths: tags: - teams.channel summary: Update the navigation property hostedContents in teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.primaryChannel.messages_UpdateHostedContents parameters: - name: team-id @@ -9085,6 +9210,7 @@ paths: tags: - teams.channel summary: Delete navigation property hostedContents for teams + description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.' operationId: teams.primaryChannel.messages_DeleteHostedContents parameters: - name: team-id @@ -9124,6 +9250,7 @@ paths: tags: - teams.channel summary: Get replies from teams + description: Replies for a specified message. operationId: teams.primaryChannel.messages_ListReplies parameters: - name: team-id @@ -9273,6 +9400,7 @@ paths: tags: - teams.channel summary: Create new navigation property to replies for teams + description: Replies for a specified message. operationId: teams.primaryChannel.messages_CreateReplies parameters: - name: team-id @@ -9311,6 +9439,7 @@ paths: tags: - teams.channel summary: Get replies from teams + description: Replies for a specified message. operationId: teams.primaryChannel.messages_GetReplies parameters: - name: team-id @@ -9409,6 +9538,7 @@ paths: tags: - teams.channel summary: Update the navigation property replies in teams + description: Replies for a specified message. operationId: teams.primaryChannel.messages_UpdateReplies parameters: - name: team-id @@ -9449,6 +9579,7 @@ paths: tags: - teams.channel summary: Delete navigation property replies for teams + description: Replies for a specified message. operationId: teams.primaryChannel.messages_DeleteReplies parameters: - name: team-id @@ -9567,6 +9698,7 @@ paths: tags: - teams.channel summary: Get tabs from teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.primaryChannel_ListTabs parameters: - name: team-id @@ -9656,6 +9788,7 @@ paths: tags: - teams.channel summary: Create new navigation property to tabs for teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.primaryChannel_CreateTabs parameters: - name: team-id @@ -9687,6 +9820,7 @@ paths: tags: - teams.channel summary: Get tabs from teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.primaryChannel_GetTabs parameters: - name: team-id @@ -9752,6 +9886,7 @@ paths: tags: - teams.channel summary: Update the navigation property tabs in teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.primaryChannel_UpdateTabs parameters: - name: team-id @@ -9785,6 +9920,7 @@ paths: tags: - teams.channel summary: Delete navigation property tabs for teams + description: A collection of all the tabs in the channel. A navigation property. operationId: teams.primaryChannel_DeleteTabs parameters: - name: team-id @@ -9817,6 +9953,7 @@ paths: tags: - teams.channel summary: Get teamsApp from teams + description: The application that is linked to the tab. operationId: teams.primaryChannel.tabs_GetTeamsApp parameters: - name: team-id @@ -9883,6 +10020,7 @@ paths: tags: - teams.channel summary: Get ref of teamsApp from teams + description: The application that is linked to the tab. operationId: teams.primaryChannel.tabs_GetRefTeamsApp parameters: - name: team-id @@ -9919,6 +10057,7 @@ paths: tags: - teams.channel summary: Update the ref of navigation property teamsApp in teams + description: The application that is linked to the tab. operationId: teams.primaryChannel.tabs_SetRefTeamsApp parameters: - name: team-id @@ -9954,6 +10093,7 @@ paths: tags: - teams.channel summary: Delete ref of navigation property teamsApp for teams + description: The application that is linked to the tab. operationId: teams.primaryChannel.tabs_DeleteRefTeamsApp parameters: - name: team-id @@ -9986,6 +10126,7 @@ paths: tags: - teams.schedule summary: Get schedule from teams + description: The schedule of shifts for this team. operationId: teams_GetSchedule parameters: - name: team-id @@ -10098,6 +10239,7 @@ paths: tags: - teams.schedule summary: Update the navigation property schedule in teams + description: The schedule of shifts for this team. operationId: teams_UpdateSchedule parameters: - name: team-id @@ -10124,6 +10266,7 @@ paths: tags: - teams.schedule summary: Delete navigation property schedule for teams + description: The schedule of shifts for this team. operationId: teams_DeleteSchedule parameters: - name: team-id @@ -11009,6 +11152,7 @@ paths: tags: - teams.schedule summary: Get schedulingGroups from teams + description: The logical grouping of users in the schedule (usually by role). operationId: teams.schedule_ListSchedulingGroups parameters: - name: team-id @@ -11105,6 +11249,7 @@ paths: tags: - teams.schedule summary: Create new navigation property to schedulingGroups for teams + description: The logical grouping of users in the schedule (usually by role). operationId: teams.schedule_CreateSchedulingGroups parameters: - name: team-id @@ -11136,6 +11281,7 @@ paths: tags: - teams.schedule summary: Get schedulingGroups from teams + description: The logical grouping of users in the schedule (usually by role). operationId: teams.schedule_GetSchedulingGroups parameters: - name: team-id @@ -11196,6 +11342,7 @@ paths: tags: - teams.schedule summary: Update the navigation property schedulingGroups in teams + description: The logical grouping of users in the schedule (usually by role). operationId: teams.schedule_UpdateSchedulingGroups parameters: - name: team-id @@ -11229,6 +11376,7 @@ paths: tags: - teams.schedule summary: Delete navigation property schedulingGroups for teams + description: The logical grouping of users in the schedule (usually by role). operationId: teams.schedule_DeleteSchedulingGroups parameters: - name: team-id @@ -11261,6 +11409,7 @@ paths: tags: - teams.schedule summary: Get shifts from teams + description: The shifts in the schedule. operationId: teams.schedule_ListShifts parameters: - name: team-id @@ -11360,6 +11509,7 @@ paths: tags: - teams.schedule summary: Create new navigation property to shifts for teams + description: The shifts in the schedule. operationId: teams.schedule_CreateShifts parameters: - name: team-id @@ -11391,6 +11541,7 @@ paths: tags: - teams.schedule summary: Get shifts from teams + description: The shifts in the schedule. operationId: teams.schedule_GetShifts parameters: - name: team-id @@ -11452,6 +11603,7 @@ paths: tags: - teams.schedule summary: Update the navigation property shifts in teams + description: The shifts in the schedule. operationId: teams.schedule_UpdateShifts parameters: - name: team-id @@ -11485,6 +11637,7 @@ paths: tags: - teams.schedule summary: Delete navigation property shifts for teams + description: The shifts in the schedule. operationId: teams.schedule_DeleteShifts parameters: - name: team-id @@ -11809,6 +11962,7 @@ paths: tags: - teams.schedule summary: Get timeOffReasons from teams + description: The set of reasons for a time off in the schedule. operationId: teams.schedule_ListTimeOffReasons parameters: - name: team-id @@ -11905,6 +12059,7 @@ paths: tags: - teams.schedule summary: Create new navigation property to timeOffReasons for teams + description: The set of reasons for a time off in the schedule. operationId: teams.schedule_CreateTimeOffReasons parameters: - name: team-id @@ -11936,6 +12091,7 @@ paths: tags: - teams.schedule summary: Get timeOffReasons from teams + description: The set of reasons for a time off in the schedule. operationId: teams.schedule_GetTimeOffReasons parameters: - name: team-id @@ -11996,6 +12152,7 @@ paths: tags: - teams.schedule summary: Update the navigation property timeOffReasons in teams + description: The set of reasons for a time off in the schedule. operationId: teams.schedule_UpdateTimeOffReasons parameters: - name: team-id @@ -12029,6 +12186,7 @@ paths: tags: - teams.schedule summary: Delete navigation property timeOffReasons for teams + description: The set of reasons for a time off in the schedule. operationId: teams.schedule_DeleteTimeOffReasons parameters: - name: team-id @@ -12345,6 +12503,7 @@ paths: tags: - teams.schedule summary: Get timesOff from teams + description: The instances of times off in the schedule. operationId: teams.schedule_ListTimesOff parameters: - name: team-id @@ -12441,6 +12600,7 @@ paths: tags: - teams.schedule summary: Create new navigation property to timesOff for teams + description: The instances of times off in the schedule. operationId: teams.schedule_CreateTimesOff parameters: - name: team-id @@ -12472,6 +12632,7 @@ paths: tags: - teams.schedule summary: Get timesOff from teams + description: The instances of times off in the schedule. operationId: teams.schedule_GetTimesOff parameters: - name: team-id @@ -12532,6 +12693,7 @@ paths: tags: - teams.schedule summary: Update the navigation property timesOff in teams + description: The instances of times off in the schedule. operationId: teams.schedule_UpdateTimesOff parameters: - name: team-id @@ -12565,6 +12727,7 @@ paths: tags: - teams.schedule summary: Delete navigation property timesOff for teams + description: The instances of times off in the schedule. operationId: teams.schedule_DeleteTimesOff parameters: - name: team-id @@ -12597,6 +12760,7 @@ paths: tags: - teams.teamsTemplate summary: Get template from teams + description: The template this team was created from. See available templates. operationId: teams_GetTemplate parameters: - name: team-id @@ -12645,6 +12809,7 @@ paths: tags: - teams.teamsTemplate summary: Get ref of template from teams + description: The template this team was created from. See available templates. operationId: teams_GetRefTemplate parameters: - name: team-id @@ -12668,6 +12833,7 @@ paths: tags: - teams.teamsTemplate summary: Update the ref of navigation property template in teams + description: The template this team was created from. See available templates. operationId: teams_SetRefTemplate parameters: - name: team-id @@ -12696,6 +12862,7 @@ paths: tags: - teams.teamsTemplate summary: Delete ref of navigation property template for teams + description: The template this team was created from. See available templates. operationId: teams_DeleteRefTemplate parameters: - name: team-id @@ -13026,11 +13193,293 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + '/users/{user-id}/chats': + get: + tags: + - users.chat + summary: Get chats from users + operationId: users_ListChats + 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 + - chatType + - chatType desc + - createdDateTime + - createdDateTime desc + - lastUpdatedDateTime + - lastUpdatedDateTime desc + - topic + - topic 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 + - chatType + - createdDateTime + - lastUpdatedDateTime + - topic + - installedApps + - members + - messages + - tabs + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - installedApps + - members + - messages + - tabs + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of chat + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' + '@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.chat + summary: Create new navigation property to chats for users + operationId: users_CreateChats + 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 + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.chat' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.chat' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/users/{user-id}/chats/{chat-id}': + get: + tags: + - users.chat + summary: Get chats from users + operationId: users_GetChats + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: chat-id + in: path + description: 'key: id of chat' + required: true + schema: + type: string + x-ms-docs-key-type: chat + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - chatType + - createdDateTime + - lastUpdatedDateTime + - topic + - installedApps + - members + - messages + - tabs + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - installedApps + - members + - messages + - tabs + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.chat' + links: + installedApps: + operationId: users.Chats.ListInstalledApps + parameters: + user-id: $request.path.user-id + chat-id: $request.path.chat-id + members: + operationId: users.Chats.ListMembers + parameters: + user-id: $request.path.user-id + chat-id: $request.path.chat-id + messages: + operationId: users.Chats.ListMessages + parameters: + user-id: $request.path.user-id + chat-id: $request.path.chat-id + tabs: + operationId: users.Chats.ListTabs + parameters: + user-id: $request.path.user-id + chat-id: $request.path.chat-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - users.chat + summary: Update the navigation property chats in users + operationId: users_UpdateChats + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - 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 values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.chat' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - users.chat + summary: Delete navigation property chats for users + operationId: users_DeleteChats + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: chat-id + in: path + description: 'key: id of chat' + required: true + schema: + type: string + x-ms-docs-key-type: chat + - 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}/joinedTeams': get: tags: - users.team summary: Get joinedTeams from users + description: The Microsoft Teams teams that the user is a member of. Read-only. Nullable. operationId: users_ListJoinedTeams parameters: - name: user-id @@ -13164,6 +13613,7 @@ paths: tags: - users.team summary: Create new navigation property to joinedTeams for users + description: The Microsoft Teams teams that the user is a member of. Read-only. Nullable. operationId: users_CreateJoinedTeams parameters: - name: user-id @@ -13195,6 +13645,7 @@ paths: tags: - users.team summary: Get joinedTeams from users + description: The Microsoft Teams teams that the user is a member of. Read-only. Nullable. operationId: users_GetJoinedTeams parameters: - name: user-id @@ -13319,6 +13770,7 @@ paths: tags: - users.team summary: Update the navigation property joinedTeams in users + description: The Microsoft Teams teams that the user is a member of. Read-only. Nullable. operationId: users_UpdateJoinedTeams parameters: - name: user-id @@ -13352,6 +13804,7 @@ paths: tags: - users.team summary: Delete navigation property joinedTeams for users + description: The Microsoft Teams teams that the user is a member of. Read-only. Nullable. operationId: users_DeleteJoinedTeams parameters: - name: user-id @@ -13384,6 +13837,7 @@ paths: tags: - users.userTeamwork summary: Get teamwork from users + description: A container for Microsoft Teams features available for the user. Read-only. Nullable. operationId: users_GetTeamwork parameters: - name: user-id @@ -13438,6 +13892,7 @@ paths: tags: - users.userTeamwork summary: Update the navigation property teamwork in users + description: A container for Microsoft Teams features available for the user. Read-only. Nullable. operationId: users_UpdateTeamwork parameters: - name: user-id @@ -13464,6 +13919,7 @@ paths: tags: - users.userTeamwork summary: Delete navigation property teamwork for users + description: A container for Microsoft Teams features available for the user. Read-only. Nullable. operationId: users_DeleteTeamwork parameters: - name: user-id @@ -13489,6 +13945,7 @@ paths: tags: - users.userTeamwork summary: Get installedApps from users + description: The apps installed in the personal scope of this user. operationId: users.teamwork_ListInstalledApps parameters: - name: user-id @@ -13573,6 +14030,7 @@ paths: tags: - users.userTeamwork summary: Create new navigation property to installedApps for users + description: The apps installed in the personal scope of this user. operationId: users.teamwork_CreateInstalledApps parameters: - name: user-id @@ -13604,6 +14062,7 @@ paths: tags: - users.userTeamwork summary: Get installedApps from users + description: The apps installed in the personal scope of this user. operationId: users.teamwork_GetInstalledApps parameters: - name: user-id @@ -13680,6 +14139,7 @@ paths: tags: - users.userTeamwork summary: Update the navigation property installedApps in users + description: The apps installed in the personal scope of this user. operationId: users.teamwork_UpdateInstalledApps parameters: - name: user-id @@ -13713,6 +14173,7 @@ paths: tags: - users.userTeamwork summary: Delete navigation property installedApps for users + description: The apps installed in the personal scope of this user. operationId: users.teamwork_DeleteInstalledApps parameters: - name: user-id @@ -13745,6 +14206,7 @@ paths: tags: - users.userTeamwork summary: Get chat from users + description: The chat between the user and Teams app. operationId: users.teamwork.installedApps_GetChat parameters: - name: user-id @@ -13833,6 +14295,7 @@ paths: tags: - users.userTeamwork summary: Get ref of chat from users + description: The chat between the user and Teams app. operationId: users.teamwork.installedApps_GetRefChat parameters: - name: user-id @@ -13884,6 +14347,7 @@ paths: tags: - users.userTeamwork summary: Update the ref of navigation property chat in users + description: The chat between the user and Teams app. operationId: users.teamwork.installedApps_SetRefChat parameters: - name: user-id @@ -13919,6 +14383,7 @@ paths: tags: - users.userTeamwork summary: Delete ref of navigation property chat for users + description: The chat between the user and Teams app. operationId: users.teamwork.installedApps_DeleteRefChat parameters: - name: user-id @@ -14000,7 +14465,7 @@ components: nullable: true teamsAppId: type: string - description: The id from the Teams App manifest. + description: The ID from the Teams app manifest. nullable: true version: type: string @@ -14234,10 +14699,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -14285,7 +14750,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true displayName: type: string @@ -14688,6 +15153,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -16351,7 +16817,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -17223,7 +17689,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -17236,7 +17702,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -17248,12 +17714,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -17262,11 +17728,11 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -17282,7 +17748,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -17300,7 +17766,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -17319,7 +17785,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -17338,11 +17804,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -17350,7 +17816,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -17397,7 +17863,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -17406,7 +17872,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredLanguage: type: string @@ -17434,15 +17900,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -17450,7 +17916,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -17686,6 +18152,10 @@ components: $ref: '#/components/schemas/microsoft.graph.presence' authentication: $ref: '#/components/schemas/microsoft.graph.authentication' + chats: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' joinedTeams: type: array items: @@ -19075,7 +19545,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -19281,7 +19751,7 @@ components: 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).' + description: 'Indicates whether 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 principalId: type: string @@ -19567,6 +20037,10 @@ components: type: string description: The mailFolder's display name. nullable: true + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. + nullable: true parentFolderId: type: string description: The unique identifier for the mailFolder's parent mailFolder. @@ -19972,6 +20446,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -19985,6 +20463,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -20024,6 +20506,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -20038,6 +20524,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -20058,6 +20548,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -21740,6 +22234,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState @@ -22329,6 +22826,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: @@ -23512,7 +24010,7 @@ components: 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -23527,6 +24025,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: diff --git a/openApiDocs/v1.0/Users.Actions.yml b/openApiDocs/v1.0/Users.Actions.yml index 747e0b9fba3..e86410028b0 100644 --- a/openApiDocs/v1.0/Users.Actions.yml +++ b/openApiDocs/v1.0/Users.Actions.yml @@ -7965,6 +7965,7 @@ paths: tags: - users.Actions summary: Invoke action commit + description: Commits a file of a given app. operationId: users.insights.shared.lastSharedMethod.microsoft.graph.mobileAppContentFile_commit parameters: - name: user-id @@ -8004,6 +8005,7 @@ paths: tags: - users.Actions summary: Invoke action renewUpload + description: Renews the SAS URI for an application file upload. operationId: users.insights.shared.lastSharedMethod.microsoft.graph.mobileAppContentFile_renewUpload parameters: - name: user-id @@ -8771,6 +8773,7 @@ paths: tags: - users.Actions summary: Invoke action commit + description: Commits a file of a given app. operationId: users.insights.shared.resource.microsoft.graph.mobileAppContentFile_commit parameters: - name: user-id @@ -8810,6 +8813,7 @@ paths: tags: - users.Actions summary: Invoke action renewUpload + description: Renews the SAS URI for an application file upload. operationId: users.insights.shared.resource.microsoft.graph.mobileAppContentFile_renewUpload parameters: - name: user-id @@ -9577,6 +9581,7 @@ paths: tags: - users.Actions summary: Invoke action commit + description: Commits a file of a given app. operationId: users.insights.trending.resource.microsoft.graph.mobileAppContentFile_commit parameters: - name: user-id @@ -9616,6 +9621,7 @@ paths: tags: - users.Actions summary: Invoke action renewUpload + description: Renews the SAS URI for an application file upload. operationId: users.insights.trending.resource.microsoft.graph.mobileAppContentFile_renewUpload parameters: - name: user-id @@ -10383,6 +10389,7 @@ paths: tags: - users.Actions summary: Invoke action commit + description: Commits a file of a given app. operationId: users.insights.used.resource.microsoft.graph.mobileAppContentFile_commit parameters: - name: user-id @@ -10422,6 +10429,7 @@ paths: tags: - users.Actions summary: Invoke action renewUpload + description: Renews the SAS URI for an application file upload. operationId: users.insights.used.resource.microsoft.graph.mobileAppContentFile_renewUpload parameters: - name: user-id @@ -11839,6 +11847,7 @@ paths: tags: - users.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: users.managedDevices_bypassActivationLock parameters: - name: user-id @@ -11866,6 +11875,7 @@ paths: tags: - users.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: users.managedDevices_cleanWindowsDevice parameters: - name: user-id @@ -11906,6 +11916,7 @@ paths: tags: - users.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: users.managedDevices_deleteUserFromSharedAppleDevice parameters: - name: user-id @@ -11946,6 +11957,7 @@ paths: tags: - users.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: users.managedDevices_disableLostMode parameters: - name: user-id @@ -11973,6 +11985,7 @@ paths: tags: - users.Actions summary: Invoke action locateDevice + description: Locate a device operationId: users.managedDevices_locateDevice parameters: - name: user-id @@ -12000,6 +12013,7 @@ paths: tags: - users.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: users.managedDevices_logoutSharedAppleDeviceActiveUser parameters: - name: user-id @@ -12027,6 +12041,7 @@ paths: tags: - users.Actions summary: Invoke action rebootNow + description: Reboot device operationId: users.managedDevices_rebootNow parameters: - name: user-id @@ -12054,6 +12069,7 @@ paths: tags: - users.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: users.managedDevices_recoverPasscode parameters: - name: user-id @@ -12081,6 +12097,7 @@ paths: tags: - users.Actions summary: Invoke action remoteLock + description: Remote lock operationId: users.managedDevices_remoteLock parameters: - name: user-id @@ -12108,6 +12125,7 @@ paths: tags: - users.Actions summary: Invoke action requestRemoteAssistance + description: Request remote assistance operationId: users.managedDevices_requestRemoteAssistance parameters: - name: user-id @@ -12135,6 +12153,7 @@ paths: tags: - users.Actions summary: Invoke action resetPasscode + description: Reset passcode operationId: users.managedDevices_resetPasscode parameters: - name: user-id @@ -12162,6 +12181,7 @@ paths: tags: - users.Actions summary: Invoke action retire + description: Retire a device operationId: users.managedDevices_retire parameters: - name: user-id @@ -12189,6 +12209,7 @@ paths: tags: - users.Actions summary: Invoke action shutDown + description: Shut down device operationId: users.managedDevices_shutDown parameters: - name: user-id @@ -12349,6 +12370,7 @@ paths: tags: - users.Actions summary: Invoke action wipe + description: Wipe a device operationId: users.managedDevices_wipe parameters: - name: user-id @@ -12383,6 +12405,10 @@ paths: macOsUnlockCode: type: string nullable: true + persistEsimDataPlan: + type: boolean + default: false + nullable: true additionalProperties: type: object required: true @@ -13236,6 +13262,7 @@ paths: tags: - users.Actions summary: Invoke action removeAllDevicesFromManagement + description: Retire all devices from management for this user operationId: users_removeAllDevicesFromManagement parameters: - name: user-id @@ -13410,6 +13437,7 @@ paths: tags: - users.Actions summary: Invoke action wipeManagedAppRegistrationsByDeviceTag + description: Issues a wipe operation on an app registration with specified device tag. operationId: users_wipeManagedAppRegistrationsByDeviceTag parameters: - name: user-id @@ -20230,11 +20258,11 @@ components: $ref: '#/components/schemas/microsoft.graph.printMargin' mediaSize: type: string - description: 'The media sizeto use when printing. Supports standard size names for ISO and ANSI media sizes, along with any custom sizes supported by the associated printer.' + description: The media sizeto use when printing. Supports standard size names for ISO and ANSI media sizes. Valid values are listed in the printerCapabilities topic. nullable: true mediaType: type: string - description: The default media (such as paper) type to print the document on. Valid values are described in the following table. + description: The default media (such as paper) type to print the document on. nullable: true multipageLayout: $ref: '#/components/schemas/microsoft.graph.printMultipageLayout' @@ -20454,6 +20482,10 @@ components: type: string description: The mailFolder's display name. nullable: true + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. + nullable: true parentFolderId: type: string description: The unique identifier for the mailFolder's parent mailFolder. @@ -20692,7 +20724,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -20705,7 +20737,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -20717,12 +20749,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -20731,11 +20763,11 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -20751,7 +20783,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -20769,7 +20801,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -20788,7 +20820,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -20807,11 +20839,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -20819,7 +20851,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -20866,7 +20898,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -20875,7 +20907,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredLanguage: type: string @@ -20903,15 +20935,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -20919,7 +20951,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -21155,6 +21187,10 @@ components: $ref: '#/components/schemas/microsoft.graph.presence' authentication: $ref: '#/components/schemas/microsoft.graph.authentication' + chats: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' joinedTeams: type: array items: @@ -21448,6 +21484,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: @@ -21543,10 +21580,10 @@ components: properties: name: type: string - description: Name for this key-value pair + description: 'Name for this key-value pair. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult.' value: type: string - description: Value for this key-value pair + description: 'Value for this key-value pair. Possible result values are 0 (when the validation check passed), 1 (when the validation check failed), or 2 (when the validation check is a warning).' nullable: true additionalProperties: type: object @@ -22051,27 +22088,21 @@ components: - unknownFutureValue type: string microsoft.graph.userIdentity: - title: userIdentity - type: object - properties: - displayName: - type: string - description: The identity's display name. Note that this may not always be available or up-to-date. - nullable: true - id: - type: string - description: Unique identifier for the identity. - nullable: true - 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 + 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.printDocument: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -22457,7 +22488,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -22731,7 +22762,7 @@ components: 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).' + description: 'Indicates whether 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 principalId: type: string @@ -23354,6 +23385,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -23367,6 +23402,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -23406,6 +23445,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -23420,6 +23463,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -23440,6 +23487,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -23759,6 +23810,51 @@ components: $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 + 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 + topic: + type: string + description: (Optional) Subject or topic for the chat. Only available for group chats. + 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.team: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -23777,7 +23873,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true displayName: type: string @@ -24306,6 +24402,20 @@ components: - exception - seriesMaster type: string + 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.printTaskStatus: title: printTaskStatus type: object @@ -24850,20 +24960,6 @@ 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.physicalAddress: title: physicalAddress type: object @@ -25525,6 +25621,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState @@ -26438,131 +26537,291 @@ components: $ref: '#/components/schemas/microsoft.graph.device' additionalProperties: type: object - microsoft.graph.teamFunSettings: - title: teamFunSettings - type: object - properties: - allowCustomMemes: - type: boolean - description: 'If set to true, enables users to include custom memes.' - nullable: true - allowGiphy: - type: boolean - description: 'If set to true, enables Giphy use.' - nullable: true - allowStickersAndMemes: - type: boolean - description: 'If set to true, enables users to include stickers and memes.' - nullable: true - giphyContentRating: - $ref: '#/components/schemas/microsoft.graph.giphyRatingType' - additionalProperties: - type: object - microsoft.graph.teamGuestSettings: - title: teamGuestSettings - type: object - properties: - allowCreateUpdateChannels: - type: boolean - description: 'If set to true, guests can add and update channels.' - nullable: true - allowDeleteChannels: - type: boolean - description: 'If set to true, guests can delete channels.' - nullable: true - additionalProperties: - type: object - microsoft.graph.teamMemberSettings: - title: teamMemberSettings - type: object - properties: - allowAddRemoveApps: - type: boolean - description: 'If set to true, members can add and remove apps.' - nullable: true - allowCreatePrivateChannels: - type: boolean - description: 'If set to true, members can add and update private channels.' - 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 + microsoft.graph.chatType: + title: chatType enum: - - private - - public - - hiddenMembership + - oneOnOne + - group + - meeting - unknownFutureValue type: string - microsoft.graph.schedule: + microsoft.graph.teamsAppInstallation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: schedule + - title: teamsAppInstallation 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. + teamsApp: + $ref: '#/components/schemas/microsoft.graph.teamsApp' + teamsAppDefinition: + $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' + additionalProperties: + type: object + microsoft.graph.conversationMember: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: conversationMember + type: object + properties: + displayName: + type: string + description: The display name of the user. nullable: true - openShiftsEnabled: + roles: + type: array + items: + type: string + nullable: true + description: The roles for that user. + visibleHistoryStartDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. + format: date-time + nullable: true + 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 + 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: 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. 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.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.teamFunSettings: + title: teamFunSettings + type: object + properties: + allowCustomMemes: + type: boolean + description: 'If set to true, enables users to include custom memes.' + nullable: true + allowGiphy: + type: boolean + description: 'If set to true, enables Giphy use.' + nullable: true + allowStickersAndMemes: + type: boolean + description: 'If set to true, enables users to include stickers and memes.' + nullable: true + giphyContentRating: + $ref: '#/components/schemas/microsoft.graph.giphyRatingType' + additionalProperties: + type: object + microsoft.graph.teamGuestSettings: + title: teamGuestSettings + type: object + properties: + allowCreateUpdateChannels: + type: boolean + description: 'If set to true, guests can add and update channels.' + nullable: true + allowDeleteChannels: + type: boolean + description: 'If set to true, guests can delete channels.' + nullable: true + additionalProperties: + type: object + microsoft.graph.teamMemberSettings: + title: teamMemberSettings + type: object + properties: + allowAddRemoveApps: + type: boolean + description: 'If set to true, members can add and remove apps.' + nullable: true + allowCreatePrivateChannels: + type: boolean + description: 'If set to true, members can add and update private channels.' + 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 @@ -26885,6 +27144,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -26968,42 +27228,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.teamsAppInstallation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsAppInstallation - type: object - properties: - teamsApp: - $ref: '#/components/schemas/microsoft.graph.teamsApp' - teamsAppDefinition: - $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' - additionalProperties: - type: object - microsoft.graph.conversationMember: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: conversationMember - type: object - properties: - displayName: - type: string - description: The display name of the user. - nullable: true - roles: - type: array - items: - type: string - nullable: true - description: The roles for that user. - visibleHistoryStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. - format: date-time - nullable: true - additionalProperties: - type: object microsoft.graph.teamsAsyncOperation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -29245,7 +29469,7 @@ components: 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -29260,6 +29484,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -29275,6 +29500,210 @@ components: - weak - unknown type: string + 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: + 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 + description: Short description of the application. + 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.chatMessageAttachment: + title: chatMessageAttachment + type: object + properties: + content: + type: string + description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' + nullable: true + contentType: + type: string + description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' + nullable: true + contentUrl: + type: string + description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' + nullable: true + id: + type: string + description: Read-only. Unique id of the attachment. + nullable: true + name: + type: string + description: Name of the attachment. + nullable: true + thumbnailUrl: + type: string + description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' + 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: + - normal + - high + - urgent + - unknownFutureValue + type: string + microsoft.graph.chatMessageMention: + title: chatMessageMention + type: object + properties: + id: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' + format: int32 + nullable: true + mentioned: + $ref: '#/components/schemas/microsoft.graph.identitySet' + mentionText: + type: string + description: 'String used to represent the mention. For example, a user''s display name, a team name.' + nullable: true + additionalProperties: + type: object + microsoft.graph.chatMessageType: + title: chatMessageType + enum: + - message + - chatEvent + - typing + - unknownFutureValue + type: string + microsoft.graph.chatMessagePolicyViolation: + title: chatMessagePolicyViolation + type: object + properties: + dlpAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' + justificationText: + type: string + description: Justification text provided by the sender of the message when overriding a policy violation. + nullable: true + policyTip: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' + userAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' + verdictDetails: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' + additionalProperties: + type: object + microsoft.graph.chatMessageReaction: + title: chatMessageReaction + 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: 'The Timestamp type represents date and time information using ISO 8601 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 + description: 'Supported values are like, angry, sad, laugh, heart, surprised.' + user: + $ref: '#/components/schemas/microsoft.graph.identitySet' + additionalProperties: + type: object + microsoft.graph.chatMessageHostedContent: + allOf: + - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' + - title: chatMessageHostedContent + type: object + additionalProperties: + type: object + 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.giphyRatingType: title: giphyRatingType enum: @@ -29403,174 +29832,58 @@ components: 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' - 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 - type: string - 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 - 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: 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: + 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: 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. + description: 'The Timestamp type represents date and time information using ISO 8601 format and 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: + 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: 'Read only. Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed.' + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' 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: + timeOffReasonId: type: string - description: Read-only. Link to the message in Microsoft Teams. + description: The reason for the time off. 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: + microsoft.graph.timeOff: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsTab + - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' + - title: timeOff type: object properties: - configuration: - $ref: '#/components/schemas/microsoft.graph.teamsTabConfiguration' - displayName: - type: string - description: Name of the tab. - nullable: true - webUrl: + draftTimeOff: + $ref: '#/components/schemas/microsoft.graph.timeOffItem' + sharedTimeOff: + $ref: '#/components/schemas/microsoft.graph.timeOffItem' + userId: type: string - description: Deep link URL of the tab instance. Read only. + description: ID of the user assigned to the timeOff. Required. nullable: true - teamsApp: - $ref: '#/components/schemas/microsoft.graph.teamsApp' additionalProperties: type: object + microsoft.graph.channelMembershipType: + title: channelMembershipType + enum: + - standard + - private + - unknownFutureValue + type: string microsoft.graph.assignedLabel: title: assignedLabel type: object @@ -29614,7 +29927,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -29757,68 +30070,6 @@ components: description: Read-only. Nullable. Returns the plannerPlans owned by the group. 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: - 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 - description: Short description of the application. - 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 @@ -29853,51 +30104,6 @@ components: - failed - unknownFutureValue type: string - 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 - 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 - topic: - type: string - description: (Optional) Subject or topic for the chat. Only available for group chats. - 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.wellknownListName: title: wellknownListName enum: @@ -30500,6 +30706,89 @@ components: nullable: true additionalProperties: type: object + 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.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.scheduleChangeRequest: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' @@ -30607,148 +30896,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.chatMessageAttachment: - title: chatMessageAttachment - type: object - properties: - content: - type: string - description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' - nullable: true - contentType: - type: string - description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' - nullable: true - contentUrl: - type: string - description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' - nullable: true - id: - type: string - description: Read-only. Unique id of the attachment. - nullable: true - name: - type: string - description: Name of the attachment. - nullable: true - thumbnailUrl: - type: string - description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' - 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: - - normal - - high - - urgent - - unknownFutureValue - type: string - microsoft.graph.chatMessageMention: - title: chatMessageMention - type: object - properties: - id: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' - format: int32 - nullable: true - mentioned: - $ref: '#/components/schemas/microsoft.graph.identitySet' - mentionText: - type: string - description: 'String used to represent the mention. For example, a user''s display name, a team name.' - nullable: true - additionalProperties: - type: object - microsoft.graph.chatMessageType: - title: chatMessageType - enum: - - message - - chatEvent - - typing - - unknownFutureValue - type: string - microsoft.graph.chatMessagePolicyViolation: - title: chatMessagePolicyViolation - type: object - properties: - dlpAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' - justificationText: - type: string - description: Justification text provided by the sender of the message when overriding a policy violation. - nullable: true - policyTip: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' - userAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' - verdictDetails: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' - additionalProperties: - type: object - microsoft.graph.chatMessageReaction: - title: chatMessageReaction - 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: 'The Timestamp type represents date and time information using ISO 8601 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 - description: 'Supported values are like, angry, sad, laugh, heart, surprised.' - user: - $ref: '#/components/schemas/microsoft.graph.identitySet' - additionalProperties: - type: object - microsoft.graph.chatMessageHostedContent: - allOf: - - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' - - title: chatMessageHostedContent - type: object - additionalProperties: - type: object - 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.settingValue: title: settingValue type: object @@ -30820,37 +30967,6 @@ components: description: The collection of single-value extended properties defined for the post. Read-only. Nullable. additionalProperties: type: object - 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.chatType: - title: chatType - enum: - - oneOnOne - - group - - meeting - - unknownFutureValue - type: string microsoft.graph.taskStatus: title: taskStatus enum: @@ -31084,66 +31200,6 @@ components: $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.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 f67b35d9aca..f92670001fc 100644 --- a/openApiDocs/v1.0/Users.Functions.yml +++ b/openApiDocs/v1.0/Users.Functions.yml @@ -4967,6 +4967,7 @@ paths: tags: - users.Functions summary: Invoke function getManagedAppDiagnosticStatuses + description: Gets diagnostics validation status for a given user. operationId: users_getManagedAppDiagnosticStatuses parameters: - name: user-id @@ -4993,6 +4994,7 @@ paths: tags: - users.Functions summary: Invoke function getManagedAppPolicies + description: Gets app restrictions for a given user. operationId: users_getManagedAppPolicies parameters: - name: user-id @@ -6214,6 +6216,10 @@ components: type: string description: The mailFolder's display name. nullable: true + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. + nullable: true parentFolderId: type: string description: The unique identifier for the mailFolder's parent mailFolder. @@ -6633,7 +6639,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -6646,7 +6652,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -6658,12 +6664,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -6672,11 +6678,11 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -6692,7 +6698,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -6710,7 +6716,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -6729,7 +6735,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -6748,11 +6754,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -6760,7 +6766,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -6807,7 +6813,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -6816,7 +6822,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredLanguage: type: string @@ -6844,15 +6850,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -6860,7 +6866,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -7096,6 +7102,10 @@ components: $ref: '#/components/schemas/microsoft.graph.presence' authentication: $ref: '#/components/schemas/microsoft.graph.authentication' + chats: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' joinedTeams: type: array items: @@ -7925,7 +7935,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -8199,7 +8209,7 @@ components: 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).' + description: 'Indicates whether 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 principalId: type: string @@ -8602,6 +8612,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -8615,6 +8629,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -8654,6 +8672,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -8668,6 +8690,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -8688,6 +8714,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -9003,6 +9033,51 @@ components: $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 + 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 + topic: + type: string + description: (Optional) Subject or topic for the chat. Only available for group chats. + 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.team: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -9021,7 +9096,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true displayName: type: string @@ -10517,6 +10592,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState @@ -11324,6 +11402,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: @@ -11419,6 +11498,166 @@ components: $ref: '#/components/schemas/microsoft.graph.device' additionalProperties: type: object + microsoft.graph.chatType: + title: chatType + enum: + - oneOnOne + - group + - meeting + - unknownFutureValue + type: string + microsoft.graph.teamsAppInstallation: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamsAppInstallation + type: object + properties: + teamsApp: + $ref: '#/components/schemas/microsoft.graph.teamsApp' + teamsAppDefinition: + $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' + additionalProperties: + type: object + microsoft.graph.conversationMember: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: conversationMember + type: object + properties: + displayName: + type: string + description: The display name of the user. + nullable: true + roles: + type: array + items: + type: string + nullable: true + description: The roles for that user. + visibleHistoryStartDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. + format: date-time + nullable: true + 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 + 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: 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. 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.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.teamFunSettings: title: teamFunSettings type: object @@ -11866,6 +12105,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -11949,42 +12189,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.teamsAppInstallation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsAppInstallation - type: object - properties: - teamsApp: - $ref: '#/components/schemas/microsoft.graph.teamsApp' - teamsAppDefinition: - $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' - additionalProperties: - type: object - microsoft.graph.conversationMember: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: conversationMember - type: object - properties: - displayName: - type: string - description: The display name of the user. - nullable: true - roles: - type: array - items: - type: string - nullable: true - description: The roles for that user. - visibleHistoryStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. - format: date-time - nullable: true - additionalProperties: - type: object microsoft.graph.teamsAsyncOperation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -14096,7 +14300,7 @@ components: 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -14111,6 +14315,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -14126,6 +14331,210 @@ components: - weak - unknown type: string + 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: + 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 + description: Short description of the application. + 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.chatMessageAttachment: + title: chatMessageAttachment + type: object + properties: + content: + type: string + description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' + nullable: true + contentType: + type: string + description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' + nullable: true + contentUrl: + type: string + description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' + nullable: true + id: + type: string + description: Read-only. Unique id of the attachment. + nullable: true + name: + type: string + description: Name of the attachment. + nullable: true + thumbnailUrl: + type: string + description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' + 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: + - normal + - high + - urgent + - unknownFutureValue + type: string + microsoft.graph.chatMessageMention: + title: chatMessageMention + type: object + properties: + id: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' + format: int32 + nullable: true + mentioned: + $ref: '#/components/schemas/microsoft.graph.identitySet' + mentionText: + type: string + description: 'String used to represent the mention. For example, a user''s display name, a team name.' + nullable: true + additionalProperties: + type: object + microsoft.graph.chatMessageType: + title: chatMessageType + enum: + - message + - chatEvent + - typing + - unknownFutureValue + type: string + microsoft.graph.chatMessagePolicyViolation: + title: chatMessagePolicyViolation + type: object + properties: + dlpAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' + justificationText: + type: string + description: Justification text provided by the sender of the message when overriding a policy violation. + nullable: true + policyTip: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' + userAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' + verdictDetails: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' + additionalProperties: + type: object + microsoft.graph.chatMessageReaction: + title: chatMessageReaction + 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: 'The Timestamp type represents date and time information using ISO 8601 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 + description: 'Supported values are like, angry, sad, laugh, heart, surprised.' + user: + $ref: '#/components/schemas/microsoft.graph.identitySet' + additionalProperties: + type: object + microsoft.graph.chatMessageHostedContent: + allOf: + - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' + - title: chatMessageHostedContent + type: object + additionalProperties: + type: object + 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.giphyRatingType: title: giphyRatingType enum: @@ -14314,122 +14723,6 @@ components: - private - unknownFutureValue type: string - 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 - 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: 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. 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.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.assignedLabel: title: assignedLabel type: object @@ -14473,7 +14766,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -14616,68 +14909,6 @@ components: description: Read-only. Nullable. Returns the plannerPlans owned by the group. 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: - 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 - description: Short description of the application. - 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 @@ -14712,51 +14943,6 @@ components: - failed - unknownFutureValue type: string - 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 - 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 - topic: - type: string - description: (Optional) Subject or topic for the chat. Only available for group chats. - 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 odata.error.detail: required: - code @@ -15305,6 +15491,89 @@ components: nullable: true additionalProperties: type: object + 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.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.scheduleChangeRequest: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' @@ -15412,148 +15681,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.chatMessageAttachment: - title: chatMessageAttachment - type: object - properties: - content: - type: string - description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' - nullable: true - contentType: - type: string - description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' - nullable: true - contentUrl: - type: string - description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' - nullable: true - id: - type: string - description: Read-only. Unique id of the attachment. - nullable: true - name: - type: string - description: Name of the attachment. - nullable: true - thumbnailUrl: - type: string - description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' - 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: - - normal - - high - - urgent - - unknownFutureValue - type: string - microsoft.graph.chatMessageMention: - title: chatMessageMention - type: object - properties: - id: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' - format: int32 - nullable: true - mentioned: - $ref: '#/components/schemas/microsoft.graph.identitySet' - mentionText: - type: string - description: 'String used to represent the mention. For example, a user''s display name, a team name.' - nullable: true - additionalProperties: - type: object - microsoft.graph.chatMessageType: - title: chatMessageType - enum: - - message - - chatEvent - - typing - - unknownFutureValue - type: string - microsoft.graph.chatMessagePolicyViolation: - title: chatMessagePolicyViolation - type: object - properties: - dlpAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' - justificationText: - type: string - description: Justification text provided by the sender of the message when overriding a policy violation. - nullable: true - policyTip: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' - userAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' - verdictDetails: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' - additionalProperties: - type: object - microsoft.graph.chatMessageReaction: - title: chatMessageReaction - 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: 'The Timestamp type represents date and time information using ISO 8601 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 - description: 'Supported values are like, angry, sad, laugh, heart, surprised.' - user: - $ref: '#/components/schemas/microsoft.graph.identitySet' - additionalProperties: - type: object - microsoft.graph.chatMessageHostedContent: - allOf: - - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' - - title: chatMessageHostedContent - type: object - additionalProperties: - type: object - 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.settingValue: title: settingValue type: object @@ -15625,37 +15752,6 @@ components: description: The collection of single-value extended properties defined for the post. Read-only. Nullable. additionalProperties: type: object - 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.chatType: - title: chatType - enum: - - oneOnOne - - group - - meeting - - unknownFutureValue - type: string microsoft.graph.workbookChartAxisFormat: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -15871,66 +15967,6 @@ components: $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.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 ba6f711b39d..609f349aa28 100644 --- a/openApiDocs/v1.0/Users.yml +++ b/openApiDocs/v1.0/Users.yml @@ -15,10 +15,9 @@ paths: parameters: - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -304,6 +303,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -361,6 +361,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -415,6 +416,7 @@ paths: tags: - users.user summary: Get entity from users by key + description: Represents an Azure Active Directory user object. operationId: users.user_GetUser parameters: - name: user-id @@ -426,10 +428,9 @@ paths: x-ms-docs-key-type: user - name: ConsistencyLevel in: header - description: Indicates the requested consistency level. + description: 'Indicates the requested consistency level. Documentation URL: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/' schema: type: string - example: https://developer.microsoft.com/en-us/office/blogs/microsoft-graph-advanced-queries-for-directory-objects-are-now-generally-available/ examples: example-1: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. @@ -557,6 +558,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -614,6 +616,7 @@ paths: - onlineMeetings - presence - authentication + - chats - joinedTeams - teamwork - todo @@ -794,6 +797,10 @@ paths: operationId: users.GetAuthentication parameters: user-id: $request.path.user-id + chats: + operationId: users.ListChats + parameters: + user-id: $request.path.user-id joinedTeams: operationId: users.ListJoinedTeams parameters: @@ -813,6 +820,7 @@ paths: tags: - users.user summary: Update entity in users + description: Represents an Azure Active Directory user object. operationId: users.user_UpdateUser parameters: - name: user-id @@ -839,6 +847,7 @@ paths: tags: - users.user summary: Delete entity from users + description: Represents an Azure Active Directory user object. operationId: users.user_DeleteUser parameters: - name: user-id @@ -864,6 +873,7 @@ paths: tags: - users.directoryObject summary: Get createdObjects from users + description: Directory objects that were created by the user. Read-only. Nullable. operationId: users_ListCreatedObjects parameters: - name: user-id @@ -946,6 +956,7 @@ paths: tags: - users.directoryObject summary: Get ref of createdObjects from users + description: Directory objects that were created by the user. Read-only. Nullable. operationId: users_ListRefCreatedObjects parameters: - name: user-id @@ -1002,6 +1013,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to createdObjects for users + description: Directory objects that were created by the user. Read-only. Nullable. operationId: users_CreateRefCreatedObjects parameters: - name: user-id @@ -1037,6 +1049,7 @@ paths: tags: - users.directoryObject summary: Get directReports from users + description: The users and contacts that report to the user. (The users and contacts that have their manager property set to this user.) Read-only. Nullable. operationId: users_ListDirectReports parameters: - name: user-id @@ -1119,6 +1132,7 @@ paths: tags: - users.directoryObject summary: Get ref of directReports from users + description: The users and contacts that report to the user. (The users and contacts that have their manager property set to this user.) Read-only. Nullable. operationId: users_ListRefDirectReports parameters: - name: user-id @@ -1175,6 +1189,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to directReports for users + description: The users and contacts that report to the user. (The users and contacts that have their manager property set to this user.) Read-only. Nullable. operationId: users_CreateRefDirectReports parameters: - name: user-id @@ -1210,6 +1225,7 @@ paths: tags: - users.extension summary: Get extensions from users + description: The collection of open extensions defined for the user. Nullable. operationId: users_ListExtensions parameters: - name: user-id @@ -1288,6 +1304,7 @@ paths: tags: - users.extension summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the user. Nullable. operationId: users_CreateExtensions parameters: - name: user-id @@ -1319,6 +1336,7 @@ paths: tags: - users.extension summary: Get extensions from users + description: The collection of open extensions defined for the user. Nullable. operationId: users_GetExtensions parameters: - name: user-id @@ -1373,6 +1391,7 @@ paths: tags: - users.extension summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the user. Nullable. operationId: users_UpdateExtensions parameters: - name: user-id @@ -1406,6 +1425,7 @@ paths: tags: - users.extension summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the user. Nullable. operationId: users_DeleteExtensions parameters: - name: user-id @@ -1438,6 +1458,7 @@ paths: tags: - users.licenseDetails summary: Get licenseDetails from users + description: A collection of this user's license details. Read-only. operationId: users_ListLicenseDetails parameters: - name: user-id @@ -1525,6 +1546,7 @@ paths: tags: - users.licenseDetails summary: Create new navigation property to licenseDetails for users + description: A collection of this user's license details. Read-only. operationId: users_CreateLicenseDetails parameters: - name: user-id @@ -1556,6 +1578,7 @@ paths: tags: - users.licenseDetails summary: Get licenseDetails from users + description: A collection of this user's license details. Read-only. operationId: users_GetLicenseDetails parameters: - name: user-id @@ -1613,6 +1636,7 @@ paths: tags: - users.licenseDetails summary: Update the navigation property licenseDetails in users + description: A collection of this user's license details. Read-only. operationId: users_UpdateLicenseDetails parameters: - name: user-id @@ -1646,6 +1670,7 @@ paths: tags: - users.licenseDetails summary: Delete navigation property licenseDetails for users + description: A collection of this user's license details. Read-only. operationId: users_DeleteLicenseDetails parameters: - name: user-id @@ -1678,6 +1703,7 @@ paths: tags: - users.directoryObject summary: Get manager from users + description: 'The user or contact that is this user''s manager. Read-only. (HTTP Methods: GET, PUT, DELETE.)' operationId: users_GetManager parameters: - name: user-id @@ -1727,6 +1753,7 @@ paths: tags: - users.directoryObject summary: Get ref of manager from users + description: 'The user or contact that is this user''s manager. Read-only. (HTTP Methods: GET, PUT, DELETE.)' operationId: users_GetRefManager parameters: - name: user-id @@ -1750,6 +1777,7 @@ paths: tags: - users.directoryObject summary: Update the ref of navigation property manager in users + description: 'The user or contact that is this user''s manager. Read-only. (HTTP Methods: GET, PUT, DELETE.)' operationId: users_SetRefManager parameters: - name: user-id @@ -1778,6 +1806,7 @@ paths: tags: - users.directoryObject summary: Delete ref of navigation property manager for users + description: 'The user or contact that is this user''s manager. Read-only. (HTTP Methods: GET, PUT, DELETE.)' operationId: users_DeleteRefManager parameters: - name: user-id @@ -1803,6 +1832,7 @@ paths: tags: - users.directoryObject summary: Get memberOf from users + description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.' operationId: users_ListMemberOf parameters: - name: user-id @@ -1885,6 +1915,7 @@ paths: tags: - users.directoryObject summary: Get ref of memberOf from users + description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.' operationId: users_ListRefMemberOf parameters: - name: user-id @@ -1941,6 +1972,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to memberOf for users + description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.' operationId: users_CreateRefMemberOf parameters: - name: user-id @@ -2169,6 +2201,7 @@ paths: tags: - users.outlookUser summary: Get outlook from users + description: Selective Outlook services available to the user. Read-only. Nullable. operationId: users_GetOutlook parameters: - name: user-id @@ -2223,6 +2256,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property outlook in users + description: Selective Outlook services available to the user. Read-only. Nullable. operationId: users_UpdateOutlook parameters: - name: user-id @@ -2249,6 +2283,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property outlook for users + description: Selective Outlook services available to the user. Read-only. Nullable. operationId: users_DeleteOutlook parameters: - name: user-id @@ -2274,6 +2309,7 @@ paths: tags: - users.outlookUser summary: Get masterCategories from users + description: A list of categories defined for the user. operationId: users.outlook_ListMasterCategories parameters: - name: user-id @@ -2358,6 +2394,7 @@ paths: tags: - users.outlookUser summary: Create new navigation property to masterCategories for users + description: A list of categories defined for the user. operationId: users.outlook_CreateMasterCategories parameters: - name: user-id @@ -2389,6 +2426,7 @@ paths: tags: - users.outlookUser summary: Get masterCategories from users + description: A list of categories defined for the user. operationId: users.outlook_GetMasterCategories parameters: - name: user-id @@ -2445,6 +2483,7 @@ paths: tags: - users.outlookUser summary: Update the navigation property masterCategories in users + description: A list of categories defined for the user. operationId: users.outlook_UpdateMasterCategories parameters: - name: user-id @@ -2478,6 +2517,7 @@ paths: tags: - users.outlookUser summary: Delete navigation property masterCategories for users + description: A list of categories defined for the user. operationId: users.outlook_DeleteMasterCategories parameters: - name: user-id @@ -2510,6 +2550,7 @@ paths: tags: - users.directoryObject summary: Get ownedDevices from users + description: Devices that are owned by the user. Read-only. Nullable. operationId: users_ListOwnedDevices parameters: - name: user-id @@ -2592,6 +2633,7 @@ paths: tags: - users.directoryObject summary: Get ref of ownedDevices from users + description: Devices that are owned by the user. Read-only. Nullable. operationId: users_ListRefOwnedDevices parameters: - name: user-id @@ -2648,6 +2690,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to ownedDevices for users + description: Devices that are owned by the user. Read-only. Nullable. operationId: users_CreateRefOwnedDevices parameters: - name: user-id @@ -2683,6 +2726,7 @@ paths: tags: - users.directoryObject summary: Get ownedObjects from users + description: Directory objects that are owned by the user. Read-only. Nullable. operationId: users_ListOwnedObjects parameters: - name: user-id @@ -2765,6 +2809,7 @@ paths: tags: - users.directoryObject summary: Get ref of ownedObjects from users + description: Directory objects that are owned by the user. Read-only. Nullable. operationId: users_ListRefOwnedObjects parameters: - name: user-id @@ -2821,6 +2866,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to ownedObjects for users + description: Directory objects that are owned by the user. Read-only. Nullable. operationId: users_CreateRefOwnedObjects parameters: - name: user-id @@ -2856,6 +2902,7 @@ paths: tags: - users.profilePhoto summary: Get photo from users + description: The user's profile photo. Read-only. operationId: users_GetPhoto parameters: - name: user-id @@ -2905,6 +2952,7 @@ paths: tags: - users.profilePhoto summary: Update the navigation property photo in users + description: The user's profile photo. Read-only. operationId: users_UpdatePhoto parameters: - name: user-id @@ -2931,6 +2979,7 @@ paths: tags: - users.profilePhoto summary: Delete navigation property photo for users + description: The user's profile photo. Read-only. operationId: users_DeletePhoto parameters: - name: user-id @@ -2956,6 +3005,7 @@ paths: tags: - users.profilePhoto summary: Get media content for the navigation property photo from users + description: The user's profile photo. Read-only. operationId: users_GetPhotoContent parameters: - name: user-id @@ -2980,6 +3030,7 @@ paths: tags: - users.profilePhoto summary: Update media content for the navigation property photo in users + description: The user's profile photo. Read-only. operationId: users_SetPhotoContent parameters: - name: user-id @@ -3008,6 +3059,7 @@ paths: tags: - users.profilePhoto summary: Get photos from users + description: Read-only. Nullable. operationId: users_ListPhotos parameters: - name: user-id @@ -3092,6 +3144,7 @@ paths: tags: - users.profilePhoto summary: Create new navigation property to photos for users + description: Read-only. Nullable. operationId: users_CreatePhotos parameters: - name: user-id @@ -3123,6 +3176,7 @@ paths: tags: - users.profilePhoto summary: Get photos from users + description: Read-only. Nullable. operationId: users_GetPhotos parameters: - name: user-id @@ -3179,6 +3233,7 @@ paths: tags: - users.profilePhoto summary: Update the navigation property photos in users + description: Read-only. Nullable. operationId: users_UpdatePhotos parameters: - name: user-id @@ -3212,6 +3267,7 @@ paths: tags: - users.profilePhoto summary: Delete navigation property photos for users + description: Read-only. Nullable. operationId: users_DeletePhotos parameters: - name: user-id @@ -3310,6 +3366,7 @@ paths: tags: - users.directoryObject summary: Get registeredDevices from users + description: Devices that are registered for the user. Read-only. Nullable. operationId: users_ListRegisteredDevices parameters: - name: user-id @@ -3392,6 +3449,7 @@ paths: tags: - users.directoryObject summary: Get ref of registeredDevices from users + description: Devices that are registered for the user. Read-only. Nullable. operationId: users_ListRefRegisteredDevices parameters: - name: user-id @@ -3448,6 +3506,7 @@ paths: tags: - users.directoryObject summary: Create new navigation property ref to registeredDevices for users + description: Devices that are registered for the user. Read-only. Nullable. operationId: users_CreateRefRegisteredDevices parameters: - name: user-id @@ -3483,6 +3542,7 @@ paths: tags: - users.userSettings summary: Get settings from users + description: Read-only. Nullable. operationId: users_GetSettings parameters: - name: user-id @@ -3539,6 +3599,7 @@ paths: tags: - users.userSettings summary: Update the navigation property settings in users + description: Read-only. Nullable. operationId: users_UpdateSettings parameters: - name: user-id @@ -3565,6 +3626,7 @@ paths: tags: - users.userSettings summary: Delete navigation property settings for users + description: Read-only. Nullable. operationId: users_DeleteSettings parameters: - name: user-id @@ -3590,6 +3652,7 @@ paths: tags: - users.userSettings summary: Get shiftPreferences from users + description: The shift preferences for the user. operationId: users.settings_GetShiftPreferences parameters: - name: user-id @@ -3641,6 +3704,7 @@ paths: tags: - users.userSettings summary: Update the navigation property shiftPreferences in users + description: The shift preferences for the user. operationId: users.settings_UpdateShiftPreferences parameters: - name: user-id @@ -3667,6 +3731,7 @@ paths: tags: - users.userSettings summary: Delete navigation property shiftPreferences for users + description: The shift preferences for the user. operationId: users.settings_DeleteShiftPreferences parameters: - name: user-id @@ -3692,6 +3757,7 @@ paths: tags: - users.todo summary: Get todo from users + description: Represents the To Do services available to a user. operationId: users_GetTodo parameters: - name: user-id @@ -3746,6 +3812,7 @@ paths: tags: - users.todo summary: Update the navigation property todo in users + description: Represents the To Do services available to a user. operationId: users_UpdateTodo parameters: - name: user-id @@ -3772,6 +3839,7 @@ paths: tags: - users.todo summary: Delete navigation property todo for users + description: Represents the To Do services available to a user. operationId: users_DeleteTodo parameters: - name: user-id @@ -3797,6 +3865,7 @@ paths: tags: - users.todo summary: Get lists from users + description: The task lists in the users mailbox. operationId: users.todo_ListLists parameters: - name: user-id @@ -3891,6 +3960,7 @@ paths: tags: - users.todo summary: Create new navigation property to lists for users + description: The task lists in the users mailbox. operationId: users.todo_CreateLists parameters: - name: user-id @@ -3922,6 +3992,7 @@ paths: tags: - users.todo summary: Get lists from users + description: The task lists in the users mailbox. operationId: users.todo_GetLists parameters: - name: user-id @@ -3995,6 +4066,7 @@ paths: tags: - users.todo summary: Update the navigation property lists in users + description: The task lists in the users mailbox. operationId: users.todo_UpdateLists parameters: - name: user-id @@ -4028,6 +4100,7 @@ paths: tags: - users.todo summary: Delete navigation property lists for users + description: The task lists in the users mailbox. operationId: users.todo_DeleteLists parameters: - name: user-id @@ -4060,6 +4133,7 @@ paths: tags: - users.todo summary: Get extensions from users + description: The collection of open extensions defined for the task list. Nullable. operationId: users.todo.lists_ListExtensions parameters: - name: user-id @@ -4145,6 +4219,7 @@ paths: tags: - users.todo summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the task list. Nullable. operationId: users.todo.lists_CreateExtensions parameters: - name: user-id @@ -4183,6 +4258,7 @@ paths: tags: - users.todo summary: Get extensions from users + description: The collection of open extensions defined for the task list. Nullable. operationId: users.todo.lists_GetExtensions parameters: - name: user-id @@ -4244,6 +4320,7 @@ paths: tags: - users.todo summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the task list. Nullable. operationId: users.todo.lists_UpdateExtensions parameters: - name: user-id @@ -4284,6 +4361,7 @@ paths: tags: - users.todo summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the task list. Nullable. operationId: users.todo.lists_DeleteExtensions parameters: - name: user-id @@ -4323,6 +4401,7 @@ paths: tags: - users.todo summary: Get tasks from users + description: The tasks in this task list. Read-only. Nullable. operationId: users.todo.lists_ListTasks parameters: - name: user-id @@ -4448,6 +4527,7 @@ paths: tags: - users.todo summary: Create new navigation property to tasks for users + description: The tasks in this task list. Read-only. Nullable. operationId: users.todo.lists_CreateTasks parameters: - name: user-id @@ -4486,6 +4566,7 @@ paths: tags: - users.todo summary: Get tasks from users + description: The tasks in this task list. Read-only. Nullable. operationId: users.todo.lists_GetTasks parameters: - name: user-id @@ -4576,6 +4657,7 @@ paths: tags: - users.todo summary: Update the navigation property tasks in users + description: The tasks in this task list. Read-only. Nullable. operationId: users.todo.lists_UpdateTasks parameters: - name: user-id @@ -4616,6 +4698,7 @@ paths: tags: - users.todo summary: Delete navigation property tasks for users + description: The tasks in this task list. Read-only. Nullable. operationId: users.todo.lists_DeleteTasks parameters: - name: user-id @@ -4655,6 +4738,7 @@ paths: tags: - users.todo summary: Get extensions from users + description: The collection of open extensions defined for the task. Nullable. operationId: users.todo.lists.tasks_ListExtensions parameters: - name: user-id @@ -4747,6 +4831,7 @@ paths: tags: - users.todo summary: Create new navigation property to extensions for users + description: The collection of open extensions defined for the task. Nullable. operationId: users.todo.lists.tasks_CreateExtensions parameters: - name: user-id @@ -4792,6 +4877,7 @@ paths: tags: - users.todo summary: Get extensions from users + description: The collection of open extensions defined for the task. Nullable. operationId: users.todo.lists.tasks_GetExtensions parameters: - name: user-id @@ -4860,6 +4946,7 @@ paths: tags: - users.todo summary: Update the navigation property extensions in users + description: The collection of open extensions defined for the task. Nullable. operationId: users.todo.lists.tasks_UpdateExtensions parameters: - name: user-id @@ -4907,6 +4994,7 @@ paths: tags: - users.todo summary: Delete navigation property extensions for users + description: The collection of open extensions defined for the task. Nullable. operationId: users.todo.lists.tasks_DeleteExtensions parameters: - name: user-id @@ -4953,6 +5041,7 @@ paths: tags: - users.todo summary: Get linkedResources from users + description: A collection of resources linked to the task. operationId: users.todo.lists.tasks_ListLinkedResources parameters: - name: user-id @@ -5057,6 +5146,7 @@ paths: tags: - users.todo summary: Create new navigation property to linkedResources for users + description: A collection of resources linked to the task. operationId: users.todo.lists.tasks_CreateLinkedResources parameters: - name: user-id @@ -5102,6 +5192,7 @@ paths: tags: - users.todo summary: Get linkedResources from users + description: A collection of resources linked to the task. operationId: users.todo.lists.tasks_GetLinkedResources parameters: - name: user-id @@ -5174,6 +5265,7 @@ paths: tags: - users.todo summary: Update the navigation property linkedResources in users + description: A collection of resources linked to the task. operationId: users.todo.lists.tasks_UpdateLinkedResources parameters: - name: user-id @@ -5221,6 +5313,7 @@ paths: tags: - users.todo summary: Delete navigation property linkedResources for users + description: A collection of resources linked to the task. operationId: users.todo.lists.tasks_DeleteLinkedResources parameters: - name: user-id @@ -5455,7 +5548,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the user. Not nullable. Supports $filter. + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter.' assignedPlans: type: array items: @@ -5468,7 +5561,7 @@ components: description: The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. city: type: string - description: The city in which the user is located. Returned only on $select. Supports $filter. + description: The city in which the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true companyName: type: string @@ -5480,12 +5573,12 @@ components: nullable: true country: type: string - description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Returned only on $select. Supports $filter.' + description: 'The country/region in which the user is located; for example, ''US'' or ''UK''. Maximum length is 128 characters. Returned only on $select. Supports $filter.' 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 the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Returned only on $select. Read-only. Supports $filter with the eq, ne, le, and ge operators.' format: date-time nullable: true creationType: @@ -5494,11 +5587,11 @@ components: nullable: true department: type: string - description: The name for the department in which the user works. Returned only on $select. Supports $filter. + description: The name for the department in which the user works. Maximum length is 64 characters.Returned only on $select. Supports $filter. nullable: true displayName: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby.' + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter and $orderby.' nullable: true employeeHireDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -5514,7 +5607,7 @@ components: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: type: string - description: 'Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. Returned only on $select. Supports $filter.' + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter with the eq operator.' nullable: true externalUserState: type: string @@ -5532,7 +5625,7 @@ components: nullable: true givenName: type: string - description: The given name (first name) of the user. Returned by default. Supports $filter. + description: The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true identities: type: array @@ -5551,7 +5644,7 @@ components: nullable: true jobTitle: type: string - description: The user's job title. Returned by default. Supports $filter. + description: The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq and startsWith operators). nullable: true 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])$' @@ -5570,11 +5663,11 @@ components: description: State of license assignments for this user. Returned only on $select. Read-only. mail: type: string - description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Returned by default. Supports $filter and endsWith.' + description: 'The SMTP address for the user, for example, ''jeff@contoso.onmicrosoft.com''. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter and endsWith.' nullable: true mailNickname: type: string - description: The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + description: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter. nullable: true mobilePhone: type: string @@ -5582,7 +5675,7 @@ components: nullable: true officeLocation: type: string - description: The office location in the user's place of business. Returned by default. + description: The office location in the user's place of business. Maximum length is 128 characters. Returned by default. nullable: true onPremisesDistinguishedName: type: string @@ -5629,7 +5722,7 @@ components: type: array items: type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].Returned only on $select. Supports$filter.' + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Returned only on $select. Supports$filter.' passwordPolicies: type: string description: 'Specifies password policies for the user. This value is an enumeration with one possible value being ''DisableStrongPassword'', which allows weaker passwords than the default policy to be specified. ''DisablePasswordExpiration'' can also be specified. The two may be specified together; for example: ''DisablePasswordExpiration, DisableStrongPassword''.Returned only on $select.' @@ -5638,7 +5731,7 @@ components: $ref: '#/components/schemas/microsoft.graph.passwordProfile' postalCode: type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select.' + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select.' nullable: true preferredLanguage: type: string @@ -5666,15 +5759,15 @@ components: nullable: true state: type: string - description: The state or province in the user's address. Returned only on $select. Supports $filter. + description: The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter. nullable: true streetAddress: type: string - description: The street address of the user's place of business. Returned only on $select. + description: The street address of the user's place of business. Maximum length is 1024 characters. Returned only on $select. nullable: true surname: type: string - description: The user's surname (family name or last name). Returned by default. Supports $filter. + description: The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter. nullable: true usageLocation: type: string @@ -5682,7 +5775,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Returned by default. Supports $filter, $orderby, and endsWith.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Returned by default. Supports $filter, $orderby, and endsWith.' nullable: true userType: type: string @@ -5918,6 +6011,10 @@ components: $ref: '#/components/schemas/microsoft.graph.presence' authentication: $ref: '#/components/schemas/microsoft.graph.authentication' + chats: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' joinedTeams: type: array items: @@ -5985,7 +6082,7 @@ components: 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).' + description: 'Indicates whether 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 principalId: type: string @@ -6268,7 +6365,7 @@ components: nullable: true issuerAssignedId: type: string - description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 512 character limit.' + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' nullable: true signInType: type: string @@ -7019,6 +7116,10 @@ components: type: string description: The mailFolder's display name. nullable: true + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. + nullable: true parentFolderId: type: string description: The unique identifier for the mailFolder's parent mailFolder. @@ -7511,6 +7612,10 @@ components: type: string description: Enrollment time of the device. This property is read-only. format: date-time + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true exchangeAccessState: $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' exchangeAccessStateReason: @@ -7524,6 +7629,10 @@ components: type: integer description: Free Storage in Bytes. This property is read-only. format: int64 + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true imei: type: string description: IMEI. This property is read-only. @@ -7563,6 +7672,10 @@ components: type: string description: Model of the device. This property is read-only. nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true operatingSystem: type: string description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' @@ -7577,6 +7690,10 @@ components: type: string description: Phone number of the device. This property is read-only. nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 remoteAssistanceSessionErrorDetails: type: string description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. @@ -7597,6 +7714,10 @@ components: type: integer description: Total Storage in Bytes. This property is read-only. format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true userDisplayName: type: string description: User display name. This property is read-only. @@ -7958,6 +8079,51 @@ components: $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 + 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 + topic: + type: string + description: (Optional) Subject or topic for the chat. Only available for group chats. + 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.team: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -7976,7 +8142,7 @@ components: nullable: true description: type: string - description: An optional description for the team. + description: 'An optional description for the team. Maximum length: 1024 characters.' nullable: true displayName: type: string @@ -9303,6 +9469,9 @@ components: - windowsAutoEnrollment - windowsBulkAzureDomainJoin - windowsCoManagement + - windowsAzureADJoinUsingDeviceAuth + - appleUserEnrollment + - appleUserEnrollmentWithServiceAccount type: string microsoft.graph.deviceHealthAttestationState: title: deviceHealthAttestationState @@ -10214,6 +10383,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' + description: Information of the meeting attendees. organizer: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: @@ -10309,6 +10479,166 @@ components: $ref: '#/components/schemas/microsoft.graph.device' additionalProperties: type: object + microsoft.graph.chatType: + title: chatType + enum: + - oneOnOne + - group + - meeting + - unknownFutureValue + type: string + microsoft.graph.teamsAppInstallation: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamsAppInstallation + type: object + properties: + teamsApp: + $ref: '#/components/schemas/microsoft.graph.teamsApp' + teamsAppDefinition: + $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' + additionalProperties: + type: object + microsoft.graph.conversationMember: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: conversationMember + type: object + properties: + displayName: + type: string + description: The display name of the user. + nullable: true + roles: + type: array + items: + type: string + nullable: true + description: The roles for that user. + visibleHistoryStartDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. + format: date-time + nullable: true + 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 + 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: 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. 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.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.teamFunSettings: title: teamFunSettings type: object @@ -10756,6 +11086,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permission that has been granted for a group to a specific application. settings: type: array items: @@ -10839,55 +11170,19 @@ 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.teamsAppInstallation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsAppInstallation - type: object - properties: - teamsApp: - $ref: '#/components/schemas/microsoft.graph.teamsApp' - teamsAppDefinition: - $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' - additionalProperties: - type: object - microsoft.graph.conversationMember: + microsoft.graph.teamsAsyncOperation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: conversationMember + - title: teamsAsyncOperation type: object properties: - displayName: - type: string - description: The display name of the user. - nullable: true - roles: - type: array - items: - type: string - nullable: true - description: The roles for that user. - visibleHistoryStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.teamsAsyncOperation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsAsyncOperation - type: object - properties: - attemptsCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of times the operation was attempted before being marked successful or failed. - format: int32 - createdDateTime: + attemptsCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Number of times the operation was attempted before being marked successful or failed. + format: int32 + createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string description: Time when the operation was created. @@ -13024,7 +13319,7 @@ components: 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.' + description: Groups that this device is a member of. Read-only. Nullable. registeredOwners: type: array items: @@ -13039,6 +13334,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Groups that this device is a member of. This operation is transitive. extensions: type: array items: @@ -13054,6 +13350,210 @@ components: - weak - unknown type: string + 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: + 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 + description: Short description of the application. + 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.chatMessageAttachment: + title: chatMessageAttachment + type: object + properties: + content: + type: string + description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' + nullable: true + contentType: + type: string + description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' + nullable: true + contentUrl: + type: string + description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' + nullable: true + id: + type: string + description: Read-only. Unique id of the attachment. + nullable: true + name: + type: string + description: Name of the attachment. + nullable: true + thumbnailUrl: + type: string + description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' + 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: + - normal + - high + - urgent + - unknownFutureValue + type: string + microsoft.graph.chatMessageMention: + title: chatMessageMention + type: object + properties: + id: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' + format: int32 + nullable: true + mentioned: + $ref: '#/components/schemas/microsoft.graph.identitySet' + mentionText: + type: string + description: 'String used to represent the mention. For example, a user''s display name, a team name.' + nullable: true + additionalProperties: + type: object + microsoft.graph.chatMessageType: + title: chatMessageType + enum: + - message + - chatEvent + - typing + - unknownFutureValue + type: string + microsoft.graph.chatMessagePolicyViolation: + title: chatMessagePolicyViolation + type: object + properties: + dlpAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' + justificationText: + type: string + description: Justification text provided by the sender of the message when overriding a policy violation. + nullable: true + policyTip: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' + userAction: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' + verdictDetails: + $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' + additionalProperties: + type: object + microsoft.graph.chatMessageReaction: + title: chatMessageReaction + 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: 'The Timestamp type represents date and time information using ISO 8601 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 + description: 'Supported values are like, angry, sad, laugh, heart, surprised.' + user: + $ref: '#/components/schemas/microsoft.graph.identitySet' + additionalProperties: + type: object + microsoft.graph.chatMessageHostedContent: + allOf: + - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' + - title: chatMessageHostedContent + type: object + additionalProperties: + type: object + 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.giphyRatingType: title: giphyRatingType enum: @@ -13242,149 +13742,33 @@ components: - private - unknownFutureValue type: string - microsoft.graph.chatMessage: + microsoft.graph.assignedLabel: + title: assignedLabel + type: object + properties: + displayName: + type: string + description: The display name of the label. Read-only. + nullable: true + labelId: + type: string + description: The unique identifier of the label. + nullable: true + additionalProperties: + type: object + microsoft.graph.licenseProcessingState: + title: licenseProcessingState + type: object + properties: + state: + type: string + nullable: true + additionalProperties: + type: object + microsoft.graph.resourceSpecificPermissionGrant: 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 - 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: 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. 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.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.assignedLabel: - title: assignedLabel - type: object - properties: - displayName: - type: string - description: The display name of the label. Read-only. - nullable: true - labelId: - type: string - description: The unique identifier of the label. - nullable: true - additionalProperties: - type: object - microsoft.graph.licenseProcessingState: - title: licenseProcessingState - type: object - properties: - state: - type: string - nullable: true - additionalProperties: - type: object - microsoft.graph.resourceSpecificPermissionGrant: - allOf: - - $ref: '#/components/schemas/microsoft.graph.directoryObject' - - title: resourceSpecificPermissionGrant + - $ref: '#/components/schemas/microsoft.graph.directoryObject' + - title: resourceSpecificPermissionGrant type: object properties: clientAppId: @@ -13401,7 +13785,7 @@ components: nullable: true permissionType: type: string - description: 'The type of permission. Possible values are: Application,Delegated. Read-only.' + description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' nullable: true resourceAppId: type: string @@ -13544,68 +13928,6 @@ components: description: Read-only. Nullable. Returns the plannerPlans owned by the group. 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: - 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 - description: Short description of the application. - 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 @@ -13640,51 +13962,6 @@ components: - failed - unknownFutureValue type: string - 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 - 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 - topic: - type: string - description: (Optional) Subject or topic for the chat. Only available for group chats. - 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.weekIndex: title: weekIndex enum: @@ -14260,21 +14537,104 @@ 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 + 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.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.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 @@ -14367,148 +14727,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.chatMessageAttachment: - title: chatMessageAttachment - type: object - properties: - content: - type: string - description: 'The content of the attachment. If the attachment is a rich card, set the property to the rich card object. This property and contentUrl are mutually exclusive.' - nullable: true - contentType: - type: string - description: 'The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework''s Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.' - nullable: true - contentUrl: - type: string - description: 'URL for the content of the attachment. Supported protocols: http, https, file and data.' - nullable: true - id: - type: string - description: Read-only. Unique id of the attachment. - nullable: true - name: - type: string - description: Name of the attachment. - nullable: true - thumbnailUrl: - type: string - description: 'URL to a thumbnail image that the channel can use if it supports using an alternative, smaller form of content or contentUrl. For example, if you set contentType to application/word and set contentUrl to the location of the Word document, you might include a thumbnail image that represents the document. The channel could display the thumbnail image instead of the document. When the user clicks the image, the channel would open the document.' - 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: - - normal - - high - - urgent - - unknownFutureValue - type: string - microsoft.graph.chatMessageMention: - title: chatMessageMention - type: object - properties: - id: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Index of an entity being mentioned in the specified chatMessage. Matches the {index} value in the corresponding tag in the message body.' - format: int32 - nullable: true - mentioned: - $ref: '#/components/schemas/microsoft.graph.identitySet' - mentionText: - type: string - description: 'String used to represent the mention. For example, a user''s display name, a team name.' - nullable: true - additionalProperties: - type: object - microsoft.graph.chatMessageType: - title: chatMessageType - enum: - - message - - chatEvent - - typing - - unknownFutureValue - type: string - microsoft.graph.chatMessagePolicyViolation: - title: chatMessagePolicyViolation - type: object - properties: - dlpAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationDlpActionTypes' - justificationText: - type: string - description: Justification text provided by the sender of the message when overriding a policy violation. - nullable: true - policyTip: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationPolicyTip' - userAction: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationUserActionTypes' - verdictDetails: - $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes' - additionalProperties: - type: object - microsoft.graph.chatMessageReaction: - title: chatMessageReaction - 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: 'The Timestamp type represents date and time information using ISO 8601 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 - description: 'Supported values are like, angry, sad, laugh, heart, surprised.' - user: - $ref: '#/components/schemas/microsoft.graph.identitySet' - additionalProperties: - type: object - microsoft.graph.chatMessageHostedContent: - allOf: - - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' - - title: chatMessageHostedContent - type: object - additionalProperties: - type: object - 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.settingValue: title: settingValue type: object @@ -14580,37 +14798,6 @@ components: description: The collection of single-value extended properties defined for the post. Read-only. Nullable. additionalProperties: type: object - 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.chatType: - title: chatType - enum: - - oneOnOne - - group - - meeting - - unknownFutureValue - type: string microsoft.graph.workbookCommentReply: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -14851,66 +15038,6 @@ components: $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.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/Compliance/crawl-log-v1.0-beta.json b/profiles/Compliance/crawl-log-v1.0-beta.json index f9f6e1a3bf3..cfc1c11d125 100644 --- a/profiles/Compliance/crawl-log-v1.0-beta.json +++ b/profiles/Compliance/crawl-log-v1.0-beta.json @@ -145,11 +145,11 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Compliance.yml" }, - "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.Release": { + "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.release": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Compliance.yml" }, - "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.UpdateIndex": { + "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.updateIndex": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Compliance.yml" }, diff --git a/profiles/Compliance/definitions/v1.0-beta.md b/profiles/Compliance/definitions/v1.0-beta.md index ac62900c751..58cd2fc9ecb 100644 --- a/profiles/Compliance/definitions/v1.0-beta.md +++ b/profiles/Compliance/definitions/v1.0-beta.md @@ -43,8 +43,8 @@ profiles: /compliance/ediscovery/cases/{case-id}/noncustodialDataSources: v1.0-beta /compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}: v1.0-beta /compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/dataSource: v1.0-beta - /compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.Release: v1.0-beta - ? /compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.UpdateIndex + /compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.release: v1.0-beta + ? /compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.updateIndex : v1.0-beta /compliance/ediscovery/cases/{case-id}/operations: v1.0-beta /compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}: v1.0-beta diff --git a/profiles/DeviceManagement.Actions/crawl-log-v1.0-beta.json b/profiles/DeviceManagement.Actions/crawl-log-v1.0-beta.json index 0637c1c4489..672a1638544 100644 --- a/profiles/DeviceManagement.Actions/crawl-log-v1.0-beta.json +++ b/profiles/DeviceManagement.Actions/crawl-log-v1.0-beta.json @@ -85,6 +85,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.activateDeviceEsim": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -137,6 +141,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.reprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -145,6 +153,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.resizeCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.retire": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -197,6 +209,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/comanagedDevices/microsoft.graph.bulkReprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/comanagedDevices/microsoft.graph.executeAction": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -205,6 +221,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/microsoft.graph.createCopy": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}/microsoft.graph.consentToDataSharing": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -241,6 +261,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/microsoft.graph.bulkReprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/microsoft.graph.executeAction": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -273,6 +297,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -325,6 +353,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -333,6 +365,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.retire": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -437,6 +473,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -489,6 +529,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -497,6 +541,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -553,6 +601,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -605,6 +657,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -613,6 +669,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -677,6 +737,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -729,6 +793,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -737,6 +805,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.retire": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -805,6 +877,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -857,6 +933,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -865,6 +945,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -921,6 +1005,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -973,6 +1061,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -981,6 +1073,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1037,6 +1133,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1089,6 +1189,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1097,6 +1201,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1153,6 +1261,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1205,6 +1317,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1213,6 +1329,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1341,6 +1461,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.activateDeviceEsim": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1393,6 +1517,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.reprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1401,6 +1529,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.resizeCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.retire": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1453,6 +1585,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/managedDevices/microsoft.graph.bulkReprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/managedDevices/microsoft.graph.executeAction": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1481,6 +1617,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoft.graph.requestUpgrade": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/microsoft.graph.createServerLogCollectionRequest": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1517,6 +1657,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/reports/microsoft.graph.getAllCertificatesReport": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/reports/microsoft.graph.getAppsInstallSummaryReport": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1545,6 +1689,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/reports/microsoft.graph.getConfigManagerDevicePolicyStatusReport": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/reports/microsoft.graph.getConfigurationPoliciesReportForDevice": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1565,6 +1713,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/reports/microsoft.graph.getConfigurationPolicySettingsDeviceSummaryReport": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/reports/microsoft.graph.getConfigurationSettingDetailsReport": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1581,6 +1733,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/reports/microsoft.graph.getDeviceManagementIntentSettingsReport": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/reports/microsoft.graph.getDeviceNonComplianceReport": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1613,6 +1769,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/reports/microsoft.graph.getRelatedAppsStatusReport": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/reports/microsoft.graph.getReportFilters": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1657,6 +1817,18 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/microsoft.graph.clone": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, + "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/microsoft.graph.assign": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, + "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/microsoft.graph.createCopy": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/microsoft.graph.getRoleScopeTagsById": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1701,6 +1873,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" }, + "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/microsoft.graph.assign": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" + }, "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/microsoft.graph.assign": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1729,10 +1905,6 @@ "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": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml" @@ -1769,10 +1941,6 @@ "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": { "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 e30373d23f0..dc29acf6ef8 100644 --- a/profiles/DeviceManagement.Actions/crawl-log-v1.0.json +++ b/profiles/DeviceManagement.Actions/crawl-log-v1.0.json @@ -25,6 +25,10 @@ "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml" }, + "/deviceManagement/importedWindowsAutopilotDeviceIdentities/microsoft.graph.import": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml" + }, "/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml" @@ -108,6 +112,18 @@ "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/microsoft.graph.disconnect": { "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml" + }, + "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.assignUserToDevice": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml" + }, + "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.unassignUserFromDevice": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml" + }, + "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.updateDeviceProperties": { + "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 ca8175c2063..1787f4d02ba 100644 --- a/profiles/DeviceManagement.Actions/definitions/v1.0-beta.md +++ b/profiles/DeviceManagement.Actions/definitions/v1.0-beta.md @@ -29,6 +29,7 @@ profiles: /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.activateDeviceEsim: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.cleanWindowsDevice: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.createDeviceLogCollectionRequest: v1.0-beta @@ -42,8 +43,10 @@ profiles: /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.rebootNow: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.recoverPasscode: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.remoteLock: v1.0-beta + /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.reprovisionCloudPc: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.resetPasscode: v1.0-beta + /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.resizeCloudPc: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.retire: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.revokeAppleVppLicenses: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.rotateBitLockerKeys: v1.0-beta @@ -57,8 +60,10 @@ profiles: /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderScan: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderUpdateSignatures: v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.wipe: v1.0-beta + /deviceManagement/comanagedDevices/microsoft.graph.bulkReprovisionCloudPc: v1.0-beta /deviceManagement/comanagedDevices/microsoft.graph.executeAction: v1.0-beta /deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/microsoft.graph.assign: v1.0-beta + /deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/microsoft.graph.createCopy: v1.0-beta /deviceManagement/dataSharingConsents/{dataSharingConsent-id}/microsoft.graph.consentToDataSharing: v1.0-beta ? /deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/microsoft.graph.setDefaultProfile : v1.0-beta @@ -71,6 +76,7 @@ profiles: /deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/microsoft.graph.syncWithAppleDeviceEnrollmentProgram: v1.0-beta /deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/microsoft.graph.unshareForSchoolDataSyncService: v1.0-beta /deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/microsoft.graph.uploadDepToken: v1.0-beta + /deviceManagement/detectedApps/{detectedApp-id}/managedDevices/microsoft.graph.bulkReprovisionCloudPc: v1.0-beta /deviceManagement/detectedApps/{detectedApp-id}/managedDevices/microsoft.graph.executeAction: v1.0-beta /deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/microsoft.graph.assign: v1.0-beta /deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/microsoft.graph.scheduleActionsForRules: v1.0-beta @@ -79,6 +85,8 @@ profiles: /deviceManagement/deviceCompliancePolicies/microsoft.graph.refreshDeviceComplianceReportSummarization: v1.0-beta /deviceManagement/deviceCompliancePolicies/microsoft.graph.setScheduledRetireState: v1.0-beta /deviceManagement/deviceCompliancePolicies/microsoft.graph.validateComplianceScript: v1.0-beta + ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim + : v1.0-beta ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock : v1.0-beta ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice @@ -105,10 +113,14 @@ profiles: : v1.0-beta ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock : v1.0-beta + ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc + : v1.0-beta ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance : v1.0-beta ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode : v1.0-beta + ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc + : v1.0-beta ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.retire : v1.0-beta ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses @@ -155,6 +167,8 @@ profiles: : v1.0-beta /deviceManagement/deviceConfigurations/microsoft.graph.getTargetedUsersAndDevices: v1.0-beta /deviceManagement/deviceConfigurations/microsoft.graph.hasPayloadLinks: v1.0-beta + ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim + : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice @@ -181,10 +195,14 @@ profiles: : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock : v1.0-beta + ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc + : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode : v1.0-beta + ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc + : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses @@ -212,6 +230,8 @@ profiles: ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.wipe : v1.0-beta /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/microsoft.graph.assign: v1.0-beta + ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim + : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice @@ -238,10 +258,14 @@ profiles: : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock : v1.0-beta + ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc + : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode : v1.0-beta + ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc + : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses @@ -271,6 +295,8 @@ profiles: /deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/microsoft.graph.assign: v1.0-beta /deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/microsoft.graph.setPriority: v1.0-beta /deviceManagement/deviceEnrollmentConfigurations/microsoft.graph.hasPayloadLinks: v1.0-beta + ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim + : v1.0-beta ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock : v1.0-beta ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice @@ -297,10 +323,14 @@ profiles: : v1.0-beta ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock : v1.0-beta + ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc + : v1.0-beta ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance : v1.0-beta ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode : v1.0-beta + ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc + : v1.0-beta ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.retire : v1.0-beta ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses @@ -331,6 +361,8 @@ profiles: /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/microsoft.graph.getGlobalScriptHighestAvailableVersion: v1.0-beta /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/microsoft.graph.updateGlobalScript: v1.0-beta /deviceManagement/deviceHealthScripts/microsoft.graph.enableGlobalScripts: v1.0-beta + ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim + : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice @@ -357,10 +389,14 @@ profiles: : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock : v1.0-beta + ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc + : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode : v1.0-beta + ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc + : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses @@ -388,6 +424,8 @@ profiles: ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.wipe : v1.0-beta /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/microsoft.graph.assign: v1.0-beta + ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim + : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice @@ -414,10 +452,14 @@ profiles: : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock : v1.0-beta + ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc + : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode : v1.0-beta + ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc + : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses @@ -445,6 +487,8 @@ profiles: ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.wipe : v1.0-beta /deviceManagement/deviceManagementScripts/microsoft.graph.hasPayloadLinks: v1.0-beta + ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim + : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice @@ -471,10 +515,14 @@ profiles: : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock : v1.0-beta + ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc + : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode : v1.0-beta + ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc + : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses @@ -502,6 +550,8 @@ profiles: ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.wipe : v1.0-beta /deviceManagement/deviceShellScripts/{deviceShellScript-id}/microsoft.graph.assign: v1.0-beta + ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.activateDeviceEsim + : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice @@ -528,10 +578,14 @@ profiles: : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock : v1.0-beta + ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.reprovisionCloudPc + : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode : v1.0-beta + ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resizeCloudPc + : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses @@ -578,6 +632,7 @@ profiles: /deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/microsoft.graph.assign: v1.0-beta ? /deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/microsoft.graph.createDownloadUrl : v1.0-beta + /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.activateDeviceEsim: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.cleanWindowsDevice: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.createDeviceLogCollectionRequest: v1.0-beta @@ -591,8 +646,10 @@ profiles: /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.rebootNow: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.recoverPasscode: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.remoteLock: v1.0-beta + /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.reprovisionCloudPc: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.resetPasscode: v1.0-beta + /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.resizeCloudPc: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.retire: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.revokeAppleVppLicenses: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.rotateBitLockerKeys: v1.0-beta @@ -606,6 +663,7 @@ profiles: /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderScan: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderUpdateSignatures: v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.wipe: v1.0-beta + /deviceManagement/managedDevices/microsoft.graph.bulkReprovisionCloudPc: v1.0-beta /deviceManagement/managedDevices/microsoft.graph.executeAction: v1.0-beta /deviceManagement/microsoft.graph.enableAndroidDeviceAdministratorEnrollment: v1.0-beta /deviceManagement/microsoft.graph.enableLegacyPcManagement: v1.0-beta @@ -614,6 +672,7 @@ profiles: /deviceManagement/microsoft.graph.sendCustomNotificationToCompanyPortal: v1.0-beta ? /deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}/microsoft.graph.createDownloadUrl : v1.0-beta + /deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoft.graph.requestUpgrade: v1.0-beta ? /deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/microsoft.graph.createServerLogCollectionRequest : v1.0-beta ? /deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/microsoft.graph.getHealthMetrics @@ -627,6 +686,7 @@ profiles: /deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/microsoft.graph.disconnect: v1.0-beta /deviceManagement/reports/microsoft.graph.getActiveMalwareReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getActiveMalwareSummaryReport: v1.0-beta + /deviceManagement/reports/microsoft.graph.getAllCertificatesReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getAppsInstallSummaryReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getAppStatusOverviewReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getCachedReport: v1.0-beta @@ -634,15 +694,18 @@ profiles: /deviceManagement/reports/microsoft.graph.getCompliancePolicyNonComplianceReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getCompliancePolicyNonComplianceSummaryReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getComplianceSettingNonComplianceReport: v1.0-beta + /deviceManagement/reports/microsoft.graph.getConfigManagerDevicePolicyStatusReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getConfigurationPoliciesReportForDevice: v1.0-beta /deviceManagement/reports/microsoft.graph.getConfigurationPolicyDevicesReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getConfigurationPolicyDeviceSummaryReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getConfigurationPolicyNonComplianceReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getConfigurationPolicyNonComplianceSummaryReport: v1.0-beta + /deviceManagement/reports/microsoft.graph.getConfigurationPolicySettingsDeviceSummaryReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getConfigurationSettingDetailsReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getConfigurationSettingNonComplianceReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getConfigurationSettingsReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getDeviceInstallStatusReport: v1.0-beta + /deviceManagement/reports/microsoft.graph.getDeviceManagementIntentSettingsReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getDeviceNonComplianceReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getFailedMobileAppsReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getFailedMobileAppsSummaryReport: v1.0-beta @@ -651,6 +714,7 @@ profiles: /deviceManagement/reports/microsoft.graph.getPolicyNonComplianceMetadata: v1.0-beta /deviceManagement/reports/microsoft.graph.getPolicyNonComplianceReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getPolicyNonComplianceSummaryReport: v1.0-beta + /deviceManagement/reports/microsoft.graph.getRelatedAppsStatusReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getReportFilters: v1.0-beta /deviceManagement/reports/microsoft.graph.getSettingNonComplianceReport: v1.0-beta /deviceManagement/reports/microsoft.graph.getUnhealthyDefenderAgentsReport: v1.0-beta @@ -662,6 +726,11 @@ profiles: /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 + /deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/microsoft.graph.clone: v1.0-beta + ? /deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/microsoft.graph.assign + : v1.0-beta + ? /deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/microsoft.graph.createCopy + : v1.0-beta /deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/microsoft.graph.getRoleScopeTagsById: v1.0-beta /deviceManagement/roleScopeTags/{roleScopeTag-id}/microsoft.graph.assign: v1.0-beta /deviceManagement/roleScopeTags/microsoft.graph.getRoleScopeTagsById: v1.0-beta @@ -675,6 +744,7 @@ profiles: /deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/microsoft.graph.runHealthChecks: v1.0-beta /deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/microsoft.graph.updateAdDomainPassword: v1.0-beta /deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/microsoft.graph.assign: v1.0-beta + /deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/microsoft.graph.assign: v1.0-beta ? /deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/microsoft.graph.assign : v1.0-beta ? /deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/microsoft.graph.assign @@ -689,8 +759,6 @@ 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 @@ -703,7 +771,6 @@ 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/definitions/v1.0.md b/profiles/DeviceManagement.Actions/definitions/v1.0.md index 26efe839df1..427f58dc996 100644 --- a/profiles/DeviceManagement.Actions/definitions/v1.0.md +++ b/profiles/DeviceManagement.Actions/definitions/v1.0.md @@ -13,6 +13,7 @@ profiles: /deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/microsoft.graph.assign: v1.0 /deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/microsoft.graph.setPriority: v1.0 /deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}/microsoft.graph.sync: v1.0 + /deviceManagement/importedWindowsAutopilotDeviceIdentities/microsoft.graph.import: v1.0 /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock: v1.0 /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.cleanWindowsDevice: v1.0 /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.deleteUserFromSharedAppleDevice: v1.0 @@ -34,5 +35,8 @@ profiles: /deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/microsoft.graph.sendTestMessage: v1.0 /deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/microsoft.graph.beginOnboarding: v1.0 /deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/microsoft.graph.disconnect: v1.0 + /deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.assignUserToDevice: v1.0 + /deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.unassignUserFromDevice: v1.0 + /deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.updateDeviceProperties: v1.0 ``` diff --git a/profiles/DeviceManagement.Enrolment/crawl-log-v1.0-beta.json b/profiles/DeviceManagement.Enrolment/crawl-log-v1.0-beta.json index 983eb88b73f..60ab72b16ce 100644 --- a/profiles/DeviceManagement.Enrolment/crawl-log-v1.0-beta.json +++ b/profiles/DeviceManagement.Enrolment/crawl-log-v1.0-beta.json @@ -229,6 +229,90 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, + "/roleManagement/cloudPC": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/resourceNamespaces": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleAssignments": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$ref": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$ref": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleDefinitions": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, + "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" + }, "/roleManagement/deviceManagement": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" @@ -369,123 +453,123 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests": { + "/roleManagement/directory/roleAssignments": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}": { + "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing": { + "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing/$ref": { + "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope": { + "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope/$ref": { + "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope": { + "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope/$ref": { + "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/microsoft.graph.cancel": { + "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal": { + "/roleManagement/directory/roleAssignmentScheduleInstances": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal/$ref": { + "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition": { + "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition/$ref": { + "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule": { + "/roleManagement/directory/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule/$ref": { + "/roleManagement/directory/roleAssignmentScheduleRequests": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignments": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/microsoft.graph.cancel": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentScheduleInstances": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref": { + "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": { + "/roleManagement/directory/roleAssignmentScheduleRequests/microsoft.graph.filterByCurrentUser(on={on})": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, @@ -525,71 +609,71 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests": { + "/roleManagement/directory/roleEligibilityScheduleInstances": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}": { + "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope": { + "/roleManagement/directory/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope/$ref": { + "/roleManagement/directory/roleEligibilityScheduleRequests": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope/$ref": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/microsoft.graph.cancel": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal/$ref": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/microsoft.graph.cancel": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition/$ref": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule/$ref": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityRequests/microsoft.graph.filterByCurrentUser(on={on})": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityScheduleInstances": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}": { + "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/directory/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": { + "/roleManagement/directory/roleEligibilityScheduleRequests/microsoft.graph.filterByCurrentUser(on={on})": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, @@ -661,123 +745,123 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests": { + "/roleManagement/entitlementManagement/roleAssignments": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}": { + "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing": { + "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing/$ref": { + "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope": { + "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope/$ref": { + "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope": { + "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope/$ref": { + "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/microsoft.graph.cancel": { + "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal/$ref": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition/$ref": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule/$ref": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignments": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/microsoft.graph.cancel": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": { + "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/microsoft.graph.filterByCurrentUser(on={on})": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, @@ -817,71 +901,71 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope/$ref": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope/$ref": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/microsoft.graph.cancel": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal/$ref": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/microsoft.graph.cancel": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition/$ref": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule/$ref": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityRequests/microsoft.graph.filterByCurrentUser(on={on})": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml" }, - "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": { + "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/microsoft.graph.filterByCurrentUser(on={on})": { "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 720bd1f7eae..962f76e71d8 100644 --- a/profiles/DeviceManagement.Enrolment/crawl-log-v1.0.json +++ b/profiles/DeviceManagement.Enrolment/crawl-log-v1.0.json @@ -21,6 +21,22 @@ "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml" }, + "/deviceManagement/importedWindowsAutopilotDeviceIdentities": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml" + }, + "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml" + }, + "/deviceManagement/windowsAutopilotDeviceIdentities": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml" + }, + "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}": { + "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 c2d2335ac30..a746a3117c0 100644 --- a/profiles/DeviceManagement.Enrolment/definitions/v1.0-beta.md +++ b/profiles/DeviceManagement.Enrolment/definitions/v1.0-beta.md @@ -74,6 +74,28 @@ profiles: /deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/deviceUpdateStates: v1.0-beta /deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/deviceUpdateStates/{windowsUpdateState-id}: v1.0-beta /roleManagement: v1.0-beta + /roleManagement/cloudPC: v1.0-beta + /roleManagement/cloudPC/resourceNamespaces: v1.0-beta + /roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}: v1.0-beta + /roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions: v1.0-beta + /roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions: v1.0-beta + /roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}: v1.0-beta + ? /roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope + : v1.0-beta + /roleManagement/cloudPC/roleAssignments: v1.0-beta + /roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}: v1.0-beta + /roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes: v1.0-beta + /roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}: v1.0-beta + /roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes: v1.0-beta + /roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$ref: v1.0-beta + /roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals: v1.0-beta + /roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$ref: v1.0-beta + /roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition: v1.0-beta + /roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref: v1.0-beta + /roleManagement/cloudPC/roleDefinitions: v1.0-beta + /roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}: v1.0-beta + /roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom: v1.0-beta + /roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}: v1.0-beta /roleManagement/deviceManagement: v1.0-beta /roleManagement/deviceManagement/resourceNamespaces: v1.0-beta /roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}: v1.0-beta @@ -114,22 +136,6 @@ profiles: /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 - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing/$ref: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope/$ref: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope/$ref: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/microsoft.graph.cancel: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal/$ref: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition/$ref: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule/$ref: v1.0-beta - /roleManagement/directory/roleAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta /roleManagement/directory/roleAssignments: v1.0-beta /roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}: v1.0-beta /roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope: v1.0-beta @@ -144,6 +150,22 @@ profiles: /roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing: v1.0-beta /roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref: v1.0-beta /roleManagement/directory/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/microsoft.graph.cancel: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref: v1.0-beta + /roleManagement/directory/roleAssignmentScheduleRequests/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta /roleManagement/directory/roleAssignmentSchedules: v1.0-beta /roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}: v1.0-beta /roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing: v1.0-beta @@ -153,23 +175,23 @@ profiles: /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}: v1.0-beta /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom: v1.0-beta /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}: v1.0-beta - /roleManagement/directory/roleEligibilityRequests: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope/$ref: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope/$ref: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/microsoft.graph.cancel: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal/$ref: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition/$ref: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule/$ref: v1.0-beta - /roleManagement/directory/roleEligibilityRequests/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta /roleManagement/directory/roleEligibilityScheduleInstances: v1.0-beta /roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}: v1.0-beta /roleManagement/directory/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/microsoft.graph.cancel: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref: v1.0-beta + /roleManagement/directory/roleEligibilityScheduleRequests/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta /roleManagement/directory/roleEligibilitySchedules: v1.0-beta /roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}: v1.0-beta /roleManagement/directory/roleEligibilitySchedules/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta @@ -191,22 +213,6 @@ profiles: /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 - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing/$ref: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope/$ref: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope/$ref: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/microsoft.graph.cancel: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal/$ref: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition/$ref: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule/$ref: v1.0-beta - /roleManagement/entitlementManagement/roleAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta /roleManagement/entitlementManagement/roleAssignments: v1.0-beta /roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}: v1.0-beta /roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope: v1.0-beta @@ -222,6 +228,27 @@ profiles: ? /roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref : v1.0-beta /roleManagement/entitlementManagement/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests: v1.0-beta + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}: v1.0-beta + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing: v1.0-beta + ? /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref + : v1.0-beta + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope: v1.0-beta + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref: v1.0-beta + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope: v1.0-beta + ? /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref + : v1.0-beta + ? /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/microsoft.graph.cancel + : v1.0-beta + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal: v1.0-beta + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref: v1.0-beta + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition: v1.0-beta + ? /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref + : v1.0-beta + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule: v1.0-beta + ? /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref + : v1.0-beta + /roleManagement/entitlementManagement/roleAssignmentScheduleRequests/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta /roleManagement/entitlementManagement/roleAssignmentSchedules: v1.0-beta /roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}: v1.0-beta /roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing: v1.0-beta @@ -232,23 +259,27 @@ profiles: /roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom: v1.0-beta ? /roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1} : v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope/$ref: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope/$ref: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/microsoft.graph.cancel: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal/$ref: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition/$ref: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule/$ref: v1.0-beta - /roleManagement/entitlementManagement/roleEligibilityRequests/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta /roleManagement/entitlementManagement/roleEligibilityScheduleInstances: v1.0-beta /roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}: v1.0-beta /roleManagement/entitlementManagement/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta + /roleManagement/entitlementManagement/roleEligibilityScheduleRequests: v1.0-beta + /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}: v1.0-beta + /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope: v1.0-beta + /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref: v1.0-beta + /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope: v1.0-beta + ? /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref + : v1.0-beta + ? /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/microsoft.graph.cancel + : v1.0-beta + /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal: v1.0-beta + /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref: v1.0-beta + /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition: v1.0-beta + ? /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref + : v1.0-beta + /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule: v1.0-beta + ? /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref + : v1.0-beta + /roleManagement/entitlementManagement/roleEligibilityScheduleRequests/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta /roleManagement/entitlementManagement/roleEligibilitySchedules: v1.0-beta /roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}: v1.0-beta /roleManagement/entitlementManagement/roleEligibilitySchedules/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta diff --git a/profiles/DeviceManagement.Enrolment/definitions/v1.0.md b/profiles/DeviceManagement.Enrolment/definitions/v1.0.md index eef35d74c5b..01a60dee5da 100644 --- a/profiles/DeviceManagement.Enrolment/definitions/v1.0.md +++ b/profiles/DeviceManagement.Enrolment/definitions/v1.0.md @@ -13,6 +13,10 @@ profiles: /deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments: v1.0 ? /deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id} : v1.0 + /deviceManagement/importedWindowsAutopilotDeviceIdentities: v1.0 + /deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}: v1.0 + /deviceManagement/windowsAutopilotDeviceIdentities: v1.0 + /deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}: v1.0 /roleManagement: v1.0 ``` diff --git a/profiles/DeviceManagement.Functions/crawl-log-v1.0-beta.json b/profiles/DeviceManagement.Functions/crawl-log-v1.0-beta.json index 8f84b6076bf..648a4c05de2 100644 --- a/profiles/DeviceManagement.Functions/crawl-log-v1.0-beta.json +++ b/profiles/DeviceManagement.Functions/crawl-log-v1.0-beta.json @@ -17,6 +17,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" }, + "/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.getCloudPcRemoteActionResults()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, "/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" @@ -41,6 +45,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" }, + "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" @@ -49,10 +57,22 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/microsoft.graph.getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, + "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/microsoft.graph.getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, "/deviceManagement/deviceConfigurations/microsoft.graph.getIosAvailableUpdateVersions()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" }, + "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" @@ -61,6 +81,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" }, + "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" @@ -69,6 +93,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" }, + "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" @@ -89,6 +117,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" }, + "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" @@ -97,6 +129,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" }, + "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" @@ -105,6 +141,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" }, + "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" @@ -113,6 +153,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" }, + "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" @@ -125,6 +169,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" }, + "/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.getCloudPcRemoteActionResults()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" + }, "/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml" diff --git a/profiles/DeviceManagement.Functions/definitions/v1.0-beta.md b/profiles/DeviceManagement.Functions/definitions/v1.0-beta.md index 1217518b35f..859204e1e5c 100644 --- a/profiles/DeviceManagement.Functions/definitions/v1.0-beta.md +++ b/profiles/DeviceManagement.Functions/definitions/v1.0-beta.md @@ -11,6 +11,7 @@ profiles: /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.getCloudPcRemoteActionResults(): v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey(): v1.0-beta /deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.getNonCompliantSettings(): v1.0-beta /deviceManagement/configManagerCollections/microsoft.graph.getPolicySummary(policyId='{policyId}'): v1.0-beta @@ -19,19 +20,31 @@ profiles: /deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/microsoft.graph.getEncryptionPublicKey(): v1.0-beta ? /deviceManagement/depOnboardingSettings/microsoft.graph.getExpiringVppTokenCount(expiringBeforeDateTime='{expiringBeforeDateTime}') : v1.0-beta + ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults() + : v1.0-beta ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey() : v1.0-beta ? /deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings() : v1.0-beta + ? /deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/microsoft.graph.getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}') + : v1.0-beta + ? /deviceManagement/deviceConfigurations/{deviceConfiguration-id}/microsoft.graph.getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}') + : v1.0-beta /deviceManagement/deviceConfigurations/microsoft.graph.getIosAvailableUpdateVersions(): v1.0-beta + ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults() + : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey() : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings() : v1.0-beta + ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults() + : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey() : v1.0-beta ? /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings() : v1.0-beta + ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults() + : v1.0-beta ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey() : v1.0-beta ? /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings() @@ -39,23 +52,32 @@ profiles: /deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/microsoft.graph.getRemediationHistory(): v1.0-beta /deviceManagement/deviceHealthScripts/microsoft.graph.areGlobalScriptsAvailable(): v1.0-beta /deviceManagement/deviceHealthScripts/microsoft.graph.getRemediationSummary(): v1.0-beta + ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults() + : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey() : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings() : v1.0-beta + ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults() + : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey() : v1.0-beta ? /deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings() : v1.0-beta + ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults() + : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey() : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings() : v1.0-beta + ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getCloudPcRemoteActionResults() + : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey() : v1.0-beta ? /deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings() : v1.0-beta /deviceManagement/intents/{deviceManagementIntent-id}/microsoft.graph.compare(templateId='{templateId}'): v1.0-beta + /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.getCloudPcRemoteActionResults(): v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey(): v1.0-beta /deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.getNonCompliantSettings(): v1.0-beta ? /deviceManagement/managementConditions/{managementCondition-id}/managementConditionStatements/microsoft.graph.getManagementConditionStatementsForPlatform(platform={platform}) diff --git a/profiles/DeviceManagement/crawl-log-v1.0-beta.json b/profiles/DeviceManagement/crawl-log-v1.0-beta.json index 2a75e4eb38b..251421b78bc 100644 --- a/profiles/DeviceManagement/crawl-log-v1.0-beta.json +++ b/profiles/DeviceManagement/crawl-log-v1.0-beta.json @@ -1193,6 +1193,14 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.yml" }, + "/deviceManagement/userExperienceAnalyticsDeviceScores": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.yml" + }, + "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.yml" + }, "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.yml" @@ -1313,6 +1321,22 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.yml" }, + "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.yml" + }, + "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.yml" + }, + "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.yml" + }, + "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/DeviceManagement.yml" + }, "/deviceManagement/windowsInformationProtectionAppLearningSummaries": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/DeviceManagement.yml" diff --git a/profiles/DeviceManagement/definitions/v1.0-beta.md b/profiles/DeviceManagement/definitions/v1.0-beta.md index a27bbd3af45..b6a71dfdd76 100644 --- a/profiles/DeviceManagement/definitions/v1.0-beta.md +++ b/profiles/DeviceManagement/definitions/v1.0-beta.md @@ -359,6 +359,8 @@ profiles: : v1.0-beta /deviceManagement/userExperienceAnalyticsDevicePerformance: v1.0-beta /deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}: v1.0-beta + /deviceManagement/userExperienceAnalyticsDeviceScores: v1.0-beta + /deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}: v1.0-beta /deviceManagement/userExperienceAnalyticsDeviceStartupHistory: v1.0-beta /deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}: v1.0-beta /deviceManagement/userExperienceAnalyticsDeviceStartupProcesses: v1.0-beta @@ -391,6 +393,12 @@ profiles: /deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}: v1.0-beta /deviceManagement/userExperienceAnalyticsScoreHistory: v1.0-beta /deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}: v1.0-beta + /deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics: v1.0-beta + /deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}: v1.0-beta + ? /deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices + : v1.0-beta + ? /deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id} + : v1.0-beta /deviceManagement/windowsInformationProtectionAppLearningSummaries: v1.0-beta /deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}: v1.0-beta /deviceManagement/windowsInformationProtectionNetworkLearningSummaries: v1.0-beta diff --git a/profiles/Devices.CorporateManagement/crawl-log-v1.0-beta.json b/profiles/Devices.CorporateManagement/crawl-log-v1.0-beta.json index bd3203c4d74..dcb5b5e6210 100644 --- a/profiles/Devices.CorporateManagement/crawl-log-v1.0-beta.json +++ b/profiles/Devices.CorporateManagement/crawl-log-v1.0-beta.json @@ -757,6 +757,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml" }, + "/deviceAppManagement/windowsManagementApp/microsoft.graph.setAsManagedInstaller": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml" + }, "/officeConfiguration": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml" diff --git a/profiles/Devices.CorporateManagement/definitions/v1.0-beta.md b/profiles/Devices.CorporateManagement/definitions/v1.0-beta.md index 43536f1a87c..19b09c67859 100644 --- a/profiles/Devices.CorporateManagement/definitions/v1.0-beta.md +++ b/profiles/Devices.CorporateManagement/definitions/v1.0-beta.md @@ -239,6 +239,7 @@ profiles: /deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}: v1.0-beta /deviceAppManagement/windowsManagementApp: v1.0-beta /deviceAppManagement/windowsManagementApp/$ref: v1.0-beta + /deviceAppManagement/windowsManagementApp/microsoft.graph.setAsManagedInstaller: v1.0-beta /officeConfiguration: v1.0-beta /officeConfiguration/clientConfigurations: v1.0-beta /officeConfiguration/clientConfigurations/{officeClientConfiguration-id}: v1.0-beta diff --git a/profiles/Education/crawl-log-v1.0-beta.json b/profiles/Education/crawl-log-v1.0-beta.json index 2a8fa4b04b0..cd6e2a59cd5 100644 --- a/profiles/Education/crawl-log-v1.0-beta.json +++ b/profiles/Education/crawl-log-v1.0-beta.json @@ -41,11 +41,11 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, - "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl()": { + "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.publish": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, - "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.publish": { + "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, @@ -73,6 +73,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, + "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Education.yml" + }, "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" @@ -177,11 +181,11 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, - "/education/me/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl()": { + "/education/me/assignments/{educationAssignment-id}/microsoft.graph.publish": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, - "/education/me/assignments/{educationAssignment-id}/microsoft.graph.publish": { + "/education/me/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, @@ -209,6 +213,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, + "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Education.yml" + }, "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" @@ -401,11 +409,11 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl()": { + "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.publish": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.publish": { + "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, @@ -433,6 +441,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" }, + "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Education.yml" + }, "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Education.yml" diff --git a/profiles/Education/definitions/v1.0-beta.md b/profiles/Education/definitions/v1.0-beta.md index 3ae72923d2e..cc1fa8310ba 100644 --- a/profiles/Education/definitions/v1.0-beta.md +++ b/profiles/Education/definitions/v1.0-beta.md @@ -17,8 +17,8 @@ profiles: /education/classes/{educationClass-id}/assignments/{educationAssignment-id}: v1.0-beta /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories: v1.0-beta /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}: v1.0-beta - /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl(): v1.0-beta /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.publish: v1.0-beta + /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder(): v1.0-beta /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources: v1.0-beta /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}: v1.0-beta /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric: v1.0-beta @@ -26,6 +26,8 @@ profiles: /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}: v1.0-beta ? /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return : v1.0-beta + ? /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder() + : v1.0-beta ? /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit : v1.0-beta ? /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit @@ -58,14 +60,15 @@ profiles: /education/me/assignments/{educationAssignment-id}: v1.0-beta /education/me/assignments/{educationAssignment-id}/categories: v1.0-beta /education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}: v1.0-beta - /education/me/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl(): v1.0-beta /education/me/assignments/{educationAssignment-id}/microsoft.graph.publish: v1.0-beta + /education/me/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder(): v1.0-beta /education/me/assignments/{educationAssignment-id}/resources: v1.0-beta /education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}: v1.0-beta /education/me/assignments/{educationAssignment-id}/rubric: v1.0-beta /education/me/assignments/{educationAssignment-id}/submissions: v1.0-beta /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}: v1.0-beta /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return: v1.0-beta + /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder(): v1.0-beta /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit: v1.0-beta /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit: v1.0-beta /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes: v1.0-beta @@ -116,8 +119,8 @@ profiles: /education/users/{educationUser-id}/assignments/{educationAssignment-id}: v1.0-beta /education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories: v1.0-beta /education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}: v1.0-beta - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl(): v1.0-beta /education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.publish: v1.0-beta + /education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder(): v1.0-beta /education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources: v1.0-beta /education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}: v1.0-beta /education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric: v1.0-beta @@ -125,6 +128,8 @@ profiles: /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}: v1.0-beta ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return : v1.0-beta + ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder() + : v1.0-beta ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit : v1.0-beta ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit diff --git a/profiles/Identity.DirectoryManagement/crawl-log-v1.0-beta.json b/profiles/Identity.DirectoryManagement/crawl-log-v1.0-beta.json index 1f045e8628c..b4cfd4c289d 100644 --- a/profiles/Identity.DirectoryManagement/crawl-log-v1.0-beta.json +++ b/profiles/Identity.DirectoryManagement/crawl-log-v1.0-beta.json @@ -129,6 +129,14 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml" }, + "/contacts/{orgContact-id}/transitiveReports": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml" + }, + "/contacts/{orgContact-id}/transitiveReports/$ref": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml" + }, "/contacts/microsoft.graph.delta()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml" @@ -533,6 +541,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml" }, + "/organization/{organization-id}/microsoft.graph.activateService": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml" + }, "/organization/{organization-id}/microsoft.graph.checkMemberGroups": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml" diff --git a/profiles/Identity.DirectoryManagement/definitions/v1.0-beta.md b/profiles/Identity.DirectoryManagement/definitions/v1.0-beta.md index 59926631e60..16b3c21e491 100644 --- a/profiles/Identity.DirectoryManagement/definitions/v1.0-beta.md +++ b/profiles/Identity.DirectoryManagement/definitions/v1.0-beta.md @@ -39,6 +39,8 @@ profiles: /contacts/{orgContact-id}/microsoft.graph.restore: v1.0-beta /contacts/{orgContact-id}/transitiveMemberOf: v1.0-beta /contacts/{orgContact-id}/transitiveMemberOf/$ref: v1.0-beta + /contacts/{orgContact-id}/transitiveReports: v1.0-beta + /contacts/{orgContact-id}/transitiveReports/$ref: v1.0-beta /contacts/microsoft.graph.delta(): v1.0-beta /contacts/microsoft.graph.getByIds: v1.0-beta /contacts/microsoft.graph.getUserOwnedObjects: v1.0-beta @@ -140,6 +142,7 @@ profiles: /organization/{organization-id}/branding: v1.0-beta /organization/{organization-id}/extensions: v1.0-beta /organization/{organization-id}/extensions/{extension-id}: v1.0-beta + /organization/{organization-id}/microsoft.graph.activateService: v1.0-beta /organization/{organization-id}/microsoft.graph.checkMemberGroups: v1.0-beta /organization/{organization-id}/microsoft.graph.checkMemberObjects: v1.0-beta /organization/{organization-id}/microsoft.graph.getMemberGroups: v1.0-beta diff --git a/profiles/Identity.Governance/crawl-log-v1.0-beta.json b/profiles/Identity.Governance/crawl-log-v1.0-beta.json index 5e21248dea1..3aae5959164 100644 --- a/profiles/Identity.Governance/crawl-log-v1.0-beta.json +++ b/profiles/Identity.Governance/crawl-log-v1.0-beta.json @@ -117,6 +117,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Identity.Governance.yml" }, + "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/microsoft.graph.filterByCurrentUser(on={on})": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Identity.Governance.yml" + }, "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/definition/microsoft.graph.stop": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Identity.Governance.yml" @@ -145,10 +149,18 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Identity.Governance.yml" }, + "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/microsoft.graph.filterByCurrentUser(on={on})": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Identity.Governance.yml" + }, "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/microsoft.graph.stop": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Identity.Governance.yml" }, + "/identityGovernance/accessReviews/definitions/microsoft.graph.filterByCurrentUser(on={on})": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Identity.Governance.yml" + }, "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/microsoft.graph.generateDownloadUri": { "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 dbd2b0394ba..3ead72e8a29 100644 --- a/profiles/Identity.Governance/crawl-log-v1.0.json +++ b/profiles/Identity.Governance/crawl-log-v1.0.json @@ -53,6 +53,46 @@ "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml" }, + "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/microsoft.graph.filterByCurrentUser(on={on})": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml" + }, + "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.acceptRecommendations": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml" + }, + "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.applyDecisions": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml" + }, + "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.batchRecordDecisions": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml" + }, + "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.resetDecisions": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml" + }, + "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.sendReminder": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml" + }, + "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.stop": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml" + }, + "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/microsoft.graph.filterByCurrentUser(on={on})": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml" + }, + "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/microsoft.graph.stop": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml" + }, + "/identityGovernance/accessReviews/definitions/microsoft.graph.filterByCurrentUser(on={on})": { + "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" diff --git a/profiles/Identity.Governance/definitions/v1.0-beta.md b/profiles/Identity.Governance/definitions/v1.0-beta.md index c4cf2e930c6..1de43a0507a 100644 --- a/profiles/Identity.Governance/definitions/v1.0-beta.md +++ b/profiles/Identity.Governance/definitions/v1.0-beta.md @@ -36,6 +36,8 @@ profiles: /agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}: v1.0-beta /businessFlowTemplates: v1.0-beta /businessFlowTemplates/{businessFlowTemplate-id}: v1.0-beta + ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/microsoft.graph.filterByCurrentUser(on={on}) + : v1.0-beta ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/definition/microsoft.graph.stop : v1.0-beta ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.acceptRecommendations @@ -50,7 +52,10 @@ profiles: : v1.0-beta ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.stop : v1.0-beta + ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/microsoft.graph.filterByCurrentUser(on={on}) + : v1.0-beta /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/microsoft.graph.stop: v1.0-beta + /identityGovernance/accessReviews/definitions/microsoft.graph.filterByCurrentUser(on={on}): 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 diff --git a/profiles/Identity.Governance/definitions/v1.0.md b/profiles/Identity.Governance/definitions/v1.0.md index 634615faa81..847105289e6 100644 --- a/profiles/Identity.Governance/definitions/v1.0.md +++ b/profiles/Identity.Governance/definitions/v1.0.md @@ -20,6 +20,24 @@ 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/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/microsoft.graph.filterByCurrentUser(on={on}) + : v1.0 + ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.acceptRecommendations + : v1.0 + ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.applyDecisions + : v1.0 + ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.batchRecordDecisions + : v1.0 + ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.resetDecisions + : v1.0 + ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.sendReminder + : v1.0 + ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.stop + : v1.0 + ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/microsoft.graph.filterByCurrentUser(on={on}) + : v1.0 + /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/microsoft.graph.stop: v1.0 + /identityGovernance/accessReviews/definitions/microsoft.graph.filterByCurrentUser(on={on}): 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 diff --git a/profiles/Identity.SignIns/crawl-log-v1.0-beta.json b/profiles/Identity.SignIns/crawl-log-v1.0-beta.json index 94fce2efc76..d18371ea899 100644 --- a/profiles/Identity.SignIns/crawl-log-v1.0-beta.json +++ b/profiles/Identity.SignIns/crawl-log-v1.0-beta.json @@ -65,6 +65,14 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml" }, + "/informationProtection/bitlocker/recoveryKeys": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml" + }, + "/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml" + }, "/informationProtection/dataLossPreventionPolicies": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml" @@ -197,6 +205,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml" }, + "/policies/accessReviewPolicy": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml" + }, "/policies/activityBasedTimeoutPolicies": { "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 48d9c4e2acd..1ac439787c1 100644 --- a/profiles/Identity.SignIns/crawl-log-v1.0.json +++ b/profiles/Identity.SignIns/crawl-log-v1.0.json @@ -37,6 +37,10 @@ "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml" }, + "/identityProviders/microsoft.graph.availableProviderTypes()": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml" + }, "/informationProtection": { "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml" @@ -109,6 +113,10 @@ "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml" }, + "/policies/authenticationFlowsPolicy": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml" + }, "/policies/authenticationMethodsPolicy": { "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 51a370b91f8..ddd61bf0dbc 100644 --- a/profiles/Identity.SignIns/definitions/v1.0-beta.md +++ b/profiles/Identity.SignIns/definitions/v1.0-beta.md @@ -23,6 +23,8 @@ profiles: /identityProviders/microsoft.graph.availableProviderTypes(): v1.0-beta /informationProtection: v1.0-beta /informationProtection/bitlocker: v1.0-beta + /informationProtection/bitlocker/recoveryKeys: v1.0-beta + /informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}: v1.0-beta /informationProtection/dataLossPreventionPolicies: v1.0-beta /informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}: v1.0-beta /informationProtection/dataLossPreventionPolicies/microsoft.graph.evaluate: v1.0-beta @@ -56,6 +58,7 @@ profiles: /organization/{organization-id}/certificateBasedAuthConfiguration: v1.0-beta /organization/{organization-id}/certificateBasedAuthConfiguration/$ref: v1.0-beta /policies: v1.0-beta + /policies/accessReviewPolicy: v1.0-beta /policies/activityBasedTimeoutPolicies: v1.0-beta /policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}: v1.0-beta /policies/adminConsentRequestPolicy: v1.0-beta diff --git a/profiles/Identity.SignIns/definitions/v1.0.md b/profiles/Identity.SignIns/definitions/v1.0.md index 9540bc30666..4bc70a6e21b 100644 --- a/profiles/Identity.SignIns/definitions/v1.0.md +++ b/profiles/Identity.SignIns/definitions/v1.0.md @@ -16,6 +16,7 @@ profiles: /identity/conditionalAccess/policies/{conditionalAccessPolicy-id}: v1.0 /identityProviders: v1.0 /identityProviders/{identityProvider-id}: v1.0 + /identityProviders/microsoft.graph.availableProviderTypes(): v1.0 /informationProtection: v1.0 /informationProtection/threatAssessmentRequests: v1.0 /informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}: v1.0 @@ -34,6 +35,7 @@ profiles: /policies/activityBasedTimeoutPolicies: v1.0 /policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}: v1.0 /policies/adminConsentRequestPolicy: v1.0 + /policies/authenticationFlowsPolicy: v1.0 /policies/authenticationMethodsPolicy: v1.0 /policies/authorizationPolicy: v1.0 /policies/claimsMappingPolicies: v1.0 diff --git a/profiles/Teams/crawl-log-v1.0.json b/profiles/Teams/crawl-log-v1.0.json index 382fa2411c2..fcee95de3bd 100644 --- a/profiles/Teams/crawl-log-v1.0.json +++ b/profiles/Teams/crawl-log-v1.0.json @@ -457,6 +457,14 @@ "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Teams.yml" }, + "/users/{user-id}/chats": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Teams.yml" + }, + "/users/{user-id}/chats/{chat-id}": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/Teams.yml" + }, "/users/{user-id}/joinedTeams": { "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Teams.yml" diff --git a/profiles/Teams/definitions/v1.0.md b/profiles/Teams/definitions/v1.0.md index e4b5763a30b..fb6c4295099 100644 --- a/profiles/Teams/definitions/v1.0.md +++ b/profiles/Teams/definitions/v1.0.md @@ -121,6 +121,8 @@ profiles: /teamwork: v1.0 /teamwork/workforceIntegrations: v1.0 /teamwork/workforceIntegrations/{workforceIntegration-id}: v1.0 + /users/{user-id}/chats: v1.0 + /users/{user-id}/chats/{chat-id}: v1.0 /users/{user-id}/joinedTeams: v1.0 /users/{user-id}/joinedTeams/{team-id}: v1.0 /users/{user-id}/teamwork: v1.0 diff --git a/profiles/Users.Actions/crawl-log-v1.0-beta.json b/profiles/Users.Actions/crawl-log-v1.0-beta.json index fd647b3795c..c25e90efc41 100644 --- a/profiles/Users.Actions/crawl-log-v1.0-beta.json +++ b/profiles/Users.Actions/crawl-log-v1.0-beta.json @@ -965,6 +965,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Actions.yml" }, + "/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.activateDeviceEsim": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Users.Actions.yml" + }, "/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Actions.yml" @@ -1017,6 +1021,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Actions.yml" }, + "/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.reprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Users.Actions.yml" + }, "/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Actions.yml" @@ -1025,6 +1033,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Actions.yml" }, + "/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.resizeCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Users.Actions.yml" + }, "/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.retire": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Actions.yml" @@ -1077,6 +1089,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Actions.yml" }, + "/users/{user-id}/managedDevices/microsoft.graph.bulkReprovisionCloudPc": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Users.Actions.yml" + }, "/users/{user-id}/managedDevices/microsoft.graph.executeAction": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Actions.yml" diff --git a/profiles/Users.Actions/definitions/v1.0-beta.md b/profiles/Users.Actions/definitions/v1.0-beta.md index f1213c3bf6b..1d87e6148f7 100644 --- a/profiles/Users.Actions/definitions/v1.0-beta.md +++ b/profiles/Users.Actions/definitions/v1.0-beta.md @@ -287,6 +287,7 @@ profiles: /users/{user-id}/mailFolders/{mailFolder-id}/microsoft.graph.move: v1.0-beta ? /users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/microsoft.graph.createDownloadUrl : v1.0-beta + /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.activateDeviceEsim: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.cleanWindowsDevice: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.createDeviceLogCollectionRequest: v1.0-beta @@ -300,8 +301,10 @@ profiles: /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.rebootNow: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.recoverPasscode: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.remoteLock: v1.0-beta + /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.reprovisionCloudPc: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.resetPasscode: v1.0-beta + /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.resizeCloudPc: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.retire: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.revokeAppleVppLicenses: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.rotateBitLockerKeys: v1.0-beta @@ -315,6 +318,7 @@ profiles: /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderScan: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderUpdateSignatures: v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.wipe: v1.0-beta + /users/{user-id}/managedDevices/microsoft.graph.bulkReprovisionCloudPc: v1.0-beta /users/{user-id}/managedDevices/microsoft.graph.executeAction: v1.0-beta /users/{user-id}/messages/{message-id}/attachments/microsoft.graph.createUploadSession: v1.0-beta /users/{user-id}/messages/{message-id}/microsoft.graph.calendarSharingMessage/microsoft.graph.accept: v1.0-beta diff --git a/profiles/Users.Functions/crawl-log-v1.0-beta.json b/profiles/Users.Functions/crawl-log-v1.0-beta.json index 7809535b9ca..5ea958ad286 100644 --- a/profiles/Users.Functions/crawl-log-v1.0-beta.json +++ b/profiles/Users.Functions/crawl-log-v1.0-beta.json @@ -205,6 +205,10 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Functions.yml" }, + "/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.getCloudPcRemoteActionResults()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Users.Functions.yml" + }, "/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Functions.yml" @@ -321,6 +325,14 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Functions.yml" }, + "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/microsoft.graph.filterByCurrentUser(on={on})": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Users.Functions.yml" + }, + "/users/{user-id}/pendingAccessReviewInstances/microsoft.graph.filterByCurrentUser(on={on})": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Users.Functions.yml" + }, "/users/{user-id}/planner/all/microsoft.graph.delta()": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.Functions.yml" diff --git a/profiles/Users.Functions/definitions/v1.0-beta.md b/profiles/Users.Functions/definitions/v1.0-beta.md index 1945e3f7409..6e5e7793348 100644 --- a/profiles/Users.Functions/definitions/v1.0-beta.md +++ b/profiles/Users.Functions/definitions/v1.0-beta.md @@ -66,6 +66,7 @@ profiles: /users/{user-id}/mailFolders/{mailFolder-id}/messages/microsoft.graph.delta(): v1.0-beta /users/{user-id}/mailFolders/microsoft.graph.delta(): v1.0-beta /users/{user-id}/managedAppRegistrations/microsoft.graph.getUserIdsWithFlaggedAppRegistration(): v1.0-beta + /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.getCloudPcRemoteActionResults(): v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey(): v1.0-beta /users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.getNonCompliantSettings(): v1.0-beta /users/{user-id}/messages/microsoft.graph.delta(): v1.0-beta @@ -100,6 +101,8 @@ profiles: /users/{user-id}/outlook/microsoft.graph.supportedLanguages(): v1.0-beta /users/{user-id}/outlook/microsoft.graph.supportedTimeZones(): v1.0-beta /users/{user-id}/outlook/microsoft.graph.supportedTimeZones(TimeZoneStandard={TimeZoneStandard}): v1.0-beta + /users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta + /users/{user-id}/pendingAccessReviewInstances/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta /users/{user-id}/planner/all/microsoft.graph.delta(): v1.0-beta /users/{user-id}/todo/lists/{todoTaskList-id}/tasks/microsoft.graph.delta(): v1.0-beta /users/{user-id}/todo/lists/microsoft.graph.delta(): v1.0-beta diff --git a/profiles/Users/crawl-log-v1.0-beta.json b/profiles/Users/crawl-log-v1.0-beta.json index 2c8e13e0a64..c737d185bc2 100644 --- a/profiles/Users/crawl-log-v1.0-beta.json +++ b/profiles/Users/crawl-log-v1.0-beta.json @@ -348,6 +348,14 @@ "/users/{user-id}/transitiveMemberOf/$ref": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Users.yml" + }, + "/users/{user-id}/transitiveReports": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Users.yml" + }, + "/users/{user-id}/transitiveReports/$ref": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Users.yml" } } } diff --git a/profiles/Users/definitions/v1.0-beta.md b/profiles/Users/definitions/v1.0-beta.md index dd4ffccb13c..ebe7b68c12e 100644 --- a/profiles/Users/definitions/v1.0-beta.md +++ b/profiles/Users/definitions/v1.0-beta.md @@ -103,5 +103,7 @@ profiles: /users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}: v1.0-beta /users/{user-id}/transitiveMemberOf: v1.0-beta /users/{user-id}/transitiveMemberOf/$ref: v1.0-beta + /users/{user-id}/transitiveReports: v1.0-beta + /users/{user-id}/transitiveReports/$ref: v1.0-beta ``` diff --git a/profiles/WindowsUpdates/crawl-log-v1.0-beta.json b/profiles/WindowsUpdates/crawl-log-v1.0-beta.json new file mode 100644 index 00000000000..711f365711b --- /dev/null +++ b/profiles/WindowsUpdates/crawl-log-v1.0-beta.json @@ -0,0 +1,197 @@ +{ + "resources": [], + "operations": { + "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}/microsoft.graph.incidentReport()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}/microsoft.graph.incidentReport()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/serviceAnnouncement/messages/microsoft.graph.archive": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/serviceAnnouncement/messages/microsoft.graph.favorite": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/serviceAnnouncement/messages/microsoft.graph.markRead": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/serviceAnnouncement/messages/microsoft.graph.markUnread": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/serviceAnnouncement/messages/microsoft.graph.unarchive": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/serviceAnnouncement/messages/microsoft.graph.unfavorite": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/catalog": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/catalog/entries": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/catalog/entries/{catalogEntry-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/members": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudience": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudienceById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/updatableAssets": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/updatableAssets/{updatableAsset-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssets": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssetsById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssets": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + }, + "/admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssetsById": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/WindowsUpdates.yml" + } + } +} diff --git a/profiles/WindowsUpdates/definitions/v1.0-beta.md b/profiles/WindowsUpdates/definitions/v1.0-beta.md new file mode 100644 index 00000000000..64528f819cc --- /dev/null +++ b/profiles/WindowsUpdates/definitions/v1.0-beta.md @@ -0,0 +1,67 @@ +# Microsoft Graph v1.0-beta Profile + +> see https://aka.ms/autorest + +``` yaml +profiles: + v1.0-beta: + resources: {} + operations: + /admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}/microsoft.graph.incidentReport(): v1.0-beta + /admin/serviceAnnouncement/issues/{serviceHealthIssue-id}/microsoft.graph.incidentReport(): v1.0-beta + /admin/serviceAnnouncement/messages/microsoft.graph.archive: v1.0-beta + /admin/serviceAnnouncement/messages/microsoft.graph.favorite: v1.0-beta + /admin/serviceAnnouncement/messages/microsoft.graph.markRead: v1.0-beta + /admin/serviceAnnouncement/messages/microsoft.graph.markUnread: v1.0-beta + /admin/serviceAnnouncement/messages/microsoft.graph.unarchive: v1.0-beta + /admin/serviceAnnouncement/messages/microsoft.graph.unfavorite: v1.0-beta + /admin/windows: v1.0-beta + /admin/windows/updates: v1.0-beta + /admin/windows/updates/catalog: v1.0-beta + /admin/windows/updates/catalog/entries: v1.0-beta + /admin/windows/updates/catalog/entries/{catalogEntry-id}: v1.0-beta + /admin/windows/updates/deployments: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/exclusions: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}: v1.0-beta + ? /admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers + : v1.0-beta + ? /admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById + : v1.0-beta + ? /admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers + : v1.0-beta + ? /admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById + : v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/members: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}: v1.0-beta + ? /admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers + : v1.0-beta + ? /admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById + : v1.0-beta + ? /admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers + : v1.0-beta + ? /admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById + : v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudience: v1.0-beta + /admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudienceById: v1.0-beta + /admin/windows/updates/updatableAssets: v1.0-beta + /admin/windows/updates/updatableAssets/{updatableAsset-id}: v1.0-beta + /admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers: v1.0-beta + /admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById: v1.0-beta + /admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers: v1.0-beta + /admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById: v1.0-beta + /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssets: v1.0-beta + /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssetsById: v1.0-beta + /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssets: v1.0-beta + /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssetsById: v1.0-beta + +``` diff --git a/profiles/WindowsUpdates/readme.md b/profiles/WindowsUpdates/readme.md new file mode 100644 index 00000000000..6fd86a0c502 --- /dev/null +++ b/profiles/WindowsUpdates/readme.md @@ -0,0 +1,23 @@ +# Microsoft Graph WindowsUpdates Profiles + +> see https://aka.ms/autorest + +> The files under this directory are the profile definitions used by autorest. + +``` yaml +require: +- $(this-folder)/definitions/v1.0-beta.md + +``` + +## Multi-API/Profile support for AutoRest v3 generators + +AutoRest V3 generators require the use of --tag=all-api-versions to select api files. + +This block is updated by an automatic script. Edits may be lost! + +``` yaml $(tag) == 'all-api-versions' /* autogenerated */ +input-file: +- $(this-folder)../../openApiDocs/beta/WindowsUpdates.yml + +``` diff --git a/src/Applications/Applications/readme.md b/src/Applications/Applications/readme.md index 7a77bca828b..7163ac6f7ca 100644 --- a/src/Applications/Applications/readme.md +++ b/src/Applications/Applications/readme.md @@ -90,6 +90,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.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 index fe23f3a1a1c..a6dc1ff0823 100644 --- a/src/Authentication/Authentication.Core/Authenticator.cs +++ b/src/Authentication/Authentication.Core/Authenticator.cs @@ -28,24 +28,41 @@ public static class Authenticator /// The to authenticate. /// Whether or not to force refresh a token if one exists. /// The cancellation token. + /// Callback to report FallBack to DeviceCode Authentication /// - public static async Task AuthenticateAsync(IAuthContext authContext, bool forceRefresh, CancellationToken cancellationToken) + public static async Task AuthenticateAsync(IAuthContext authContext, bool forceRefresh, CancellationToken cancellationToken, Action fallBackWarning = null) { - try + // Gets a static instance of IAuthenticationProvider when the client app hasn't changed. + var authProvider = AuthenticationHelpers.GetAuthProvider(authContext); + IClientApplicationBase clientApplication = null; + switch (authContext.AuthProviderType) { - // 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) - { + case AuthProviderType.DeviceCodeProvider: + case AuthProviderType.DeviceCodeProviderFallBack: 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. + break; + case AuthProviderType.InteractiveAuthenticationProvider: + { + var interactiveProvider = (authProvider as InteractiveAuthenticationProvider).ClientApplication; + //When User is not Interactive, Pre-Emptively Fallback and warn, to DeviceCode + if (!interactiveProvider.IsUserInteractive()) + { + authContext.AuthProviderType = AuthProviderType.DeviceCodeProviderFallBack; + fallBackWarning?.Invoke(); + var fallBackAuthContext= await AuthenticateAsync(authContext, forceRefresh, cancellationToken, fallBackWarning); + return fallBackAuthContext; + } + break; + } + case AuthProviderType.ClientCredentialProvider: + { + clientApplication = (authProvider as ClientCredentialProvider).ClientApplication; + break; + } + } + try + { + // Incremental scope consent without re-instantiating the auth provider. We will use provided instance. GraphRequestContext graphRequestContext = new GraphRequestContext(); graphRequestContext.CancellationToken = cancellationToken; graphRequestContext.MiddlewareOptions = new Dictionary @@ -81,18 +98,27 @@ public static async Task AuthenticateAsync(IAuthContext authContex } catch (AuthenticationException authEx) { - if ((authEx.InnerException is TaskCanceledException) && cancellationToken.IsCancellationRequested) + //Interactive Authentication Failure: Could Not Open Browser, fallback to DeviceAuth + if (IsUnableToOpenWebPageError(authEx)) { - // DeviceCodeTimeout - throw new Exception(string.Format( - CultureInfo.CurrentCulture, - ErrorConstants.Message.DeviceCodeTimeout, - Constants.MaxDeviceCodeTimeOut)); + authContext.AuthProviderType = AuthProviderType.DeviceCodeProviderFallBack; + //ReAuthenticate using DeviceCode as fallback. + var fallBackAuthContext = await AuthenticateAsync(authContext, forceRefresh, cancellationToken); + //Indicate that this was a Fallback + if (fallBackWarning != null && fallBackAuthContext.AuthProviderType == AuthProviderType.DeviceCodeProviderFallBack) + { + fallBackWarning(); + } + return fallBackAuthContext; } - else + // DeviceCode Authentication Failure: Timeout + if (authEx.InnerException is TaskCanceledException && cancellationToken.IsCancellationRequested) { - throw authEx.InnerException ?? authEx; + // DeviceCodeTimeout + throw new Exception(string.Format(CultureInfo.CurrentCulture, ErrorConstants.Message.DeviceCodeTimeout, Constants.MaxDeviceCodeTimeOut)); } + //Something Unknown Went Wrong + throw authEx.InnerException ?? authEx; } catch (Exception ex) { @@ -108,5 +134,12 @@ public static void LogOut(IAuthContext authContext) { AuthenticationHelpers.Logout(authContext); } + + private static bool IsUnableToOpenWebPageError(Exception exception) + { + return exception.InnerException is MsalClientException clientException && + clientException?.ErrorCode == MsalError.LinuxXdgOpen || + (exception.Message?.ToLower()?.Contains("unable to open a web page") ?? false); + } } } diff --git a/src/Authentication/Authentication.Core/Common/GraphSession.cs b/src/Authentication/Authentication.Core/Common/GraphSession.cs index 9de7e41c12d..e88356c011d 100644 --- a/src/Authentication/Authentication.Core/Common/GraphSession.cs +++ b/src/Authentication/Authentication.Core/Common/GraphSession.cs @@ -6,6 +6,7 @@ namespace Microsoft.Graph.PowerShell.Authentication { using Microsoft.Graph.PowerShell.Authentication.Core; using Microsoft.Graph.PowerShell.Authentication.Interfaces; + using System; using System.Security; using System.Threading; @@ -200,5 +201,22 @@ public static void Reset() throw new InvalidOperationException(ErrorConstants.Codes.SessionLockWriteDisposed, disposedException); } } + + private IPSGraphOutputWriter _outputWriter; + /// + /// Provides Access to output methods provided by the Cmdlet + /// + public IPSGraphOutputWriter OutputWriter + { + get + { + if (_outputWriter == null) + { + throw new InvalidOperationException(ErrorConstants.Codes.OutputNotInitialized); + } + return _outputWriter; + } + set => _outputWriter = value; + } } } diff --git a/src/Authentication/Authentication.Core/ErrorConstants.cs b/src/Authentication/Authentication.Core/ErrorConstants.cs index 3ee456579e6..6ba7e41f631 100644 --- a/src/Authentication/Authentication.Core/ErrorConstants.cs +++ b/src/Authentication/Authentication.Core/ErrorConstants.cs @@ -15,6 +15,7 @@ internal static class Codes internal const string SessionLockWriteDisposed = "sessionLockWriteDisposed"; internal const string SessionLockWriteRecursion = "sessionLockWriteRecursion"; internal const string InvalidJWT = "invalidJWT"; + internal const string OutputNotInitialized = "outputNotInitialized"; } public static class Message diff --git a/src/Authentication/Authentication.Core/Interfaces/IAuthContext.cs b/src/Authentication/Authentication.Core/Interfaces/IAuthContext.cs index 6e52994179d..edcc613e11e 100644 --- a/src/Authentication/Authentication.Core/Interfaces/IAuthContext.cs +++ b/src/Authentication/Authentication.Core/Interfaces/IAuthContext.cs @@ -19,6 +19,15 @@ public enum ContextScope CurrentUser } + public enum AuthProviderType + { + InteractiveAuthenticationProvider, + DeviceCodeProvider, + DeviceCodeProviderFallBack, + ClientCredentialProvider, + UserProvidedToken + } + public interface IAuthContext { string ClientId { get; set; } @@ -26,10 +35,11 @@ public interface IAuthContext string CertificateThumbprint { get; set; } string[] Scopes { get; set; } AuthenticationType AuthType { get; set; } + AuthProviderType AuthProviderType { get; set; } string CertificateName { get; set; } string Account { get; set; } string AppName { get; set; } ContextScope ContextScope { get; set; } X509Certificate2 Certificate { get; set; } } -} +} \ No newline at end of file diff --git a/src/Authentication/Authentication.Core/Interfaces/IPSGraphOutputWriter.cs b/src/Authentication/Authentication.Core/Interfaces/IPSGraphOutputWriter.cs new file mode 100644 index 00000000000..bca5a01bbdb --- /dev/null +++ b/src/Authentication/Authentication.Core/Interfaces/IPSGraphOutputWriter.cs @@ -0,0 +1,13 @@ +using System; + +namespace Microsoft.Graph.PowerShell.Authentication +{ + public interface IPSGraphOutputWriter + { + Action WriteObject { get; set; } + Action WriteDebug { get; set; } + Action WriteError { get; set; } + Action WriteInformation { get; set; } + Action WriteVerbose { get; set; } + } +} \ No newline at end of file diff --git a/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj b/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj index 9832da8843a..7eeb4c233bf 100644 --- a/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj +++ b/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj @@ -3,15 +3,16 @@ netstandard2.0;netcoreapp2.1;net461 Microsoft.Graph.PowerShell.Authentication.Core - 1.4.2 + 1.4.3 - - - + + + + diff --git a/src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs b/src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs index 1a5d80ca604..d75ad1e2d78 100644 --- a/src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs +++ b/src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs @@ -67,28 +67,41 @@ public static IAuthenticationProvider GetAuthProvider(IAuthContext authContext) { case AuthenticationType.Delegated: { + //Specify Default RedirectUri + //https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/MSAL.NET-uses-web-browser IPublicClientApplication publicClientApp = PublicClientApplicationBuilder - .Create(authContext.ClientId) - .WithTenantId(authContext.TenantId) - .WithAuthority(authorityUrl) - .WithClientCapabilities(new[] { "cp1" }) - .Build(); - + .Create(authContext.ClientId) + .WithTenantId(authContext.TenantId) + .WithAuthority(authorityUrl) + .WithClientCapabilities(new[] { "cp1" }) + .WithDefaultRedirectUri() + .Build(); ConfigureTokenCache(publicClientApp.UserTokenCache, authContext); - authProvider = new DeviceCodeProvider(publicClientApp, authContext.Scopes, async (result) => + switch (authContext.AuthProviderType) { - await Console.Out.WriteLineAsync(result.Message); - }); + case AuthProviderType.DeviceCodeProvider: + case AuthProviderType.DeviceCodeProviderFallBack: + authProvider = new DeviceCodeProvider(publicClientApp, authContext.Scopes, + result => + { + GraphSession.Instance.OutputWriter.WriteObject(result.Message); + return Task.CompletedTask; + }); + break; + case AuthProviderType.InteractiveAuthenticationProvider: + authProvider = new InteractiveAuthenticationProvider(publicClientApp, authContext.Scopes); + break; + } break; } case AuthenticationType.AppOnly: { IConfidentialClientApplication confidentialClientApp = ConfidentialClientApplicationBuilder - .Create(authContext.ClientId) - .WithTenantId(authContext.TenantId) - .WithAuthority(authorityUrl) - .WithCertificate(GetCertificate(authContext)) - .Build(); + .Create(authContext.ClientId) + .WithTenantId(authContext.TenantId) + .WithAuthority(authorityUrl) + .WithCertificate(GetCertificate(authContext)) + .Build(); ConfigureTokenCache(confidentialClientApp.AppTokenCache, authContext); string graphBaseUrl = GraphSession.Instance.Environment?.GraphEndpoint ?? "https://graph.microsoft.com"; @@ -96,15 +109,13 @@ public static IAuthenticationProvider GetAuthProvider(IAuthContext authContext) break; } case AuthenticationType.UserProvidedAccessToken: + authProvider = new DelegateAuthenticationProvider(requestMessage => { - authProvider = new DelegateAuthenticationProvider((requestMessage) => - { - requestMessage.Headers.Authorization = new AuthenticationHeaderValue("Bearer", - new NetworkCredential(string.Empty, GraphSession.Instance.UserProvidedToken).Password); - return Task.CompletedTask; - }); - break; - } + requestMessage.Headers.Authorization = new AuthenticationHeaderValue("Bearer", + new NetworkCredential(string.Empty, GraphSession.Instance.UserProvidedToken).Password); + return Task.CompletedTask; + }); + break; } return authProvider; } @@ -255,4 +266,4 @@ private static X509Certificate2 GetCertificateByName(string certificateName) return xCertificate; } } -} +} \ No newline at end of file diff --git a/src/Authentication/Authentication.Test/Helpers/AuthenticationHelpersTests.cs b/src/Authentication/Authentication.Test/Helpers/AuthenticationHelpersTests.cs index 3bf8906e43d..bfef1e97556 100644 --- a/src/Authentication/Authentication.Test/Helpers/AuthenticationHelpersTests.cs +++ b/src/Authentication/Authentication.Test/Helpers/AuthenticationHelpersTests.cs @@ -48,12 +48,76 @@ public async Task ShouldUseDelegateAuthProviderWhenUserAccessTokenIsProvidedAsyn } [Fact] - public void ShouldUseDeviceCodeProviderWhenDelegatedContextIsProvided() + public void ShouldUseDeviceCodeWhenSpecifiedByUser() { // Arrange AuthContext delegatedAuthContext = new AuthContext { AuthType = AuthenticationType.Delegated, + Scopes = new[] { "User.Read" }, + ContextScope = ContextScope.Process, + AuthProviderType = AuthProviderType.DeviceCodeProvider + }; + + // Act + IAuthenticationProvider authProvider = AuthenticationHelpers.GetAuthProvider(delegatedAuthContext); + + // Assert + Assert.IsType(authProvider); + + // reset static instance. + GraphSession.Reset(); + } + [Fact] + public void ShouldUseDeviceCodeWhenFallback() + { + // Arrange + AuthContext delegatedAuthContext = new AuthContext + { + AuthType = AuthenticationType.Delegated, + Scopes = new[] { "User.Read" }, + ContextScope = ContextScope.Process, + AuthProviderType = AuthProviderType.DeviceCodeProviderFallBack + }; + + // Act + IAuthenticationProvider authProvider = AuthenticationHelpers.GetAuthProvider(delegatedAuthContext); + + // Assert + Assert.IsType(authProvider); + + // reset static instance. + GraphSession.Reset(); + } + [Fact] + public void ShouldUseInteractiveProviderWhenDelegated() + { + // Arrange + AuthContext delegatedAuthContext = new AuthContext + { + AuthType = AuthenticationType.Delegated, + Scopes = new[] { "User.Read" }, + ContextScope = ContextScope.Process + }; + + // Act + IAuthenticationProvider authProvider = AuthenticationHelpers.GetAuthProvider(delegatedAuthContext); + + // Assert + Assert.IsType(authProvider); + + // reset static instance. + GraphSession.Reset(); + } + + [Fact] + public void ShouldUseInteractiveAuthenticationProviderWhenDelegatedContextAndClientIdIsProvided() + { + // Arrange + AuthContext delegatedAuthContext = new AuthContext + { + AuthType = AuthenticationType.Delegated, + ClientId = Guid.NewGuid().ToString(), Scopes = new string[] { "User.Read" }, ContextScope = ContextScope.Process }; @@ -62,7 +126,7 @@ public void ShouldUseDeviceCodeProviderWhenDelegatedContextIsProvided() IAuthenticationProvider authProvider = AuthenticationHelpers.GetAuthProvider(delegatedAuthContext); // Assert - Assert.IsType(authProvider); + Assert.IsType(authProvider); // reset static instance. GraphSession.Reset(); diff --git a/src/Authentication/Authentication.Test/Helpers/GraphSessionTests.cs b/src/Authentication/Authentication.Test/Helpers/GraphSessionTests.cs index cbc0ae6456e..288b45dd826 100644 --- a/src/Authentication/Authentication.Test/Helpers/GraphSessionTests.cs +++ b/src/Authentication/Authentication.Test/Helpers/GraphSessionTests.cs @@ -1,10 +1,23 @@ -namespace Microsoft.Graph.Authentication.Test.Helpers +using Microsoft.Graph.PowerShell.Authentication.Common; +using Microsoft.Graph.PowerShell.Authentication.Models; + +using Xunit.Abstractions; + +namespace Microsoft.Graph.Authentication.Test.Helpers { using Microsoft.Graph.PowerShell.Authentication; + using System; + using Xunit; public class GraphSessionTests { + private readonly ITestOutputHelper _helper; + + public GraphSessionTests(ITestOutputHelper helper) + { + _helper = helper; + } [Fact] public void GraphSessionShouldBeInitilizedAfterInitializerIsCalled() { @@ -16,7 +29,7 @@ public void GraphSessionShouldBeInitilizedAfterInitializerIsCalled() // reset static instance. GraphSession.Reset(); } - + [Fact] public void ShouldOverwriteExistingGraphSession() { @@ -30,8 +43,8 @@ public void ShouldOverwriteExistingGraphSession() // reset static instance. GraphSession.Reset(); - } - + } + [Fact] public void ShouldNotOverwriteExistingGraphSession() { @@ -54,6 +67,38 @@ public void ShouldThrowExceptionWhenSessionIsNotInitialized() Assert.Equal(PowerShell.Authentication.Core.ErrorConstants.Codes.SessionNotInitialized, exception.Message); + // reset static instance. + GraphSession.Reset(); + } + [Fact] + public void ShouldThrowExceptionWhenOutputIsNotInitialized() + { + GraphSession.Initialize(() => new GraphSession()); + InvalidOperationException exception = Assert.Throws(() => GraphSession.Instance.OutputWriter.WriteObject("Output")); + + Assert.NotNull(GraphSession.Instance); + Assert.Null(GraphSession.Instance.AuthContext); + + // reset static instance. + GraphSession.Reset(); + } + [Fact] + public void ShouldInitializeOutputWriter() + { + GraphSessionInitializer.InitializeSession(); + GraphSessionInitializer.InitializeOutput(new PsGraphOutputWriter + { + WriteError = (exception1, s, arg3, arg4) => _helper.WriteLine(exception1.Message), + WriteObject = _helper.WriteLine, + WriteDebug = _helper.WriteLine, + WriteInformation = (o, s) => _helper.WriteLine(s), + WriteVerbose = _helper.WriteLine + }); + GraphSession.Instance.OutputWriter.WriteObject("Output"); + + Assert.NotNull(GraphSession.Instance.OutputWriter); + Assert.NotNull(GraphSession.Instance.OutputWriter.WriteObject); + // reset static instance. GraphSession.Reset(); } diff --git a/src/Authentication/Authentication.Test/TokenCache/ProcessTokenCacheStorageTests.cs b/src/Authentication/Authentication.Test/TokenCache/ProcessTokenCacheStorageTests.cs index a9d0582c157..98ec575a5e9 100644 --- a/src/Authentication/Authentication.Test/TokenCache/ProcessTokenCacheStorageTests.cs +++ b/src/Authentication/Authentication.Test/TokenCache/ProcessTokenCacheStorageTests.cs @@ -1,21 +1,36 @@ namespace Microsoft.Graph.Authentication.Test.TokenCache { using Microsoft.Graph.PowerShell.Authentication; + using Microsoft.Graph.PowerShell.Authentication.Models; using Microsoft.Graph.PowerShell.Authentication.Common; using Microsoft.Graph.PowerShell.Authentication.TokenCache; + using System; using System.Text; using System.Threading; + using Xunit; + using Xunit.Abstractions; - public class ProcessTokenCacheStorageTests: IDisposable + public class ProcessTokenCacheStorageTests : IDisposable { // Defaults to process context scope. private IAuthContext _testAppContext1; - public ProcessTokenCacheStorageTests() + public ProcessTokenCacheStorageTests(ITestOutputHelper outputHelper) { _testAppContext1 = new AuthContext { ClientId = "test_app_id_1" }; GraphSessionInitializer.InitializeSession(); + GraphSessionInitializer.InitializeOutput(new PsGraphOutputWriter + { + WriteError = (exception, s, arg3, arg4) => + { + outputHelper.WriteLine(exception.Message); + }, + WriteDebug = outputHelper.WriteLine, + WriteInformation = (o, strings) => outputHelper.WriteLine(o.ToString()), + WriteObject = outputHelper.WriteLine, + WriteVerbose = outputHelper.WriteLine + }); } [Fact] @@ -93,7 +108,8 @@ public void ProccessTokenCacheShouldBeThreadSafe() // Act for (int i = 0; i < threads.Length; i++) { - threads[i] = new Thread(() => { + threads[i] = new Thread(() => + { byte[] contentBuffer = Encoding.UTF8.GetBytes(i.ToString()); TokenCacheStorage.SetToken(_testAppContext1, contentBuffer); Thread.Sleep(2000); diff --git a/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs b/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs index 4de46081237..ac527060cff 100644 --- a/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs +++ b/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs @@ -1,28 +1,31 @@ // ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ + +using AsyncHelpers = Microsoft.Graph.PowerShell.Authentication.Helpers.AsyncHelpers; + namespace Microsoft.Graph.PowerShell.Authentication.Cmdlets { using System; + using System.Collections; using System.Collections.Generic; using System.Linq; using System.Management.Automation; - using System.Threading; - using System.Threading.Tasks; using System.Net; - using System.Collections; using System.Security.Cryptography.X509Certificates; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Graph.Authentication.Core; + using Microsoft.Graph.PowerShell.Authentication.Common; using Microsoft.Graph.PowerShell.Authentication.Helpers; + using Microsoft.Graph.PowerShell.Authentication.Interfaces; using Microsoft.Graph.PowerShell.Authentication.Models; - - using Interfaces; - using Common; - - using static Helpers.AsyncHelpers; - using Microsoft.Graph.Authentication.Core; + using Microsoft.Graph.PowerShell.Authentication.Properties; using Microsoft.Graph.PowerShell.Authentication.Utilities; + using static AsyncHelpers; + [Cmdlet(VerbsCommunications.Connect, "MgGraph", DefaultParameterSetName = Constants.UserParameterSet)] [Alias("Connect-Graph")] public class ConnectMgGraph : PSCmdlet, IModuleAssemblyInitializer, IModuleAssemblyCleanup @@ -36,6 +39,9 @@ public class ConnectMgGraph : PSCmdlet, IModuleAssemblyInitializer, IModuleAssem Position = 1, Mandatory = true, HelpMessage = "The client id of your application.")] + [Parameter(ParameterSetName = Constants.UserParameterSet, + Mandatory = false, + HelpMessage = "The client id of your application.")] [Alias("AppId")] public string ClientId { get; set; } @@ -87,12 +93,27 @@ public class ConnectMgGraph : PSCmdlet, IModuleAssemblyInitializer, IModuleAssem [Alias("EnvironmentName", "NationalCloud")] public string Environment { get; set; } + [Parameter(ParameterSetName = Constants.UserParameterSet, + Mandatory = false, HelpMessage = "Use device code authentication instead of a browser control")] + [Alias("DeviceCode", "DeviceAuth", "Device")] + public SwitchParameter UseDeviceAuthentication { get; set; } + /// + /// Wait for .NET debugger to attach + /// + [Parameter(Mandatory = false, + DontShow = true, + HelpMessage = "Wait for .NET debugger to attach")] + public SwitchParameter Break { get; set; } + private readonly CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource(); private IGraphEnvironment environment; - protected override void BeginProcessing() { + if (Break) + { + this.Break(); + } base.BeginProcessing(); ValidateParameters(); @@ -109,12 +130,6 @@ protected override void BeginProcessing() environment = GraphEnvironment.BuiltInEnvironments[GraphEnvironmentConstants.EnvironmentName.Global]; } } - - protected override void EndProcessing() - { - base.EndProcessing(); - } - protected override void ProcessRecord() { base.ProcessRecord(); @@ -122,6 +137,8 @@ protected override void ProcessRecord() { using (var asyncCommandRuntime = new CustomAsyncCommandRuntime(this, _cancellationTokenSource.Token)) { + // Init output to this Cmdlet + GraphSessionInitializer.InitializeOutput(asyncCommandRuntime); asyncCommandRuntime.Wait(ProcessRecordAsync(), _cancellationTokenSource.Token); } } @@ -159,7 +176,6 @@ private async Task ProcessRecordAsync() IAuthContext authContext = new AuthContext { TenantId = TenantId }; // Set selected environment to the session object. GraphSession.Instance.Environment = environment; - switch (ParameterSetName) { case Constants.UserParameterSet: @@ -170,9 +186,14 @@ private async Task ProcessRecordAsync() _cancellationTokenSource.CancelAfter(authTimeout); authContext.AuthType = AuthenticationType.Delegated; string[] processedScopes = ProcessScopes(Scopes); - authContext.Scopes = processedScopes.Length == 0 ? new string[] { "User.Read" } : processedScopes; + authContext.Scopes = processedScopes.Length == 0 ? new[] { "User.Read" } : processedScopes; // Default to CurrentUser but allow the customer to change this via `ContextScope` param. authContext.ContextScope = this.IsParameterBound(nameof(ContextScope)) ? ContextScope : ContextScope.CurrentUser; + authContext.AuthProviderType = UseDeviceAuthentication ? AuthProviderType.DeviceCodeProvider : AuthProviderType.InteractiveAuthenticationProvider; + if (!string.IsNullOrWhiteSpace(ClientId)) + { + authContext.ClientId = ClientId; + } } break; case Constants.AppParameterSet: @@ -184,6 +205,7 @@ private async Task ProcessRecordAsync() authContext.Certificate = Certificate; // Default to Process but allow the customer to change this via `ContextScope` param. authContext.ContextScope = this.IsParameterBound(nameof(ContextScope)) ? ContextScope : ContextScope.Process; + authContext.AuthProviderType = AuthProviderType.ClientCredentialProvider; } break; case Constants.AccessTokenParameterSet: @@ -192,24 +214,25 @@ private async Task ProcessRecordAsync() authContext.ContextScope = ContextScope.Process; // Store user provided access token to a session object. GraphSession.Instance.UserProvidedToken = new NetworkCredential(string.Empty, AccessToken).SecurePassword; + authContext.AuthProviderType = AuthProviderType.UserProvidedToken; } break; } try { - // Save auth context to session state. - GraphSession.Instance.AuthContext = await Authenticator.AuthenticateAsync(authContext, ForceRefresh, _cancellationTokenSource.Token); + + GraphSession.Instance.AuthContext = await Authenticator.AuthenticateAsync(authContext, ForceRefresh, + _cancellationTokenSource.Token, + () => { WriteWarning(Resources.DeviceCodeFallback); }); } - catch(Exception ex) + catch (Exception ex) { throw ex; } - WriteObject("Welcome To Microsoft Graph!"); } } - protected override void StopProcessing() { _cancellationTokenSource.Cancel(); @@ -254,7 +277,7 @@ private void ValidateParameters() } // Certificate Thumbprint, Name or Actual Certificate - if (string.IsNullOrEmpty(CertificateThumbprint) && string.IsNullOrEmpty(CertificateName) && this.Certificate == null) + if (string.IsNullOrEmpty(CertificateThumbprint) && string.IsNullOrEmpty(CertificateName) && Certificate == null) { this.ThrowParameterError($"{nameof(CertificateThumbprint)} or {nameof(CertificateName)} or {nameof(Certificate)}"); } @@ -305,4 +328,4 @@ public void OnRemove(PSModuleInfo psModuleInfo) DependencyAssemblyResolver.Reset(); } } -} +} \ No newline at end of file diff --git a/src/Authentication/Authentication/Common/GraphSessionInitializer.cs b/src/Authentication/Authentication/Common/GraphSessionInitializer.cs index 393ea82d12a..13efbf5c7d2 100644 --- a/src/Authentication/Authentication/Common/GraphSessionInitializer.cs +++ b/src/Authentication/Authentication/Common/GraphSessionInitializer.cs @@ -2,8 +2,14 @@ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ +using System; +using Microsoft.Graph.PowerShell.Authentication.Helpers; +using Microsoft.Graph.PowerShell.Authentication.Models; + namespace Microsoft.Graph.PowerShell.Authentication.Common { + using System.Management.Automation; + using Microsoft.Graph.PowerShell.Authentication.Interfaces; public static class GraphSessionInitializer @@ -15,7 +21,6 @@ public static void InitializeSession() { GraphSession.Initialize(() => CreateInstance()); } - /// /// Creates a new instance of a . /// @@ -27,5 +32,44 @@ internal static GraphSession CreateInstance(IDataStore dataStore = null) DataStore = dataStore ?? new DiskDataStore() }; } + /// + /// Initializes . with Output via Cmdlet methods + /// + /// + internal static void InitializeOutput(CustomAsyncCommandRuntime cmdLet) + { + var outputWriter = new PsGraphOutputWriter + { + WriteDebug = cmdLet.WriteDebug, + WriteInformation = (o, strings) => + { + cmdLet.WriteInformation(new InformationRecord(o, strings)); + }, + WriteObject = cmdLet.WriteObject, + WriteVerbose = cmdLet.WriteVerbose, + WriteError = (exception, errorId, errorCategory, targetObject) => + { + var parseResult = Enum.TryParse(errorCategory.ToString(), out ErrorCategory result); + if (!parseResult) + { + result = ErrorCategory.NotSpecified; + } + var errorRecord = new ErrorRecord(exception, errorId, result, targetObject); + cmdLet.WriteError(errorRecord); + } + }; + InitializeOutput(outputWriter); + } + /// + /// Initializes . with Output via Cmdlet methods + /// + /// + internal static void InitializeOutput(IPSGraphOutputWriter outputWriter) + { + GraphSession.Modify(session => + { + session.OutputWriter = outputWriter; + }); + } } } diff --git a/src/Authentication/Authentication/Helpers/AttachDebugger.cs b/src/Authentication/Authentication/Helpers/AttachDebugger.cs index a8d3bbb36a8..abb7da0b862 100644 --- a/src/Authentication/Authentication/Helpers/AttachDebugger.cs +++ b/src/Authentication/Authentication/Helpers/AttachDebugger.cs @@ -16,19 +16,17 @@ internal static void Break(this PSCmdlet invokedCmdLet) { while (!Debugger.IsAttached) { - Console.Error.WriteLine($"Waiting for debugger to attach to process {Process.GetCurrentProcess().Id}"); + invokedCmdLet.WriteWarning($"Waiting for debugger to attach to process {Process.GetCurrentProcess().Id}"); for (var i = 0; i < 50; i++) { if (Debugger.IsAttached) { break; } - Thread.Sleep(100); - Console.Error.Write("."); + invokedCmdLet.WriteProgress(new ProgressRecord(0, "Waiting for Debugger", + "Waiting for Debugger to attach to process")); } - - Console.Error.WriteLine(); } Debugger.Break(); diff --git a/src/Authentication/Authentication/Microsoft.Graph.Authentication.csproj b/src/Authentication/Authentication/Microsoft.Graph.Authentication.csproj index 17acca82e6a..d9d9b27a154 100644 --- a/src/Authentication/Authentication/Microsoft.Graph.Authentication.csproj +++ b/src/Authentication/Authentication/Microsoft.Graph.Authentication.csproj @@ -1,6 +1,6 @@ - 1.4.2 + 1.6.0 7.1 netstandard2.0 Library diff --git a/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 b/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 index f237e5782e9..8be4ce5177b 100644 --- a/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 +++ b/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 @@ -12,7 +12,7 @@ RootModule = './Microsoft.Graph.Authentication.psm1' # Version number of this module. -ModuleVersion = '1.5.0' +ModuleVersion = '1.6.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 2dd0e3787f2..573d2d9366e 100644 --- a/src/Authentication/Authentication/Microsoft.Graph.Authentication.psm1 +++ b/src/Authentication/Authentication/Microsoft.Graph.Authentication.psm1 @@ -7,4 +7,22 @@ if (Test-Path -Path "$PSScriptRoot\StartupScripts" -ErrorAction Ignore) Get-ChildItem "$PSScriptRoot\StartupScripts" -ErrorAction Stop | ForEach-Object { . $_.FullName } +} + +$DependencyPath = (Join-Path $PSScriptRoot -ChildPath "Dependencies") +if (Test-Path $DependencyPath -ErrorAction Ignore) +{ + try + { + Get-ChildItem -ErrorAction Stop -Path $DependencyPath -Filter "*.dll" | ForEach-Object { + try + { + Add-Type -Path $_.FullName -ErrorAction Ignore | Out-Null + } + catch { + Write-Verbose $_ + } + } + } + catch {} } \ No newline at end of file diff --git a/src/Authentication/Authentication/Models/AuthContext.cs b/src/Authentication/Authentication/Models/AuthContext.cs index 5a7205e3a57..d52fbb312c2 100644 --- a/src/Authentication/Authentication/Models/AuthContext.cs +++ b/src/Authentication/Authentication/Models/AuthContext.cs @@ -13,6 +13,7 @@ public class AuthContext: IAuthContext public string CertificateThumbprint { get; set; } public string[] Scopes { get; set; } public AuthenticationType AuthType { get; set; } + public AuthProviderType AuthProviderType { get; set; } public string CertificateName { get; set; } public string Account { get; set; } public string AppName { get; set; } @@ -24,4 +25,4 @@ public AuthContext() ClientId = PowerShellClientId; } } -} +} \ No newline at end of file diff --git a/src/Authentication/Authentication/Models/PsGraphOutputWriter.cs b/src/Authentication/Authentication/Models/PsGraphOutputWriter.cs new file mode 100644 index 00000000000..afd6c12bf3a --- /dev/null +++ b/src/Authentication/Authentication/Models/PsGraphOutputWriter.cs @@ -0,0 +1,17 @@ +// ------------------------------------------------------------------------------ +// 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.Models +{ + using System; + + internal class PsGraphOutputWriter : IPSGraphOutputWriter + { + public Action WriteObject { get; set; } + public Action WriteDebug { get; set; } + public Action WriteError { get; set; } + public Action WriteInformation { get; set; } + public Action WriteVerbose { get; set; } + } +} \ No newline at end of file diff --git a/src/Authentication/Authentication/Properties/Resources.Designer.cs b/src/Authentication/Authentication/Properties/Resources.Designer.cs index 6d7e3e333ae..460051f0d51 100644 --- a/src/Authentication/Authentication/Properties/Resources.Designer.cs +++ b/src/Authentication/Authentication/Properties/Resources.Designer.cs @@ -123,6 +123,15 @@ internal static string ContentTypeExceptionErrorMessage { } } + /// + /// Looks up a localized string similar to Interactive authentication is not supported in this session, Falling Back to DeviceCode. Future versions will not automatically fallback to DeviceCode.. + /// + internal static string DeviceCodeFallback { + get { + return ResourceManager.GetString("DeviceCodeFallback", resourceCulture); + } + } + /// /// Looks up a localized string similar to Path '{0}' resolves to a directory. Specify a path including a file name, and then retry the command.. /// @@ -204,6 +213,15 @@ internal static string InferredFileNameVerboseMessage { } } + /// + /// Looks up a localized string similar to Interactive authentication is not supported in this session, please run cmdlet 'Connect-MgGraph -UseDeviceAuthentication'.. + /// + internal static string InteractiveAuthNotSupported { + get { + return ResourceManager.GetString("InteractiveAuthNotSupported", resourceCulture); + } + } + /// /// Looks up a localized string similar to Invalid Host {0}. /// diff --git a/src/Authentication/Authentication/Properties/Resources.resx b/src/Authentication/Authentication/Properties/Resources.resx index 4e151fe31e8..f9618810abb 100644 --- a/src/Authentication/Authentication/Properties/Resources.resx +++ b/src/Authentication/Authentication/Properties/Resources.resx @@ -223,4 +223,10 @@ Request returned Non-Json response of {0}, Please specify '-OutputFilePath' - \ No newline at end of file + + Interactive authentication is not supported in this session, please run cmdlet 'Connect-MgGraph -UseDeviceAuthentication'. + + + Interactive authentication is not supported in this session, falling back to DeviceCode. Future versions will not automatically fallback to DeviceCode. + + diff --git a/src/Authentication/Authentication/Utilities/DependencyAssemblyResolver.cs b/src/Authentication/Authentication/Utilities/DependencyAssemblyResolver.cs index 82fe833d2dc..4cb7f5fe4b1 100644 --- a/src/Authentication/Authentication/Utilities/DependencyAssemblyResolver.cs +++ b/src/Authentication/Authentication/Utilities/DependencyAssemblyResolver.cs @@ -13,7 +13,7 @@ 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.Identity.Client", new Version("4.29.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") }, diff --git a/src/Authentication/Authentication/test/Connect-MgGraph.Tests.ps1 b/src/Authentication/Authentication/test/Connect-MgGraph.Tests.ps1 index 76845efcd07..dde084b74d3 100644 --- a/src/Authentication/Authentication/test/Connect-MgGraph.Tests.ps1 +++ b/src/Authentication/Authentication/test/Connect-MgGraph.Tests.ps1 @@ -6,11 +6,11 @@ BeforeAll { } Describe 'Connect-MgGraph In Delegated Mode' { It 'ShouldThrowExceptionWhenInvalidTenantIdIsSpecified' { - { Connect-MgGraph -TenantId "thisdomaindoesnotexist.com" -Scopes 'User.Read.All' -ErrorAction Stop } | Should -Throw -ExpectedMessage "*Tenant 'thisdomaindoesnotexist.com' not found*" + { Connect-MgGraph -TenantId "thisdomaindoesnotexist.com" -Scopes 'User.Read.All' -ErrorAction Stop -UseDeviceAuthentication } | Should -Throw -ExpectedMessage "*Tenant 'thisdomaindoesnotexist.com' not found*" } It 'ShouldThrowExceptionWhenInvalidScopeIsSpecified' { - { Connect-MgGraph -Scopes 'User.Read.XYZ' -ErrorAction Stop } | Should -Throw -ExpectedMessage "*The scope 'User.Read.XYZ offline_access profile openid' does not exist*" + { Connect-MgGraph -Scopes 'User.Read.XYZ' -ErrorAction Stop -UseDeviceAuthentication } | Should -Throw -ExpectedMessage "*The scope 'User.Read.XYZ offline_access profile openid' does not exist*" } } @@ -24,13 +24,13 @@ Describe 'Connect-MgGraph In App Mode' { } } -Describe 'Connect-MgGraph Depencency Resolution' { +Describe 'Connect-MgGraph Dependency Resolution' { BeforeAll { - Install-Module Az.Accounts -Repository PSGallery -Force + Install-Module Az.Accounts -Repository PSGallery -Force -AllowClobber } 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:*" + { Connect-MgGraph -Scopes "inavid.scope" -ErrorAction Stop -UseDeviceAuthentication } | Should -Throw -ExpectedMessage "*AADSTS70011:*" } } \ No newline at end of file diff --git a/src/Bookings/Bookings/readme.md b/src/Bookings/Bookings/readme.md index 2acb273bbe2..dd7888aa830 100644 --- a/src/Bookings/Bookings/readme.md +++ b/src/Bookings/Bookings/readme.md @@ -35,6 +35,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Calendar/Calendar/readme.md b/src/Calendar/Calendar/readme.md index e5da3a8c34e..4930593ea64 100644 --- a/src/Calendar/Calendar/readme.md +++ b/src/Calendar/Calendar/readme.md @@ -52,6 +52,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/ChangeNotifications/ChangeNotifications/readme.md b/src/ChangeNotifications/ChangeNotifications/readme.md index ea6aa444463..d8b790576c5 100644 --- a/src/ChangeNotifications/ChangeNotifications/readme.md +++ b/src/ChangeNotifications/ChangeNotifications/readme.md @@ -34,6 +34,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/CloudCommunications/CloudCommunications/readme.md b/src/CloudCommunications/CloudCommunications/readme.md index 645dc789f9f..7a9d6f8b0c9 100644 --- a/src/CloudCommunications/CloudCommunications/readme.md +++ b/src/CloudCommunications/CloudCommunications/readme.md @@ -59,6 +59,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Compliance/Compliance/readme.md b/src/Compliance/Compliance/readme.md index 7d20e9ee3ab..17afab3b091 100644 --- a/src/Compliance/Compliance/readme.md +++ b/src/Compliance/Compliance/readme.md @@ -47,6 +47,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md b/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md index d43cb270da9..4912a0d856e 100644 --- a/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md +++ b/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md @@ -34,6 +34,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.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 19803af9239..290f44b9b39 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/readme.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/readme.md @@ -39,9 +39,13 @@ subject-prefix: '' ``` yaml directive: # Remove invalid paths that exceed Windows file name limit. - - remove-path-by-operation: ^deviceManagement.(deviceShellScripts.userRunStates.deviceRunStates.managedDevice_.*|windowsAutopilotDeploymentProfiles.(assignedDevices_updateDeviceProperties|assignedDevices.deploymentProfile_assign|assignedDevices.intendedDeploymentProfile_assign|assignedDevices_assignResourceAccountToDevice|assignedDevices_unassignResourceAccountFromDevice)|deviceComplianceScripts.deviceRunStates.managedDevice_.*|deviceCustomAttributeShellScripts.(deviceRunStates.managedDevice_.*|userRunStates.deviceRunStates.managedDevice_.*)|deviceManagementScripts.deviceRunStates.managedDevice(_updateWindowsDeviceAccount|_logoutSharedAppleDeviceActiveUser|_deleteUserFromSharedAppleDevice|_createDeviceLogCollectionRequest|_sendCustomNotificationToCompanyPortal|_triggerConfigurationManagerAction|_windowsDefenderUpdateSignatures)|deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_.*|deviceConfigurations.groupAssignments.deviceConfiguration(_assignedAccessMultiModeProfiles|_windowsPrivacyAccessControls)|deviceHealthScripts.deviceRunStates.managedDevice(_sendCustomNotificationToCompanyPortal|_createDeviceLogCollectionRequest)|deviceShellScripts.deviceRunStates.managedDevice_sendCustomNotificationToCompanyPortal)$ + - remove-path-by-operation: ^deviceManagement.(reusablePolicySettings.referencingConfigurationPolicies_(assign|createCopy)|deviceShellScripts.userRunStates.deviceRunStates.managedDevice_.*|windowsAutopilotDeploymentProfiles.(assignedDevices_updateDeviceProperties|assignedDevices.deploymentProfile_assign|assignedDevices.intendedDeploymentProfile_assign|assignedDevices_assignResourceAccountToDevice|assignedDevices_unassignResourceAccountFromDevice)|deviceComplianceScripts.deviceRunStates.managedDevice_.*|deviceCustomAttributeShellScripts.(deviceRunStates.managedDevice_.*|userRunStates.deviceRunStates.managedDevice_.*)|deviceManagementScripts.deviceRunStates.managedDevice(_updateWindowsDeviceAccount|_logoutSharedAppleDeviceActiveUser|_deleteUserFromSharedAppleDevice|_createDeviceLogCollectionRequest|_sendCustomNotificationToCompanyPortal|_triggerConfigurationManagerAction|_windowsDefenderUpdateSignatures)|deviceManagementScripts.userRunStates.deviceRunStates.managedDevice_.*|deviceConfigurations.groupAssignments.deviceConfiguration(_assignedAccessMultiModeProfiles|_windowsPrivacyAccessControls)|deviceHealthScripts.deviceRunStates.managedDevice(_sendCustomNotificationToCompanyPortal|_createDeviceLogCollectionRequest)|deviceShellScripts.deviceRunStates.managedDevice_sendCustomNotificationToCompanyPortal)$ # Remove cmdlets. + - where: + verb: Get + subject: ^DeviceManagementReportCertificateReport$ + remove: true - where: verb: New subject: ^DeviceManagementComanagedDeviceLogCollectionRequest$ @@ -91,6 +95,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.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 e99207d156a..1767711747b 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.5.0 +module-version: 1.6.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 d569c79ac76..b67cec0495c 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/readme.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/readme.md @@ -41,10 +41,9 @@ directive: # Remove invalid paths. - remove-path-by-operation: ^deviceManagement_.*UserExperienceAnalytics.*$ ``` - ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.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 78d089c74c9..f17dbfd071c 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.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/DeviceManagement/DeviceManagement/readme.md b/src/DeviceManagement/DeviceManagement/readme.md index 7e38cc30287..8b1f515a483 100644 --- a/src/DeviceManagement/DeviceManagement/readme.md +++ b/src/DeviceManagement/DeviceManagement/readme.md @@ -77,6 +77,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.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 084dcc316eb..06f2d533671 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.5.0 +module-version: 1.6.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 526fb534f63..65dc8f8c133 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.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/DirectoryObjects/DirectoryObjects/readme.md b/src/DirectoryObjects/DirectoryObjects/readme.md index ca4114ed6b4..199cadfae7c 100644 --- a/src/DirectoryObjects/DirectoryObjects/readme.md +++ b/src/DirectoryObjects/DirectoryObjects/readme.md @@ -54,6 +54,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Education/Education/readme.md b/src/Education/Education/readme.md index 7ebc6978f31..c08f5968b5d 100644 --- a/src/Education/Education/readme.md +++ b/src/Education/Education/readme.md @@ -35,6 +35,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Files/Files/readme.md b/src/Files/Files/readme.md index de7745c3c21..ec216554930 100644 --- a/src/Files/Files/readme.md +++ b/src/Files/Files/readme.md @@ -43,6 +43,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Financials/Financials/readme.md b/src/Financials/Financials/readme.md index 52bd63027db..662ba25cea8 100644 --- a/src/Financials/Financials/readme.md +++ b/src/Financials/Financials/readme.md @@ -57,6 +57,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Groups/Groups/readme.md b/src/Groups/Groups/readme.md index d93fcf3e3a3..158b07a116a 100644 --- a/src/Groups/Groups/readme.md +++ b/src/Groups/Groups/readme.md @@ -137,6 +137,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.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 4cde72065ae..cef66813952 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.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Identity.Governance/Identity.Governance/Microsoft.Graph.Identity.Governance.psd1 b/src/Identity.Governance/Identity.Governance/Microsoft.Graph.Identity.Governance.psd1 index 4a25fc5e289..32748be7f45 100644 --- a/src/Identity.Governance/Identity.Governance/Microsoft.Graph.Identity.Governance.psd1 +++ b/src/Identity.Governance/Identity.Governance/Microsoft.Graph.Identity.Governance.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 8/25/2020 +# Generated on: 5/19/2021 # @{ @@ -12,13 +12,13 @@ RootModule = './Microsoft.Graph.Identity.Governance.psm1' # Version number of this module. -ModuleVersion = '0.9.2' +ModuleVersion = '1.5.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' # ID used to uniquely identify this module -GUID = '4ab68625-d33a-42dd-a77d-aa44d506a54f' +GUID = 'edabda64-009d-44a9-8cd6-b52265ee7276' # Author of this module Author = 'Microsoft Corporation' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '0.9.1'; }) +RequiredModules = @(@{ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Microsoft.Graph.Identity.Governance.private.dll' @@ -75,42 +75,21 @@ FunctionsToExport = 'Add-MgAccessReviewDecision', 'Get-MgAccessReviewInstance', 'Get-MgAccessReviewMyDecision', 'Get-MgAccessReviewReviewer', 'Get-MgAgreement', 'Get-MgAgreementAcceptance', 'Get-MgAgreementFile', - 'Get-MgAgreementFileLocalization', 'Get-MgBusinessFlowTemplate', + 'Get-MgAgreementFileLocalization', + 'Get-MgAgreementFileLocalizationVersion', + 'Get-MgAgreementFileVersion', 'Get-MgBusinessFlowTemplate', 'Get-MgEntitlementManagementAccessPackage', - 'Get-MgEntitlementManagementAccessPackageAccessPackageCatalogByRef', 'Get-MgEntitlementManagementAccessPackageAssignment', - 'Get-MgEntitlementManagementAccessPackageAssignmentAccessPackage', - 'Get-MgEntitlementManagementAccessPackageAssignmentAccessPackageAssignmentPolicy', - 'Get-MgEntitlementManagementAccessPackageAssignmentAccessPackageAssignmentRequest', - 'Get-MgEntitlementManagementAccessPackageAssignmentAccessPackageAssignmentResourceRole', 'Get-MgEntitlementManagementAccessPackageAssignmentPolicy', - 'Get-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackage', - 'Get-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageByRef', - 'Get-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageCatalog', 'Get-MgEntitlementManagementAccessPackageAssignmentRequest', - 'Get-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackage', - 'Get-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageAssignment', - 'Get-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageByRef', - 'Get-MgEntitlementManagementAccessPackageAssignmentRequestRequestor', 'Get-MgEntitlementManagementAccessPackageAssignmentResourceRole', - 'Get-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageAssignment', - 'Get-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageResourceRole', - 'Get-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageResourceScope', - 'Get-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageSubject', - 'Get-MgEntitlementManagementAccessPackageAssignmentTarget', 'Get-MgEntitlementManagementAccessPackageCatalog', - 'Get-MgEntitlementManagementAccessPackageCatalogAccessPackage', 'Get-MgEntitlementManagementAccessPackageCatalogAccessPackageResource', 'Get-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceRole', 'Get-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceScope', 'Get-MgEntitlementManagementAccessPackageResource', - 'Get-MgEntitlementManagementAccessPackageResourceAccessPackageResourceRole', - 'Get-MgEntitlementManagementAccessPackageResourceAccessPackageResourceScope', + 'Get-MgEntitlementManagementAccessPackageResourceEnvironment', 'Get-MgEntitlementManagementAccessPackageResourceRequest', - 'Get-MgEntitlementManagementAccessPackageResourceRequestAccessPackageResource', - 'Get-MgEntitlementManagementAccessPackageResourceRequestAccessPackageResourceByRef', - 'Get-MgEntitlementManagementAccessPackageResourceRequestRequestor', - 'Get-MgEntitlementManagementAccessPackageResourceRoleScope', 'Get-MgEntitlementManagementConnectedOrganization', 'Get-MgEntitlementManagementConnectedOrganizationExternalSponsor', 'Get-MgEntitlementManagementConnectedOrganizationInternalSponsor', @@ -134,9 +113,16 @@ FunctionsToExport = 'Add-MgAccessReviewDecision', 'Get-MgProgramControlType', 'Get-MgUserAgreementAcceptance', 'Get-MgUserAgreementAcceptanceByRef', 'Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation', - 'Invoke-MgMyEntitlementManagementAccessPackageAssignment', - 'Invoke-MgMyEntitlementManagementAccessPackageAssignmentRequest', - 'Invoke-MgMyEntitlementManagementAccessPackageAssignmentResourceRole', + 'Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision', + 'Invoke-MgFilterEntitlementManagementAccessPackage', + 'Invoke-MgFilterEntitlementManagementAccessPackageAssignment', + 'Invoke-MgFilterEntitlementManagementAccessPackageAssignmentApproval', + 'Invoke-MgFilterEntitlementManagementAccessPackageAssignmentRequest', + 'Invoke-MgFilterIdentityGovernanceAccessReviewDefinition', + 'Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstance', + 'Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceDecision', + 'Invoke-MgFilterIdentityGovernanceAppConsentRequest', + 'Invoke-MgFilterIdentityGovernanceAppConsentRequestUserConsentRequest', 'Invoke-MgMyPrivilegedApprovalRequest', 'Invoke-MgMyPrivilegedRoleAssignment', 'Invoke-MgMyPrivilegedRoleAssignmentRequest', @@ -145,28 +131,19 @@ FunctionsToExport = 'Add-MgAccessReviewDecision', 'New-MgAccessReviewDecision', 'New-MgAccessReviewInstance', 'New-MgAccessReviewMyDecision', 'New-MgAccessReviewReviewer', 'New-MgAgreement', 'New-MgAgreementAcceptance', 'New-MgAgreementFile', - 'New-MgAgreementFileLocalization', 'New-MgBusinessFlowTemplate', + 'New-MgAgreementFileLocalization', + 'New-MgAgreementFileLocalizationVersion', + 'New-MgAgreementFileVersion', 'New-MgBusinessFlowTemplate', 'New-MgEntitlementManagementAccessPackage', - 'New-MgEntitlementManagementAccessPackageAssignment', - 'New-MgEntitlementManagementAccessPackageAssignmentAccessPackageAssignmentRequest', - 'New-MgEntitlementManagementAccessPackageAssignmentAccessPackageAssignmentResourceRole', 'New-MgEntitlementManagementAccessPackageAssignmentPolicy', 'New-MgEntitlementManagementAccessPackageAssignmentRequest', - 'New-MgEntitlementManagementAccessPackageAssignmentResourceRole', - 'New-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageAssignment', 'New-MgEntitlementManagementAccessPackageCatalog', - 'New-MgEntitlementManagementAccessPackageCatalogAccessPackage', - 'New-MgEntitlementManagementAccessPackageCatalogAccessPackageResource', - 'New-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceRole', - 'New-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceScope', - 'New-MgEntitlementManagementAccessPackageResource', - 'New-MgEntitlementManagementAccessPackageResourceAccessPackageResourceRole', - 'New-MgEntitlementManagementAccessPackageResourceAccessPackageResourceScope', 'New-MgEntitlementManagementAccessPackageResourceRequest', 'New-MgEntitlementManagementAccessPackageResourceRoleScope', 'New-MgEntitlementManagementConnectedOrganization', 'New-MgEntitlementManagementConnectedOrganizationExternalSponsor', 'New-MgEntitlementManagementConnectedOrganizationInternalSponsor', + 'New-MgIdentityGovernanceAccessReviewHistoryDefinitionDownloadUri', 'New-MgPrivilegedAccess', 'New-MgPrivilegedAccessResource', 'New-MgPrivilegedAccessRoleAssignment', 'New-MgPrivilegedAccessRoleAssignmentRequest', @@ -184,43 +161,20 @@ FunctionsToExport = 'Add-MgAccessReviewDecision', 'Remove-MgAccessReviewMyDecision', 'Remove-MgAccessReviewReviewer', 'Remove-MgAgreement', 'Remove-MgAgreementAcceptance', 'Remove-MgAgreementFile', 'Remove-MgAgreementFileLocalization', - 'Remove-MgBusinessFlowTemplate', + 'Remove-MgAgreementFileLocalizationVersion', + 'Remove-MgAgreementFileVersion', 'Remove-MgBusinessFlowTemplate', 'Remove-MgEntitlementManagementAccessPackage', - 'Remove-MgEntitlementManagementAccessPackageAccessPackageCatalogByRef', 'Remove-MgEntitlementManagementAccessPackageAssignment', - 'Remove-MgEntitlementManagementAccessPackageAssignmentAccessPackage', - 'Remove-MgEntitlementManagementAccessPackageAssignmentAccessPackageAssignmentPolicy', - 'Remove-MgEntitlementManagementAccessPackageAssignmentAccessPackageAssignmentRequest', - 'Remove-MgEntitlementManagementAccessPackageAssignmentAccessPackageAssignmentResourceRole', + 'Remove-MgEntitlementManagementAccessPackageAssignmentApproval', + 'Remove-MgEntitlementManagementAccessPackageAssignmentApprovalStep', 'Remove-MgEntitlementManagementAccessPackageAssignmentPolicy', - 'Remove-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageByRef', - 'Remove-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageCatalog', 'Remove-MgEntitlementManagementAccessPackageAssignmentRequest', - 'Remove-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageAssignment', - 'Remove-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageByRef', - 'Remove-MgEntitlementManagementAccessPackageAssignmentRequestRequestor', - 'Remove-MgEntitlementManagementAccessPackageAssignmentResourceRole', - 'Remove-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageAssignment', - 'Remove-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageResourceRole', - 'Remove-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageResourceScope', - 'Remove-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageSubject', - 'Remove-MgEntitlementManagementAccessPackageAssignmentTarget', 'Remove-MgEntitlementManagementAccessPackageCatalog', - 'Remove-MgEntitlementManagementAccessPackageCatalogAccessPackage', - 'Remove-MgEntitlementManagementAccessPackageCatalogAccessPackageResource', - 'Remove-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceRole', - 'Remove-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceScope', - 'Remove-MgEntitlementManagementAccessPackageResource', - 'Remove-MgEntitlementManagementAccessPackageResourceAccessPackageResourceRole', - 'Remove-MgEntitlementManagementAccessPackageResourceAccessPackageResourceScope', 'Remove-MgEntitlementManagementAccessPackageResourceRequest', - 'Remove-MgEntitlementManagementAccessPackageResourceRequestAccessPackageResourceByRef', - 'Remove-MgEntitlementManagementAccessPackageResourceRequestRequestor', 'Remove-MgEntitlementManagementAccessPackageResourceRoleScope', 'Remove-MgEntitlementManagementConnectedOrganization', 'Remove-MgEntitlementManagementConnectedOrganizationExternalSponsor', 'Remove-MgEntitlementManagementConnectedOrganizationInternalSponsor', - 'Remove-MgEntitlementManagementSetting', 'Remove-MgPrivilegedAccess', 'Remove-MgPrivilegedAccessResource', 'Remove-MgPrivilegedAccessRoleAssignment', 'Remove-MgPrivilegedAccessRoleAssignmentRequest', @@ -239,14 +193,10 @@ FunctionsToExport = 'Add-MgAccessReviewDecision', 'Remove-MgProgramControlProgram', 'Remove-MgProgramControlType', 'Reset-MgAccessReviewDecision', 'Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision', - 'Search-MgEntitlementManagementAccessPackage', - 'Search-MgEntitlementManagementAccessPackageCatalog', + 'Select-MgEntitlementManagementAccessPackage', + 'Select-MgEntitlementManagementAccessPackageAssignmentPolicy', 'Send-MgAccessReviewReminder', 'Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder', - 'Set-MgEntitlementManagementAccessPackageAccessPackageCatalogByRef', - 'Set-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageByRef', - 'Set-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageByRef', - 'Set-MgEntitlementManagementAccessPackageResourceRequestAccessPackageResourceByRef', 'Set-MgPrivilegedApprovalRequestByRef', 'Stop-MgAccessReview', 'Stop-MgEntitlementManagementAccessPackageAssignmentRequest', 'Stop-MgIdentityGovernanceAccessReviewDefinition', @@ -257,34 +207,16 @@ FunctionsToExport = 'Add-MgAccessReviewDecision', 'Update-MgAccessReviewMyDecision', 'Update-MgAccessReviewReviewer', 'Update-MgAgreement', 'Update-MgAgreementAcceptance', 'Update-MgAgreementFile', 'Update-MgAgreementFileLocalization', - 'Update-MgBusinessFlowTemplate', + 'Update-MgAgreementFileLocalizationVersion', + 'Update-MgAgreementFileVersion', 'Update-MgBusinessFlowTemplate', 'Update-MgEntitlementManagementAccessPackage', 'Update-MgEntitlementManagementAccessPackageAssignment', - 'Update-MgEntitlementManagementAccessPackageAssignmentAccessPackage', - 'Update-MgEntitlementManagementAccessPackageAssignmentAccessPackageAssignmentPolicy', - 'Update-MgEntitlementManagementAccessPackageAssignmentAccessPackageAssignmentRequest', - 'Update-MgEntitlementManagementAccessPackageAssignmentAccessPackageAssignmentResourceRole', + 'Update-MgEntitlementManagementAccessPackageAssignmentApproval', + 'Update-MgEntitlementManagementAccessPackageAssignmentApprovalStep', 'Update-MgEntitlementManagementAccessPackageAssignmentPolicy', - 'Update-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageCatalog', 'Update-MgEntitlementManagementAccessPackageAssignmentRequest', - 'Update-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageAssignment', - 'Update-MgEntitlementManagementAccessPackageAssignmentRequestRequestor', - 'Update-MgEntitlementManagementAccessPackageAssignmentResourceRole', - 'Update-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageAssignment', - 'Update-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageResourceRole', - 'Update-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageResourceScope', - 'Update-MgEntitlementManagementAccessPackageAssignmentResourceRoleAccessPackageSubject', - 'Update-MgEntitlementManagementAccessPackageAssignmentTarget', 'Update-MgEntitlementManagementAccessPackageCatalog', - 'Update-MgEntitlementManagementAccessPackageCatalogAccessPackage', - 'Update-MgEntitlementManagementAccessPackageCatalogAccessPackageResource', - 'Update-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceRole', - 'Update-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceScope', - 'Update-MgEntitlementManagementAccessPackageResource', - 'Update-MgEntitlementManagementAccessPackageResourceAccessPackageResourceRole', - 'Update-MgEntitlementManagementAccessPackageResourceAccessPackageResourceScope', 'Update-MgEntitlementManagementAccessPackageResourceRequest', - 'Update-MgEntitlementManagementAccessPackageResourceRequestRequestor', 'Update-MgEntitlementManagementAccessPackageResourceRoleScope', 'Update-MgEntitlementManagementConnectedOrganization', 'Update-MgEntitlementManagementConnectedOrganizationExternalSponsor', @@ -328,7 +260,7 @@ AliasesToExport = '*' PrivateData = @{ #Profiles of this module - Profiles = 'v1.0-beta' + Profiles = @('v1.0','v1.0-beta') PSData = @{ @@ -342,7 +274,7 @@ PrivateData = @{ ProjectUri = 'https://github.com/microsoftgraph/msgraph-sdk-powershell' # A URL to an icon representing this module. - IconUri = 'https://raw.githubusercontent.com/microsoftgraph/g-raph/master/g-raph.png' + IconUri = 'https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/master/documentation/images/graph_color256.png' # ReleaseNotes of this module ReleaseNotes = 'See https://aka.ms/GraphPowerShell-Release.' diff --git a/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackage.ps1 b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackage.ps1 new file mode 100644 index 00000000000..757c27f8b54 --- /dev/null +++ b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackage.ps1 @@ -0,0 +1,195 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Get accessPackages from identityGovernance +.Description +Get accessPackages from identityGovernance +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Inputs +Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity +.Outputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackage +.Notes +.Link +https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgentitlementmanagementaccesspackage +#> +function Get-MgEntitlementManagementAccessPackage { +[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackage])] +[CmdletBinding(DefaultParameterSetName='ListAll', PositionalBinding=$false)] +[Microsoft.Graph.PowerShell.Profile('v1.0-beta')] +param( + + [Parameter()] + [Alias('Expand')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Expand related entities + ${ExpandProperty}, + + [Parameter()] + [Alias('Select')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Select properties to be returned + ${Property}, + + [Parameter(ParameterSetName='ListByCatalogId', Mandatory)] + [Microsoft.Graph.PowerShell.Category('Query')] + [ValidateScript( { + try { + [System.Guid]::Parse($_) | Out-Null + $true + } + catch { + throw "$_ is not a valid ObjectID format. Valid value is a GUID format only." + } + })] + [System.String] + # Filter items by property values + ${CatalogId}, + + [Parameter(ParameterSetName='ListByDisplayNameEq', Mandatory)] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String] + # Filter items by property values + ${DisplayNameEq}, + + [Parameter(ParameterSetName='ListByDisplayNameContains', Mandatory)] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String] + # Filter items by property values + ${DisplayNameContains}, + + [Parameter(ParameterSetName='ListAll')] + [Parameter(ParameterSetName='ListByCatalogId')] + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Alias('OrderBy')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Order items by property values + ${Sort}, + + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Parameter(ParameterSetName='ListByCatalogId')] + [Alias('Limit')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.Int32] + # Show only the first n items + ${Top}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials}, + + [Parameter(ParameterSetName='ListAll')] + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Parameter(ParameterSetName='ListByCatalogId')] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # List all pages. + ${All} +) + +begin { + +} + +process { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + if ($parameterSet -eq "ListByDisplayNameEq") { + + $Filter = "displayName eq '{0}'" -f $DisplayNameEq + $PSBoundParameters['Filter'] = $Filter + $null = $PSBoundParameters.Remove('DisplayNameEq') + + } elseif ($parameterSet -eq "ListByDisplayNameContains") { + + $Filter = "contains(tolower(displayName), '{0}')" -f $DisplayNameContains + $PSBoundParameters['Filter'] = $Filter + $null = $PSBoundParameters.Remove('DisplayNameContains') + } elseif ($parameterSet -eq "ListByCatalogId") { + + $Filter = "accessPackageCatalog/Id eq '{0}'" -f $CatalogId + $PSBoundParameters['Filter'] = $Filter + $null = $PSBoundParameters.Remove('CatalogId') + } + + if ($PSBoundParameters.ContainsKey('Top') -or $PSBoundParameters.ContainsKey('All')) { + + } else { + $PSBoundParameters['All'] = $true + } + + Microsoft.Graph.Identity.Governance.private\Get-MgEntitlementManagementAccessPackage_List @PSBoundParameters + +} + +end { + +} +} diff --git a/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageAssignment.ps1 b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageAssignment.ps1 new file mode 100644 index 00000000000..7ef720ac186 --- /dev/null +++ b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageAssignment.ps1 @@ -0,0 +1,166 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Get accessPackageAssignments from identityGovernance +.Description +Get accessPackageAssignments from identityGovernance +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Inputs +Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity +.Outputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignment +.Notes + +.Link +https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgentitlementmanagementaccesspackageassignment +#> +function Get-MgEntitlementManagementAccessPackageAssignment { +[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignment])] +[CmdletBinding(DefaultParameterSetName='ListAll', PositionalBinding=$false)] +[Microsoft.Graph.PowerShell.Profile('v1.0-beta')] +param( + + [Parameter()] + [Alias('Expand')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Expand related entities + ${ExpandProperty}, + + [Parameter()] + [Alias('Select')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Select properties to be returned + ${Property}, + + [Parameter(ParameterSetName='ListByAccessPackageId', Mandatory)] + [Microsoft.Graph.PowerShell.Category('Query')] + [ValidateScript( { + try { + [System.Guid]::Parse($_) | Out-Null + $true + } + catch { + throw "$_ is not a valid ObjectID format. Valid value is a GUID format only." + } + })] + [System.String] + # Filter items by property values + ${AccessPackageId}, + + [Parameter(ParameterSetName='ListAll')] + [Parameter(ParameterSetName='ListByAccessPackageId')] + [Alias('OrderBy')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Order items by property values + ${Sort}, + + [Parameter(ParameterSetName='ListByAccessPackageId')] + [Alias('Limit')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.Int32] + # Show only the first n items + ${Top}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials}, + + [Parameter(ParameterSetName='ListAll')] + [Parameter(ParameterSetName='ListByAccessPackageId')] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # List all pages. + ${All} +) + +begin { + +} + +process { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + if ($parameterSet -eq "ListByAccessPackageId") { + + $Filter = "accessPackageId eq '{0}'" -f $AccessPackageId + $PSBoundParameters['Filter'] = $Filter + $null = $PSBoundParameters.Remove('AccessPackageId') + } + + if ($PSBoundParameters.ContainsKey('Top') -or $PSBoundParameters.ContainsKey('All')) { + + } else { + $PSBoundParameters['All'] = $true + } + + Microsoft.Graph.Identity.Governance.private\Get-MgEntitlementManagementAccessPackageAssignment_List @PSBoundParameters + +} + +end { + +} +} diff --git a/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageAssignmentPolicy.ps1 b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageAssignmentPolicy.ps1 new file mode 100644 index 00000000000..07f3b08e6c1 --- /dev/null +++ b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageAssignmentPolicy.ps1 @@ -0,0 +1,171 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Get accessPackageAssignmentPolicies from identityGovernance +.Description +Get accessPackageAssignmentPolicies from identityGovernance +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Inputs +Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity +.Outputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignmentPolicy +.Notes + +.Link +https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgentitlementmanagementaccesspackageassignmentpolicy +#> +function Get-MgEntitlementManagementAccessPackageAssignmentPolicy { +[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignmentPolicy])] +[CmdletBinding(DefaultParameterSetName='ListAll', PositionalBinding=$false)] +[Microsoft.Graph.PowerShell.Profile('v1.0-beta')] +param( + + [Parameter()] + [Alias('Expand')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Expand related entities + ${ExpandProperty}, + + [Parameter()] + [Alias('Select')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Select properties to be returned + ${Property}, + + [Parameter(ParameterSetName='ListByDisplayNameEq', Mandatory)] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String] + # Filter items by property values + ${DisplayNameEq}, + + [Parameter(ParameterSetName='ListByDisplayNameContains', Mandatory)] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String] + # Filter items by property values + ${DisplayNameContains}, + + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Parameter(ParameterSetName='ListAll')] + [Alias('OrderBy')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Order items by property values + ${Sort}, + + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Alias('Limit')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.Int32] + # Show only the first n items + ${Top}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials}, + + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Parameter(ParameterSetName='ListAll')] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # List all pages. + ${All} + +) + +begin { + +} + +process { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + if ($parameterSet -eq "ListByDisplayNameEq") { + + $Filter = "displayName eq '{0}'" -f $DisplayNameEq + $PSBoundParameters['Filter'] = $Filter + $null = $PSBoundParameters.Remove('DisplayNameEq') + } elseif ($parameterSet -eq "ListByDisplayNameContains") { + + $Filter = "contains(tolower(displayName), '{0}')" -f $DisplayNameContains + $PSBoundParameters['Filter'] = $Filter + $null = $PSBoundParameters.Remove('DisplayNameContains') + } + + if ($PSBoundParameters.ContainsKey('Top') -or $PSBoundParameters.ContainsKey('All')) { + + } else { + $PSBoundParameters['All'] = $true + } + + Microsoft.Graph.Identity.Governance.private\Get-MgEntitlementManagementAccessPackageAssignmentPolicy_List1 @PSBoundParameters +} + +end { + +} +} diff --git a/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageAssignmentRequest.ps1 b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageAssignmentRequest.ps1 new file mode 100644 index 00000000000..301bc42ce09 --- /dev/null +++ b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageAssignmentRequest.ps1 @@ -0,0 +1,165 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Get accessPackageAssignmentRequests from identityGovernance +.Description +Get accessPackageAssignmentRequests from identityGovernance +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Inputs +Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity +.Outputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignmentRequest +.Notes + +.Link +https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgentitlementmanagementaccesspackageassignmentrequest +#> +function Get-MgEntitlementManagementAccessPackageAssignmentRequest { +[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignmentRequest])] +[CmdletBinding(DefaultParameterSetName='ListAll', PositionalBinding=$false)] +[Microsoft.Graph.PowerShell.Profile('v1.0-beta')] +param( + [Parameter()] + [Alias('Expand')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Expand related entities + ${ExpandProperty}, + + [Parameter()] + [Alias('Select')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Select properties to be returned + ${Property}, + + [Parameter(ParameterSetName='ListByAccessPackageId', Mandatory)] + [Microsoft.Graph.PowerShell.Category('Query')] + [ValidateScript( { + try { + [System.Guid]::Parse($_) | Out-Null + $true + } + catch { + throw "$_ is not a valid ObjectID format. Valid value is a GUID format only." + } + })] + [System.String] + # Filter items by property values + ${AccessPackageId}, + + [Parameter(ParameterSetName='ListAll')] + [Parameter(ParameterSetName='ListByAccessPackageId')] + [Alias('OrderBy')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Order items by property values + ${Sort}, + + [Parameter(ParameterSetName='ListByAccessPackageId')] + [Alias('Limit')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.Int32] + # Show only the first n items + ${Top}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials}, + + [Parameter(ParameterSetName='ListAll')] + [Parameter(ParameterSetName='ListByAccessPackageId')] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # List all pages. + ${All} + +) + +begin { + +} + +process { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + if ($parameterSet -eq "ListByAccessPackageId") { + + $Filter = "accessPackage/Id eq '{0}'" -f $AccessPackageId + $PSBoundParameters['Filter'] = $Filter + $null = $PSBoundParameters.Remove('AccessPackageId') + } + + if ($PSBoundParameters.ContainsKey('Top') -or $PSBoundParameters.ContainsKey('All')) { + + } else { + $PSBoundParameters['All'] = $true + } + + Microsoft.Graph.Identity.Governance.private\Get-MgEntitlementManagementAccessPackageAssignmentRequest_List @PSBoundParameters +} + +end { + +} +} diff --git a/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageCatalog.ps1 b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageCatalog.ps1 new file mode 100644 index 00000000000..d6537ca3721 --- /dev/null +++ b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementAccessPackageCatalog.ps1 @@ -0,0 +1,165 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Get accessPackageCatalogs from identityGovernance +.Description +Get accessPackageCatalogs from identityGovernance +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Inputs +Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity +.Outputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageCatalog +.Notes +.Link +https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgentitlementmanagementaccesspackagecatalog +#> +function Get-MgEntitlementManagementAccessPackageCatalog { +[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageCatalog])] +[CmdletBinding(DefaultParameterSetName='ListAll',PositionalBinding=$false)] +[Microsoft.Graph.PowerShell.Profile('v1.0-beta')] +param( + + [Parameter()] + [Alias('Expand')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Expand related entities + ${ExpandProperty}, + + [Parameter()] + [Alias('Select')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Select properties to be returned + ${Property}, + + [Parameter(ParameterSetName='ListByDisplayNameEq', Mandatory)] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String] + # Filter items by property values + ${DisplayNameEq}, + + [Parameter(ParameterSetName='ListByDisplayNameContains', Mandatory)] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String] + # Filter items by property values + ${DisplayNameContains}, + + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Parameter(ParameterSetName='ListAll')] + [Alias('OrderBy')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Order items by property values + ${Sort}, + + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Alias('Limit')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.Int32] + # Show only the first n items + ${Top}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials}, + + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Parameter(ParameterSetName='ListAll')] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # List all pages. + ${All} +) + +begin { + +} + +process { + $parameterSet = $PSCmdlet.ParameterSetName + if ($parameterSet -eq "ListByDisplayNameEq") { + + $Filter = "displayName eq '{0}'" -f $DisplayNameEq + $PSBoundParameters['Filter'] = $Filter + $null = $PSBoundParameters.Remove('DisplayNameEq') + } elseif ($parameterSet -eq "ListByDisplayNameContains") { + + $Filter = "contains(tolower(displayName), '{0}')" -f $DisplayNameContains + $PSBoundParameters['Filter'] = $Filter + $null = $PSBoundParameters.Remove('DisplayNameContains') + } + + if ($PSBoundParameters.ContainsKey('Top') -or $PSBoundParameters.ContainsKey('All')) { + + } else { + $PSBoundParameters['All'] = $true + } + + Microsoft.Graph.Identity.Governance.private\Get-MgEntitlementManagementAccessPackageCatalog_List @PSBoundParameters +} + +end { + +} +} diff --git a/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementConnectedOrganization.ps1 b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementConnectedOrganization.ps1 new file mode 100644 index 00000000000..1ac07240839 --- /dev/null +++ b/src/Identity.Governance/Identity.Governance/custom/Get-MgEntitlementManagementConnectedOrganization.ps1 @@ -0,0 +1,169 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Get connectedOrganizations from identityGovernance +.Description +Get connectedOrganizations from identityGovernance +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Inputs +Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity +.Outputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphConnectedOrganization +.Notes + +.Link +https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgentitlementmanagementconnectedorganization +#> +function Get-MgEntitlementManagementConnectedOrganization { +[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphConnectedOrganization])] +[CmdletBinding(DefaultParameterSetName='ListAll', PositionalBinding=$false)] +[Microsoft.Graph.PowerShell.Profile('v1.0-beta')] +param( + [Parameter()] + [Alias('Expand')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Expand related entities + ${ExpandProperty}, + + [Parameter()] + [Alias('Select')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Select properties to be returned + ${Property}, + + [Parameter(ParameterSetName='ListByDisplayNameEq', Mandatory)] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String] + # Filter items by property values + ${DisplayNameEq}, + + [Parameter(ParameterSetName='ListByDisplayNameContains', Mandatory)] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String] + # Filter items by property values + ${DisplayNameContains}, + + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Parameter(ParameterSetName='ListAll')] + [Alias('OrderBy')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.String[]] + # Order items by property values + ${Sort}, + + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Alias('Limit')] + [Microsoft.Graph.PowerShell.Category('Query')] + [System.Int32] + # Show only the first n items + ${Top}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials}, + + [Parameter(ParameterSetName='ListByDisplayNameEq')] + [Parameter(ParameterSetName='ListByDisplayNameContains')] + [Parameter(ParameterSetName='ListAll')] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # List all pages. + ${All} +) + +begin { + +} + +process { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + if ($parameterSet -eq "ListByDisplayNameEq") { + + $Filter = "displayName eq '{0}'" -f $DisplayNameEq + $PSBoundParameters['Filter'] = $Filter + $null = $PSBoundParameters.Remove('DisplayNameEq') + } elseif ($parameterSet -eq "ListByDisplayNameContains") { + + $Filter = "contains(tolower(displayName), '{0}')" -f $DisplayNameContains + $PSBoundParameters['Filter'] = $Filter + $null = $PSBoundParameters.Remove('DisplayNameContains') + } + + if ($PSBoundParameters.ContainsKey('Top') -or $PSBoundParameters.ContainsKey('All')) { + + } else { + $PSBoundParameters['All'] = $true + } + + Microsoft.Graph.Identity.Governance.private\Get-MgEntitlementManagementConnectedOrganization_List @PSBoundParameters +} + +end { + +} +} diff --git a/src/Identity.Governance/Identity.Governance/custom/New-MgEntitlementManagementAccessPackageAssignmentRequest.ps1 b/src/Identity.Governance/Identity.Governance/custom/New-MgEntitlementManagementAccessPackageAssignmentRequest.ps1 new file mode 100644 index 00000000000..d0d0b1519f5 --- /dev/null +++ b/src/Identity.Governance/Identity.Governance/custom/New-MgEntitlementManagementAccessPackageAssignmentRequest.ps1 @@ -0,0 +1,230 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create a new entitlement management accessPackageAssignmentRequest +.Description +Create a new entitlement management accessPackageAssignmentRequest +.Inputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignmentRequest +.Outputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignmentRequest +.Notes + +.Link +https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/new-mgentitlementmanagementaccesspackageassignmentrequest +#> +function New-MgEntitlementManagementAccessPackageAssignmentRequest { +[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignmentRequest])] +[CmdletBinding(DefaultParameterSetName='CreateRequestAdminAdd', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[Microsoft.Graph.PowerShell.Profile('v1.0-beta')] +param( + + [Parameter(ParameterSetName='CreateRequestAdminAdd')] + [Microsoft.Graph.PowerShell.Category('Body')] + [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAnswer[]] + # Answers provided by the requestor to accessPackageQuestions asked of them at the time of request. + # To construct, see NOTES section for ANSWERS properties and create a hash table. + ${Answers}, + + [Parameter(ParameterSetName='CreateRequestAdminAdd')] + [Parameter(ParameterSetName='CreateRequestAdminRemove')] + [Microsoft.Graph.PowerShell.Category('Body')] + [System.String] + # The requestor's supplied justification. + ${Justification}, + + [Parameter(ParameterSetName='CreateRequestAdminAdd')] + [Parameter(ParameterSetName='CreateRequestAdminRemove')] + [Microsoft.Graph.PowerShell.Category('Body')] + [System.String] + # One of UserAdd, UserRemove, AdminAdd, AdminRemove or SystemRemove. + # A request from the user themselves would have requestType of UserAdd or UserRemove. + ${RequestType}, + + [Parameter(ParameterSetName='CreateRequestAdminAdd')] + [Microsoft.Graph.PowerShell.Category('Body')] + [string] + ${StartDate}, + + [Parameter(Mandatory = $true, + ParameterSetName='CreateRequestAdminRemove')] + [Microsoft.Graph.PowerShell.Category('Body')] + [ValidateScript( { + try { + [System.Guid]::Parse($_) | Out-Null + $true + } + catch { + throw "$_ is not a valid ObjectID format. Valid value is a GUID format only." + } + })] + [string] + ${AccessPackageAssignmentId}, + + [Parameter(Mandatory = $True, + ParameterSetName='CreateRequestAdminAdd')] + [Microsoft.Graph.PowerShell.Category('Body')] + [ValidateScript( { + try { + [System.Guid]::Parse($_) | Out-Null + $true + } + catch { + throw "$_ is not a valid ObjectID format. Valid value is a GUID format only." + } + })] + [string] + ${AccessPackageId}, + + [Parameter(Mandatory = $True, + ParameterSetName='CreateRequestAdminAdd')] + [Microsoft.Graph.PowerShell.Category('Body')] + [ValidateScript( { + try { + [System.Guid]::Parse($_) | Out-Null + $true + } + catch { + throw "$_ is not a valid ObjectID format. Valid value is a GUID format only." + } + })] + [string] + ${AssignmentPolicyId}, + + [Parameter(Mandatory = $True, + ParameterSetName='CreateRequestAdminAdd')] + [Microsoft.Graph.PowerShell.Category('Body')] + [ValidateScript( { + try { + [System.Guid]::Parse($_) | Out-Null + $true + } + catch { + throw "$_ is not a valid ObjectID format. Valid value is a GUID format only." + } + })] + [string] + ${TargetId}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + +} + +process { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + + if ($RequestType -eq $null -or $RequestType.Length -eq 0) { + if ($AccessPackageAssignmentId -ne $null -and $AccessPackageAssignmentId.Length -ne 0) { + $RequestType = "AdminRemove" + } else { + $RequestType = "AdminAdd" + } + write-debug "setting requesttype $RequestType" + } + + if ($RequestType -ne "AdminRemove") { + if ($null -ne $StartDate -or $StartDate.Length -eq 0) { + $now = Get-Date + $ts = Get-Date $now.ToUniversalTime() -format "s" + $StartDate = $ts + "Z" + } + } + + $AccessPackageAssignmentRequestBodyAccessPackageAssignment = new-object microsoft.graph.powershell.models.MicrosoftGraphAccessPackageAssignment + if ($AccessPackageAssignmentId -ne $null -and $AccessPackageAssignmentId.Length -ne 0) { + $AccessPackageAssignmentRequestBodyAccessPackageAssignment.Id = $AccessPackageAssignmentId + } + if ($TargetId -ne $null -and $TargetId.Length -ne 0) { + $AccessPackageAssignmentRequestBodyAccessPackageAssignment.TargetId = $TargetId + } + if ($AssignmentPolicyId -ne $null -and $AssignmentPolicyId.Length -ne 0) { + $AccessPackageAssignmentRequestBodyAccessPackageAssignment.AssignmentPolicyId = $AssignmentPolicyId + } + if ($AccessPackageId -ne $null -and $AccessPackageId.Length -ne 0) { + $AccessPackageAssignmentRequestBodyAccessPackageAssignment.AccessPackageId = $AccessPackageId + } + + if ($null -ne $StartDate -and $StartDate.Length -ne 0) { + $AccessPackageAssignmentRequestBodyAccessPackageAssignment.Schedule = new-object Microsoft.Graph.PowerShell.Models.MicrosoftGraphRequestSchedule + $AccessPackageAssignmentRequestBodyAccessPackageAssignment.Schedule.StartDateTime = $StartDate + } + + $null = $PSBoundParameters.Remove("AccessPackageAssignmentId") + $null = $PSBoundParameters.Remove("AccessPackageId") + $null = $PSBoundParameters.Remove("AssignmentPolicyId") + $null = $PSBoundParameters.Remove("TargetId") + $null = $PSBoundParameters.Remove("StartDate") + + $PSBoundParameters['AccessPackageAssignment'] = $AccessPackageAssignmentRequestBodyAccessPackageAssignment + + $PSBoundParameters['Answers'] = $Answers + if ($Justification -ne $null -and $Justification.Length -ne 0) { + $PSBoundParameters['Justification'] = $Justification + } + $PSBoundParameters['RequestType'] = $RequestType + + Microsoft.Graph.Identity.Governance.private\New-MgEntitlementManagementAccessPackageAssignmentRequest_CreateExpanded @PSBoundParameters + + +} + +end { + +} +} diff --git a/src/Identity.Governance/Identity.Governance/custom/New-MgEntitlementManagementConnectedOrganization.ps1 b/src/Identity.Governance/Identity.Governance/custom/New-MgEntitlementManagementConnectedOrganization.ps1 new file mode 100644 index 00000000000..0336b6524e9 --- /dev/null +++ b/src/Identity.Governance/Identity.Governance/custom/New-MgEntitlementManagementConnectedOrganization.ps1 @@ -0,0 +1,140 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Create new connectedOrganization +.Description +Create a new connected organization, for use in an Azure AD Entitlement Management policy. +.Example +PS C:\> New-MgEntitlementManagementConnectedOrganization -DomainName microsoft.com + +Id +-- +a19c861f-c110-423c-a8bb-b54230a036c9 + +.Outputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphConnectedOrganization +.Link +https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/new-mgentitlementmanagementconnectedorganization +#> +function New-MgEntitlementManagementConnectedOrganization { +[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphConnectedOrganization])] +[CmdletBinding(DefaultParameterSetName='CreateWithDomainIdentitySource', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[Microsoft.Graph.PowerShell.Profile('v1.0-beta')] +param( + + [Parameter(ParameterSetName='CreateWithDomainIdentitySource')] + [Microsoft.Graph.PowerShell.Category('Body')] + [System.String] + # The description of the connected organization. + ${Description}, + + [Parameter(ParameterSetName='CreateWithDomainIdentitySource')] + [Microsoft.Graph.PowerShell.Category('Body')] + [System.String] + # The display name of the connected organization. + ${DisplayName}, + + [Parameter(Mandatory = $True, ParameterSetName='CreateWithDomainIdentitySource')] + [Microsoft.Graph.PowerShell.Category('Body')] + [System.String] + # The domain name of the connected organization identity source. + ${DomainName}, + + [Parameter(ParameterSetName='CreateWithDomainIdentitySource')] + [Microsoft.Graph.PowerShell.Category('Body')] + [System.String] + # connectedOrganizationState + ${State}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Graph.PowerShell.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + +} + +process { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + + if ($DomainName -ne $null -and $DomainName.Length -gt 0) { + $dis = new-object Microsoft.Graph.PowerShell.Models.MicrosoftGraphIdentitySource + $dis.AdditionalProperties['@odata.type'] = "microsoft.graph.domainidentitysource" + if ($null -eq $DisplayName -or $DisplayName.Length -eq 0) { + $dis.AdditionalProperties['displayName'] = $DomainName + } else { + $dis.AdditionalProperties['displayName'] = $DisplayName + } + + $dis.AdditionalProperties['domainName'] = $DomainName + + # automatic conversion of single object into array of 1 element + $PSBoundParameters['IdentitySources'] = $dis + + $null = $PSBoundParameters.Remove("DomainName") + + if ($null -eq $DisplayName -or $DisplayName.Length -eq 0) { + $PSBoundParameters['DisplayName'] = $DomainName + } + } + + Microsoft.Graph.Identity.Governance.private\New-MgEntitlementManagementConnectedOrganization_CreateExpanded @PSBoundParameters +} + +end { + +} +} diff --git a/src/Identity.Governance/Identity.Governance/custom/Select-MgEntitlementManagementAccessPackage.ps1 b/src/Identity.Governance/Identity.Governance/custom/Select-MgEntitlementManagementAccessPackage.ps1 new file mode 100644 index 00000000000..2723d27c545 --- /dev/null +++ b/src/Identity.Governance/Identity.Governance/custom/Select-MgEntitlementManagementAccessPackage.ps1 @@ -0,0 +1,123 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Select matching entitlement management accessPackage +.Description +Select matching entitlement management accessPackage +.Inputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackage +.Outputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackage +.Notes + +.Link +https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/select-mgentitlementmanagementaccesspackage +#> +function Select-MgEntitlementManagementAccessPackage { +[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackage])] +[CmdletBinding(PositionalBinding=$false, ConfirmImpact='Medium')] +[Microsoft.Graph.PowerShell.Profile('v1.0-beta')] +param( + [Parameter (ValueFromPipeline=$true)] + [Microsoft.Graph.PowerShell.Models.MicrosoftGraphAccessPackage[]]$AccessPackage, + + [Parameter (Mandatory = $False)] + [switch] + $PolicyWithNoApprovalRequiredForRequest, + + [Parameter (Mandatory = $False)] + [string[]] + $PolicyWithScopeType + +) + +begin { + $APWithZeroPolicies = 0 + $APWithNonZeroPolicies = 0 + $policyEvaluation = $false + + if ($PolicyWithNoApprovalRequiredForRequest -or ($null -ne $PolicyWithScopeType -and $PolicyWithScopeType.Length -gt 0)) { + $policyEvaluation = $true + } +} + +process { + + $NewObj = $AccessPackage + $accessPackageId = "" + try { + $accessPackageId = $AccessPackage.Id + } catch { + write-verbose "no access package id" + return + } + + if ($policyEvaluation) { + $inputPolicyCount = 0 + try { + if ($AccessPackage.AccessPackageAssignmentPolicies) { + $inputPolicyCount = $AccessPackage.AccessPackageAssignmentPolicies.Length + + } + } catch { + write-verbose "no policies in $accessPackageId" + $APWithZeroPolicies++ + return + } + if ($inputPolicyCount -eq 0) { + $APWithZeroPolicies++ + return + } + + $APWithNonZeroPolicies++ + + $matchingPolicyCount = 0 + $matchingPolicies = @() + foreach ($p in $AccessPackage.AccessPackageAssignmentPolicies) { + $thisMatch = $null + + $thisMatch = @(Select-MgEntitlementManagementAccessPackageAssignmentPolicy -ScopeType $PolicyWithScopeType -NoApprovalRequiredForRequest:$PolicyWithNoApprovalRequiredForRequest -Policy $p) + + if ($null -eq $thisMatch -or $thisMatch.Length -eq 0) { + # not a match + } else { + $matchingPolicies += $thisMatch[0] + } + } + $matchingPolicyCount = $matchingPolicies.Length + if ($matchingPolicyCount -eq 0) { + write-verbose "skipping $accessPackageId as $inputPolicyCount policies has 0 matching" + return + } elseif ($inputPolicyCount -ne $matchingPolicyCount) { + write-verbose "changing $accessPackageId from $inputPolicyCount to $MatchingPolicyCount" + + $NewObj = $AccessPackage.PSObject.Copy() + $NewObj | Add-Member -MemberType NoteProperty -Name AccessPackageAssignmentPolicies -Value $matchingPolicies -Force + } else { + write-verbose "all $inputPolicyCount policies of $accessPackageId are relevant" + } + + } + + write-output $NewObj +} + +end { + if ($APWithNonZeroPolicies -eq 0 -and $ApWithZeroPolicies -gt 1 -and $policyEvaluation -eq $true) { + write-warning "no access packages had any policies to evaluate" + } +} +} diff --git a/src/Identity.Governance/Identity.Governance/custom/Select-MgEntitlementManagementAccessPackageAssignmentPolicy.ps1 b/src/Identity.Governance/Identity.Governance/custom/Select-MgEntitlementManagementAccessPackageAssignmentPolicy.ps1 new file mode 100644 index 00000000000..4c54733f96c --- /dev/null +++ b/src/Identity.Governance/Identity.Governance/custom/Select-MgEntitlementManagementAccessPackageAssignmentPolicy.ps1 @@ -0,0 +1,120 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Select matching entitlement management accessPackageAssignmentPolicy +.Description +Select matching entitlement management accessPackageAssignmentPolicy +.Inputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignmentPolicy +.Outputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignmentPolicy +.Notes + +.Link +https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/select-mgentitlementmanagementaccesspackageassignmentpolicy +#> +function Select-MgEntitlementManagementAccessPackageAssignmentPolicy { +[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAccessPackageAssignmentPolicy])] +[CmdletBinding(DefaultParameterSetName='ExplicitScope', PositionalBinding=$false, ConfirmImpact='Medium')] +[Microsoft.Graph.PowerShell.Profile('v1.0-beta')] +param( + [Parameter (ValueFromPipeline=$true)] + [Microsoft.Graph.PowerShell.Models.MicrosoftGraphAccessPackageAssignmentPolicy[]]$Policy, + + [Parameter (Mandatory = $False)] + [switch] + $NoApprovalRequiredForRequest, + + [Parameter (Mandatory = $False,ParameterSetName = "ExplicitScope")] + [string[]] + $ScopeType +) + +begin { + +} + +process { + $policyId = $Policy.Id + $acceptRequests = $false + $thisScopeType = "" + + if ($Policy.RequestorSettings) { + $acceptRequests = $Policy.RequestorSettings.AcceptRequests + $thisScopeType = $Policy.RequestorSettings.ScopeType + } + $matchedScopeType = $true + if ($null -ne $ScopeType -and $ScopeType.Length -gt 0) { + $matchedScopeType = $false + foreach ($s in $ScopeType) { + if ($thisScopeType -eq $s) { + $matchedScopeType = $true + break + } + } + } + if ($acceptRequests -and $matchedScopeType -eq $false) { + write-verbose "policy $policyId did not match scope type with $thisScopeType" + return + } + + if ($NoApprovalRequiredForRequest -and $acceptRequests -eq $true) { + $approvalIsRequiredForRequest = $false + + if ($Policy.RequestApprovalSettings) { + $isApprovalRequired = $Policy.RequestApprovalSettings.isApprovalRequired + $isApprovalRequiredForExtension = $Policy.RequestApprovalSettings.isApprovalRequiredForExtension + + $isApprovalOverride = $true + + if ($Policy.RequestApprovalSettings.ApprovalMode -eq "NoApproval") { + $isApprovalOverride = $false + } + if ($Policy.RequestApprovalSettings.ApprovalStages -eq $null -or $Policy.RequestApprovalSettings.ApprovalStages.Length -eq 0) { + $isApprovalOverride = $false + } + + if ($isApprovalRequired -eq $true -and $isApprovalOverride -eq $true) { + $approvalIsRequiredForRequest = $true + } else { + write-verbose "policy $policyId did not require approval $isApprovalRequired $isApprovalRequiredForExtension $isApprovalOverride" + } + + } + + if ($approvalIsRequiredForRequest) { + write-verbose "policy $policyId requires approval" + return + } + } + + if ($NoApprovalRequiredForRequest -and $acceptRequests -eq $false) { + # does not accept requests + write-verbose "policy $policyId does not accept requests" + return + } + if ($NoApprovalRequiredForRequest -and ($null -eq $ScopeType -or $ScopeType.Length -eq 0) -and $thisScopeType -eq "NoSubjects") { + write-verbose "policy $policyId has no subjects in scope" + return + } + + write-output $Policy +} + +end { + +} +} diff --git a/src/Identity.Governance/Identity.Governance/custom/Split-MgEntitlementManagementConnectedOrganization.ps1 b/src/Identity.Governance/Identity.Governance/custom/Split-MgEntitlementManagementConnectedOrganization.ps1 new file mode 100644 index 00000000000..137cee7ef8e --- /dev/null +++ b/src/Identity.Governance/Identity.Governance/custom/Split-MgEntitlementManagementConnectedOrganization.ps1 @@ -0,0 +1,73 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Split elements of a connectedOrganization +.Description +Split elements of one or more Azure AD entitlement management connected organizations, returned by Get-MgEntitlementManagementConnectedOrganization, to simplify reporting. +.Inputs +Microsoft.Graph.PowerShell.Models.IMicrosoftGraphConnectedOrganization + +.Link +https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/split-mgentitlementmanagementconnectedorganization +#> +function Split-MgEntitlementManagementConnectedOrganization { +[CmdletBinding(DefaultParameterSetName='SplitByIdentitySource', PositionalBinding=$false, ConfirmImpact='Medium')] +[Microsoft.Graph.PowerShell.Profile('v1.0-beta')] +param( + + [Parameter(ValueFromPipeline=$true,ParameterSetName='SplitByIdentitySource')] + [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphConnectedOrganization[]] + # The connected organization. + ${ConnectedOrganization}, + + [Parameter(Mandatory=$true, ParameterSetName='SplitByIdentitySource')] + [switch] + ${ByIdentitySource} + +) + +begin { + +} + +process { + if ($ByIdentitySource) { + + if ($null -ne $ConnectedOrganization.IdentitySources) { + foreach ($is in $ConnectedOrganization.IdentitySources) { + # identity sources, as an abstract class, does not have any properties + + $aObj = [pscustomobject]@{ + ConnectedOrganizationId = $ConnectedOrganization.Id + } + + $addl = $is.AdditionalProperties + foreach ($k in $addl.Keys) { + $isk = $k + $aObj | Add-Member -MemberType NoteProperty -Name $isk -Value $addl[$k] -Force + } + + write-output $aObj + } + } + } +} + +end { + +} +} diff --git a/src/Identity.Governance/Identity.Governance/readme.md b/src/Identity.Governance/Identity.Governance/readme.md index c6bc092acce..941ca1091be 100644 --- a/src/Identity.Governance/Identity.Governance/readme.md +++ b/src/Identity.Governance/Identity.Governance/readme.md @@ -180,16 +180,18 @@ directive: subject: (.*)(EntitlementManagement)AccessPackageAssignment$ remove: true - where: - verb: New|Remove|Update + verb: New|Invoke|Remove|Update subject: (.*)(EntitlementManagement)AccessPackageAssignmentResourceRole$ remove: true - where: - verb: New|Remove|Update + verb: New|Remove|Update|Get subject: (.*)(EntitlementManagement)AccessPackageCatalogAccessPackageResourceRole$ + variant: (Create.*|Delete.*|Update.*|Get.*) # Removes all variants except List.* remove: true - where: - verb: New|Remove|Update + verb: New|Remove|Update|Get subject: (.*)(EntitlementManagement)AccessPackageCatalogAccessPackageResourceScope$ + variant: (Create.*|Delete.*|Update.*|Get.*) remove: true - where: verb: New|Remove|Update @@ -208,8 +210,9 @@ directive: subject: (.*)(EntitlementManagement)AccessPackageCatalog$ remove: true - where: - verb: New|Remove|Update + verb: New|Remove|Update|Get subject: (.*)(EntitlementManagement)AccessPackageCatalogAccessPackageResource$ + variant: (Create.*|Delete.*|Update.*|Get.*) remove: true - where: verb: Remove @@ -250,6 +253,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Identity.SignIns/Identity.SignIns/Microsoft.Graph.Identity.SignIns.psd1 b/src/Identity.SignIns/Identity.SignIns/Microsoft.Graph.Identity.SignIns.psd1 index 63dcdad8a36..757536653e8 100644 --- a/src/Identity.SignIns/Identity.SignIns/Microsoft.Graph.Identity.SignIns.psd1 +++ b/src/Identity.SignIns/Identity.SignIns/Microsoft.Graph.Identity.SignIns.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 11/16/2020 +# Generated on: 5/20/2021 # @{ @@ -12,13 +12,13 @@ RootModule = './Microsoft.Graph.Identity.SignIns.psm1' # Version number of this module. -ModuleVersion = '1.1.0' +ModuleVersion = '1.5.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' # ID used to uniquely identify this module -GUID = 'cf0b21b6-65de-4e4d-9ba9-4e31c4774560' +GUID = '65ab76eb-2c8c-4610-8ddf-05e7e03fbf93' # Author of this module Author = 'Microsoft Corporation' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '1.1.0'; }) +RequiredModules = @(@{ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Microsoft.Graph.Identity.SignIns.private.dll' @@ -70,72 +70,94 @@ FormatsToProcess = './Microsoft.Graph.Identity.SignIns.format.ps1xml' # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = 'Confirm-MgRiskyUserCompromised', 'Get-MgDataPolicyOperation', + 'Get-MgIdentityConditionalAccessAuthenticationContextClasserenceByRef', 'Get-MgIdentityConditionalAccessNamedLocation', 'Get-MgIdentityConditionalAccessPolicy', 'Get-MgIdentityProvider', 'Get-MgIdentityUserFlow', 'Get-MgInformationProtection', + 'Get-MgInformationProtectionBitlocker', + 'Get-MgInformationProtectionBitlockerRecoveryKey', 'Get-MgInformationProtectionDataLossPreventionPolicy', 'Get-MgInformationProtectionPolicy', 'Get-MgInformationProtectionPolicyLabel', - 'Get-MgInformationProtectionSensitivityLabel', - 'Get-MgInformationProtectionSensitivityLabelSublabel', 'Get-MgInformationProtectionSensitivityPolicySetting', 'Get-MgInformationProtectionThreatAssessmentRequest', 'Get-MgInformationProtectionThreatAssessmentRequestResult', 'Get-MgOauth2PermissionGrant', 'Get-MgOauth2PermissionGrantDelta', 'Get-MgOrganizationCertificateBasedAuthConfiguration', 'Get-MgOrganizationCertificateBasedAuthConfigurationByRef', + 'Get-MgPolicyAccessReviewPolicy', 'Get-MgPolicyActivityBasedTimeoutPolicy', 'Get-MgPolicyAdminConsentRequestPolicy', 'Get-MgPolicyAuthenticationFlowPolicy', - 'Get-MgPolicyAuthorizationPolicy', 'Get-MgPolicyClaimMappingPolicy', - 'Get-MgPolicyDeviceRegistrationPolicy', + 'Get-MgPolicyAuthenticationMethodPolicy', + 'Get-MgPolicyAuthorizationPolicy', + 'Get-MgPolicyB2CAuthenticationMethodPolicy', + 'Get-MgPolicyClaimMappingPolicy', 'Get-MgPolicyDirectoryRoleAccessReviewPolicy', + 'Get-MgPolicyFeatureRolloutPolicy', + 'Get-MgPolicyFeatureRolloutPolicyApplyTo', 'Get-MgPolicyHomeRealmDiscoveryPolicy', 'Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy', 'Get-MgPolicyPermissionGrantPolicy', 'Get-MgPolicyPermissionGrantPolicyExclude', 'Get-MgPolicyPermissionGrantPolicyInclude', + 'Get-MgPolicyRoleManagementPolicy', + 'Get-MgPolicyRoleManagementPolicyAssignment', + 'Get-MgPolicyRoleManagementPolicyAssignmentPolicy', + 'Get-MgPolicyRoleManagementPolicyAssignmentPolicyByRef', + 'Get-MgPolicyRoleManagementPolicyEffectiveRule', + 'Get-MgPolicyRoleManagementPolicyRule', 'Get-MgPolicyTokenIssuancePolicy', 'Get-MgPolicyTokenLifetimePolicy', 'Get-MgRiskDetection', 'Get-MgRiskyUser', 'Get-MgRiskyUserHistory', 'Get-MgTrustFramework', 'Get-MgTrustFrameworkKeySet', 'Get-MgTrustFrameworkKeySetActiveKey', - 'Get-MgTrustFrameworkPolicy', 'Get-MgUserAuthentication', + 'Get-MgTrustFrameworkPolicy', 'Get-MgTrustFrameworkPolicyContent', 'Get-MgUserAuthenticationEmailMethod', 'Get-MgUserAuthenticationFido2Method', 'Get-MgUserAuthenticationMethod', 'Get-MgUserAuthenticationMicrosoftAuthenticatorMethod', - 'Get-MgUserAuthenticationOathMethod', + 'Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice', 'Get-MgUserAuthenticationOperation', 'Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod', + 'Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodDevice', 'Get-MgUserAuthenticationPasswordMethod', 'Get-MgUserAuthenticationPhoneMethod', - 'Get-MgUserAuthenticationSecurityQuestionMethod', 'Get-MgUserAuthenticationTemporaryAccessPassMethod', + 'Get-MgUserAuthenticationWindowHello', + 'Get-MgUserAuthenticationWindowHelloForBusinessMethodDevice', 'Get-MgUserInformationProtection', 'Invoke-MgAvailableIdentityProviderType', + 'Invoke-MgBufferInformationProtectionDecrypt', + 'Invoke-MgBufferInformationProtectionEncrypt', 'Invoke-MgDismissRiskyUser', 'Invoke-MgExtractInformationProtectionPolicyLabel', 'Invoke-MgUploadTrustFrameworkKeySetCertificate', 'Invoke-MgUploadTrustFrameworkKeySetPkcs12', 'Invoke-MgUploadTrustFrameworkKeySetSecret', 'New-MgDataPolicyOperation', + 'New-MgIdentityConditionalAccessAuthenticationContextClasserenceByRef', 'New-MgIdentityConditionalAccessNamedLocation', 'New-MgIdentityConditionalAccessPolicy', 'New-MgIdentityProvider', 'New-MgIdentityUserFlow', + 'New-MgInformationProtectionBitlockerRecoveryKey', 'New-MgInformationProtectionDataLossPreventionPolicy', 'New-MgInformationProtectionPolicyLabel', - 'New-MgInformationProtectionSensitivityLabel', - 'New-MgInformationProtectionSensitivityLabelSublabel', 'New-MgInformationProtectionThreatAssessmentRequest', 'New-MgInformationProtectionThreatAssessmentRequestResult', 'New-MgInvitation', 'New-MgOauth2PermissionGrant', 'New-MgOrganizationCertificateBasedAuthConfigurationByRef', 'New-MgPolicyActivityBasedTimeoutPolicy', 'New-MgPolicyAuthorizationPolicy', 'New-MgPolicyClaimMappingPolicy', + 'New-MgPolicyFeatureRolloutPolicy', + 'New-MgPolicyFeatureRolloutPolicyApplyTo', 'New-MgPolicyHomeRealmDiscoveryPolicy', 'New-MgPolicyPermissionGrantPolicy', 'New-MgPolicyPermissionGrantPolicyExclude', 'New-MgPolicyPermissionGrantPolicyInclude', + 'New-MgPolicyRoleManagementPolicy', + 'New-MgPolicyRoleManagementPolicyAssignment', + 'New-MgPolicyRoleManagementPolicyEffectiveRule', + 'New-MgPolicyRoleManagementPolicyRule', 'New-MgPolicyTokenIssuancePolicy', 'New-MgPolicyTokenLifetimePolicy', 'New-MgRiskDetection', 'New-MgRiskyUser', 'New-MgRiskyUserHistory', @@ -144,104 +166,122 @@ FunctionsToExport = 'Confirm-MgRiskyUserCompromised', 'Get-MgDataPolicyOperation 'New-MgUserAuthenticationFido2Method', 'New-MgUserAuthenticationMethod', 'New-MgUserAuthenticationMicrosoftAuthenticatorMethod', - 'New-MgUserAuthenticationOathMethod', 'New-MgUserAuthenticationOperation', 'New-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod', - 'New-MgUserAuthenticationPasswordMethod', 'New-MgUserAuthenticationPhoneMethod', - 'New-MgUserAuthenticationSecurityQuestionMethod', 'New-MgUserAuthenticationTemporaryAccessPassMethod', + 'New-MgUserAuthenticationWindowHello', 'Remove-MgDataPolicyOperation', + 'Remove-MgIdentityConditionalAccessAuthenticationContextClasserenceByRef', 'Remove-MgIdentityConditionalAccessNamedLocation', 'Remove-MgIdentityConditionalAccessPolicy', 'Remove-MgIdentityProvider', 'Remove-MgIdentityUserFlow', + 'Remove-MgInformationProtectionBitlocker', + 'Remove-MgInformationProtectionBitlockerRecoveryKey', 'Remove-MgInformationProtectionDataLossPreventionPolicy', 'Remove-MgInformationProtectionPolicy', 'Remove-MgInformationProtectionPolicyLabel', - 'Remove-MgInformationProtectionSensitivityLabel', - 'Remove-MgInformationProtectionSensitivityLabelSublabel', 'Remove-MgInformationProtectionSensitivityPolicySetting', 'Remove-MgInformationProtectionThreatAssessmentRequest', 'Remove-MgInformationProtectionThreatAssessmentRequestResult', 'Remove-MgOauth2PermissionGrant', + 'Remove-MgPolicyAccessReviewPolicy', 'Remove-MgPolicyActivityBasedTimeoutPolicy', 'Remove-MgPolicyAdminConsentRequestPolicy', 'Remove-MgPolicyAuthenticationFlowPolicy', + 'Remove-MgPolicyAuthenticationMethodPolicy', 'Remove-MgPolicyAuthorizationPolicy', + 'Remove-MgPolicyB2CAuthenticationMethodPolicy', 'Remove-MgPolicyClaimMappingPolicy', - 'Remove-MgPolicyDeviceRegistrationPolicy', 'Remove-MgPolicyDirectoryRoleAccessReviewPolicy', + 'Remove-MgPolicyFeatureRolloutPolicy', + 'Remove-MgPolicyFeatureRolloutPolicyApplyTo', 'Remove-MgPolicyHomeRealmDiscoveryPolicy', 'Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy', 'Remove-MgPolicyPermissionGrantPolicy', 'Remove-MgPolicyPermissionGrantPolicyExclude', 'Remove-MgPolicyPermissionGrantPolicyInclude', + 'Remove-MgPolicyRoleManagementPolicy', + 'Remove-MgPolicyRoleManagementPolicyAssignment', + 'Remove-MgPolicyRoleManagementPolicyAssignmentPolicyByRef', + 'Remove-MgPolicyRoleManagementPolicyEffectiveRule', + 'Remove-MgPolicyRoleManagementPolicyRule', 'Remove-MgPolicyTokenIssuancePolicy', 'Remove-MgPolicyTokenLifetimePolicy', 'Remove-MgRiskDetection', 'Remove-MgRiskyUser', 'Remove-MgRiskyUserHistory', 'Remove-MgTrustFrameworkKeySet', 'Remove-MgTrustFrameworkPolicy', - 'Remove-MgUserAuthentication', 'Remove-MgUserAuthenticationEmailMethod', 'Remove-MgUserAuthenticationFido2Method', 'Remove-MgUserAuthenticationMethod', 'Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod', - 'Remove-MgUserAuthenticationOathMethod', + 'Remove-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice', 'Remove-MgUserAuthenticationOperation', 'Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod', + 'Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodDevice', 'Remove-MgUserAuthenticationPasswordMethod', 'Remove-MgUserAuthenticationPhoneMethod', - 'Remove-MgUserAuthenticationSecurityQuestionMethod', 'Remove-MgUserAuthenticationTemporaryAccessPassMethod', + 'Remove-MgUserAuthenticationWindowHello', + 'Remove-MgUserAuthenticationWindowHelloForBusinessMethodDevice', 'Remove-MgUserInformationProtection', + 'Set-MgPolicyRoleManagementPolicyAssignmentPolicyByRef', + 'Set-MgTrustFrameworkPolicyContent', 'Test-MgInformationProtectionDataLossPreventionPolicy', - 'Test-MgInformationProtectionLabelAndPolicy', 'Test-MgInformationProtectionPolicyLabelApplication', 'Test-MgInformationProtectionPolicyLabelClassificationResult', 'Test-MgInformationProtectionPolicyLabelRemoval', - 'Test-MgInformationProtectionSensitivityLabel', - 'Test-MgInformationProtectionSensitivityLabelSublabel', 'Update-MgDataPolicyOperation', + 'Update-MgIdentityConditionalAccessAuthenticationContextClasserenceByRef', 'Update-MgIdentityConditionalAccessNamedLocation', 'Update-MgIdentityConditionalAccessPolicy', 'Update-MgIdentityProvider', 'Update-MgIdentityUserFlow', 'Update-MgInformationProtection', + 'Update-MgInformationProtectionBitlocker', + 'Update-MgInformationProtectionBitlockerRecoveryKey', 'Update-MgInformationProtectionDataLossPreventionPolicy', 'Update-MgInformationProtectionPolicy', 'Update-MgInformationProtectionPolicyLabel', - 'Update-MgInformationProtectionSensitivityLabel', - 'Update-MgInformationProtectionSensitivityLabelSublabel', 'Update-MgInformationProtectionSensitivityPolicySetting', 'Update-MgInformationProtectionThreatAssessmentRequest', 'Update-MgInformationProtectionThreatAssessmentRequestResult', 'Update-MgOauth2PermissionGrant', + 'Update-MgPolicyAccessReviewPolicy', 'Update-MgPolicyActivityBasedTimeoutPolicy', 'Update-MgPolicyAdminConsentRequestPolicy', 'Update-MgPolicyAuthenticationFlowPolicy', + 'Update-MgPolicyAuthenticationMethodPolicy', 'Update-MgPolicyAuthorizationPolicy', + 'Update-MgPolicyB2CAuthenticationMethodPolicy', 'Update-MgPolicyClaimMappingPolicy', - 'Update-MgPolicyDeviceRegistrationPolicy', 'Update-MgPolicyDirectoryRoleAccessReviewPolicy', + 'Update-MgPolicyFeatureRolloutPolicy', + 'Update-MgPolicyFeatureRolloutPolicyApplyTo', 'Update-MgPolicyHomeRealmDiscoveryPolicy', 'Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy', 'Update-MgPolicyPermissionGrantPolicy', 'Update-MgPolicyPermissionGrantPolicyExclude', 'Update-MgPolicyPermissionGrantPolicyInclude', + 'Update-MgPolicyRoleManagementPolicy', + 'Update-MgPolicyRoleManagementPolicyAssignment', + 'Update-MgPolicyRoleManagementPolicyEffectiveRule', + 'Update-MgPolicyRoleManagementPolicyRule', 'Update-MgPolicyTokenIssuancePolicy', 'Update-MgPolicyTokenLifetimePolicy', 'Update-MgRiskDetection', 'Update-MgRiskyUser', 'Update-MgRiskyUserHistory', 'Update-MgTrustFramework', 'Update-MgTrustFrameworkKeySet', - 'Update-MgTrustFrameworkPolicy', 'Update-MgUserAuthentication', + 'Update-MgTrustFrameworkPolicy', 'Update-MgUserAuthenticationEmailMethod', 'Update-MgUserAuthenticationFido2Method', 'Update-MgUserAuthenticationMethod', 'Update-MgUserAuthenticationMicrosoftAuthenticatorMethod', - 'Update-MgUserAuthenticationOathMethod', + 'Update-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice', 'Update-MgUserAuthenticationOperation', 'Update-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod', - 'Update-MgUserAuthenticationPasswordMethod', + 'Update-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodDevice', 'Update-MgUserAuthenticationPhoneMethod', - 'Update-MgUserAuthenticationSecurityQuestionMethod', 'Update-MgUserAuthenticationTemporaryAccessPassMethod', + 'Update-MgUserAuthenticationWindowHello', + 'Update-MgUserAuthenticationWindowHelloForBusinessMethodDevice', 'Update-MgUserInformationProtection' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. @@ -280,7 +320,7 @@ PrivateData = @{ ProjectUri = 'https://github.com/microsoftgraph/msgraph-sdk-powershell' # A URL to an icon representing this module. - IconUri = 'https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/po/release1.1.0/documentation/images/graph_color256.png' + IconUri = 'https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/master/documentation/images/graph_color256.png' # ReleaseNotes of this module ReleaseNotes = '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 ba4c4807a93..752f653aef8 100644 --- a/src/Identity.SignIns/Identity.SignIns/readme.md +++ b/src/Identity.SignIns/Identity.SignIns/readme.md @@ -52,10 +52,17 @@ directive: - where: subject: ^UserAuthentication$ remove: true + - where: + subject: ^InformationProtectionSensitivity(Label|LabelSublabel)$ + remove: true + - where: + verb: New|Update + subject: ^UserAuthenticationPasswordMethod$ + remove: true ``` ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Mail/Mail/readme.md b/src/Mail/Mail/readme.md index d609ac1f89c..5c2dd21d5d1 100644 --- a/src/Mail/Mail/readme.md +++ b/src/Mail/Mail/readme.md @@ -34,6 +34,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Notes/Notes/readme.md b/src/Notes/Notes/readme.md index 5c319442aec..be5d5295afc 100644 --- a/src/Notes/Notes/readme.md +++ b/src/Notes/Notes/readme.md @@ -44,6 +44,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/People/People/readme.md b/src/People/People/readme.md index dfb4729ad5e..8e138273602 100644 --- a/src/People/People/readme.md +++ b/src/People/People/readme.md @@ -74,6 +74,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/PersonalContacts/PersonalContacts/readme.md b/src/PersonalContacts/PersonalContacts/readme.md index 23122a71745..bfaf40a0a37 100644 --- a/src/PersonalContacts/PersonalContacts/readme.md +++ b/src/PersonalContacts/PersonalContacts/readme.md @@ -34,6 +34,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Planner/Planner/readme.md b/src/Planner/Planner/readme.md index e859b433f9a..65a0fc6ef45 100644 --- a/src/Planner/Planner/readme.md +++ b/src/Planner/Planner/readme.md @@ -46,6 +46,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Reports/Reports/readme.md b/src/Reports/Reports/readme.md index 01e84d63c84..bf8c656fbae 100644 --- a/src/Reports/Reports/readme.md +++ b/src/Reports/Reports/readme.md @@ -81,6 +81,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/SchemaExtensions/SchemaExtensions/readme.md b/src/SchemaExtensions/SchemaExtensions/readme.md index 4b12e6f685c..07d2ac00761 100644 --- a/src/SchemaExtensions/SchemaExtensions/readme.md +++ b/src/SchemaExtensions/SchemaExtensions/readme.md @@ -35,6 +35,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Search/Search/readme.md b/src/Search/Search/readme.md index 3a29ab41876..1e8511d6d2a 100644 --- a/src/Search/Search/readme.md +++ b/src/Search/Search/readme.md @@ -35,6 +35,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Security/Security/readme.md b/src/Security/Security/readme.md index fc004a5d588..26aeb3b0f48 100644 --- a/src/Security/Security/readme.md +++ b/src/Security/Security/readme.md @@ -73,6 +73,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Sites/Sites/readme.md b/src/Sites/Sites/readme.md index cf308ef3138..5d7cde633be 100644 --- a/src/Sites/Sites/readme.md +++ b/src/Sites/Sites/readme.md @@ -110,6 +110,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Teams/Teams/readme.md b/src/Teams/Teams/readme.md index 590d67c8cf4..39f54602cf2 100644 --- a/src/Teams/Teams/readme.md +++ b/src/Teams/Teams/readme.md @@ -44,6 +44,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Users.Actions/Users.Actions/Microsoft.Graph.Users.Actions.psd1 b/src/Users.Actions/Users.Actions/Microsoft.Graph.Users.Actions.psd1 index c0857cc917e..924bc180efc 100644 --- a/src/Users.Actions/Users.Actions/Microsoft.Graph.Users.Actions.psd1 +++ b/src/Users.Actions/Users.Actions/Microsoft.Graph.Users.Actions.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 9/17/2020 +# Generated on: 5/20/2021 # @{ @@ -12,13 +12,13 @@ RootModule = './Microsoft.Graph.Users.Actions.psm1' # Version number of this module. -ModuleVersion = '0.9.2' +ModuleVersion = '1.5.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' # ID used to uniquely identify this module -GUID = 'b180ad1d-fdd5-4d04-ba6e-53a2b07836e3' +GUID = 'fe16b059-09a1-4e82-b7d8-d98f91f95f69' # Author of this module Author = 'Microsoft Corporation' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '0.9.1'; }) +RequiredModules = @(@{ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Microsoft.Graph.Users.Actions.private.dll' @@ -69,11 +69,31 @@ FormatsToProcess = './Microsoft.Graph.Users.Actions.format.ps1xml' # NestedModules = @() # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. -FunctionsToExport = 'Add-MgUserPendingAccessReviewInstanceDecision', +FunctionsToExport = + 'Add-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange', + 'Add-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeSort', + 'Add-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange', + 'Add-MgUserInsightSharedResourceMicrosoftGraphWorkbookRangeSort', + 'Add-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange', + 'Add-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRangeSort', + 'Add-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange', + 'Add-MgUserInsightUsedResourceMicrosoftGraphWorkbookRangeSort', + 'Add-MgUserPendingAccessReviewInstanceDecision', + 'Approve-MgUserInsightSharedLastSharedMethodMicrosoftGraphScheduleChangeRequest', + 'Approve-MgUserInsightSharedResourceMicrosoftGraphScheduleChangeRequest', + 'Approve-MgUserInsightTrendingResourceMicrosoftGraphScheduleChangeRequest', + 'Approve-MgUserInsightUsedResourceMicrosoftGraphScheduleChangeRequest', 'Clear-MgUserAndBlockManagedApp', + 'Clear-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange', + 'Clear-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeFill', + 'Clear-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange', + 'Clear-MgUserInsightSharedResourceMicrosoftGraphWorkbookRangeFill', + 'Clear-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange', + 'Clear-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRangeFill', + 'Clear-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange', + 'Clear-MgUserInsightUsedResourceMicrosoftGraphWorkbookRangeFill', 'Clear-MgUserManagedAppRegistrationByDeviceTag', - 'Clear-MgUserManagedDevice', - 'Clear-MgUserWindowInformationProtectionDeviceRegistration', + 'Clear-MgUserManagedDevice', 'Clear-MgUserPresence', 'Complete-MgUserOutlookTask', 'Complete-MgUserOutlookTaskFolderTask', 'Complete-MgUserOutlookTaskGroupTaskFolderTask', @@ -93,14 +113,50 @@ FunctionsToExport = 'Add-MgUserPendingAccessReviewInstanceDecision', 'Get-MgUserEventCalendarSchedule', 'Get-MgUserMailTip', 'Get-MgUserMemberGroup', 'Get-MgUserMemberObject', 'Get-MgUserOnenoteNotebookFromWebUrl', - 'Get-MgUserOwnedObjectByType', 'Invoke-MgAcceptUserEvent', - 'Invoke-MgAcceptUserEventInstance', + 'Get-MgUserOwnedObjectByType', 'Initialize-MgUserManagedDeviceEsim', + 'Initialize-MgUserServicePlan', + 'Invoke-MgAbortUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob', + 'Invoke-MgAbortUserInsightSharedResourceMicrosoftGraphPrintJob', + 'Invoke-MgAbortUserInsightTrendingResourceMicrosoftGraphPrintJob', + 'Invoke-MgAbortUserInsightUsedResourceMicrosoftGraphPrintJob', + 'Invoke-MgAcceptUserEvent', 'Invoke-MgAcceptUserEventInstance', 'Invoke-MgAcceptUserEventInstanceTentatively', 'Invoke-MgAcceptUserEventTentatively', + 'Invoke-MgAcceptUserInsightSharedLastSharedMethodMicrosoftGraphCalendarSharingMessage', + 'Invoke-MgAcceptUserInsightSharedResourceMicrosoftGraphCalendarSharingMessage', + 'Invoke-MgAcceptUserInsightTrendingResourceMicrosoftGraphCalendarSharingMessage', + 'Invoke-MgAcceptUserInsightUsedResourceMicrosoftGraphCalendarSharingMessage', + 'Invoke-MgAcceptUserMailFolderMessageMicrosoftGraphCalendarSharingMessage', + 'Invoke-MgAcceptUserMailFolderMessageMicrosoftGraphEventMessageRequest', + 'Invoke-MgAcceptUserMailFolderMessageMicrosoftGraphEventMessageRequestTentatively', + 'Invoke-MgAcceptUserMessageMicrosoftGraphCalendarSharingMessage', + 'Invoke-MgAcceptUserMessageMicrosoftGraphEventMessageRequest', + 'Invoke-MgAcceptUserMessageMicrosoftGraphEventMessageRequestTentatively', 'Invoke-MgAcceptUserPendingAccessReviewInstanceRecommendation', + 'Invoke-MgAutofitUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeFormatColumn', + 'Invoke-MgAutofitUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeFormatRow', + 'Invoke-MgAutofitUserInsightSharedResourceMicrosoftGraphWorkbookRangeFormatColumn', + 'Invoke-MgAutofitUserInsightSharedResourceMicrosoftGraphWorkbookRangeFormatRow', + 'Invoke-MgAutofitUserInsightTrendingResourceMicrosoftGraphWorkbookRangeFormatColumn', + 'Invoke-MgAutofitUserInsightTrendingResourceMicrosoftGraphWorkbookRangeFormatRow', + 'Invoke-MgAutofitUserInsightUsedResourceMicrosoftGraphWorkbookRangeFormatColumn', + 'Invoke-MgAutofitUserInsightUsedResourceMicrosoftGraphWorkbookRangeFormatRow', + 'Invoke-MgBatchUserPendingAccessReviewInstanceRecordDecision', + 'Invoke-MgBulkUserManagedDeviceReprovisionCloudPc', 'Invoke-MgCleanUserManagedDeviceWindowDevice', + 'Invoke-MgCloudUserManagedDevice', + 'Invoke-MgCommitUserInsightSharedLastSharedMethodMicrosoftGraphMobileAppContentFile', + 'Invoke-MgCommitUserInsightSharedResourceMicrosoftGraphMobileAppContentFile', + 'Invoke-MgCommitUserInsightTrendingResourceMicrosoftGraphMobileAppContentFile', + 'Invoke-MgCommitUserInsightUsedResourceMicrosoftGraphMobileAppContentFile', 'Invoke-MgCreateOrGetUserOnlineMeeting', 'Invoke-MgDeclineUserEvent', 'Invoke-MgDeclineUserEventInstance', + 'Invoke-MgDeclineUserInsightSharedLastSharedMethodMicrosoftGraphScheduleChangeRequest', + 'Invoke-MgDeclineUserInsightSharedResourceMicrosoftGraphScheduleChangeRequest', + 'Invoke-MgDeclineUserInsightTrendingResourceMicrosoftGraphScheduleChangeRequest', + 'Invoke-MgDeclineUserInsightUsedResourceMicrosoftGraphScheduleChangeRequest', + 'Invoke-MgDeclineUserMailFolderMessageMicrosoftGraphEventMessageRequest', + 'Invoke-MgDeclineUserMessageMicrosoftGraphEventMessageRequest', 'Invoke-MgDismissUserEventInstanceReminder', 'Invoke-MgDismissUserEventReminder', 'Invoke-MgDownUserManagedDeviceShut', @@ -113,6 +169,14 @@ FunctionsToExport = 'Add-MgUserPendingAccessReviewInstanceDecision', 'Invoke-MgLogoutUserManagedDeviceSharedAppleDeviceActiveUser', 'Invoke-MgOverrideUserManagedDeviceComplianceState', 'Invoke-MgPlayUserManagedDeviceLostModeSound', + 'Invoke-MgRedirectUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob', + 'Invoke-MgRedirectUserInsightSharedResourceMicrosoftGraphPrintJob', + 'Invoke-MgRedirectUserInsightTrendingResourceMicrosoftGraphPrintJob', + 'Invoke-MgRedirectUserInsightUsedResourceMicrosoftGraphPrintJob', + 'Invoke-MgRenewUserInsightSharedLastSharedMethodMicrosoftGraphMobileAppContentFileUpload', + 'Invoke-MgRenewUserInsightSharedResourceMicrosoftGraphMobileAppContentFileUpload', + 'Invoke-MgRenewUserInsightTrendingResourceMicrosoftGraphMobileAppContentFileUpload', + 'Invoke-MgRenewUserInsightUsedResourceMicrosoftGraphMobileAppContentFileUpload', 'Invoke-MgReplyAllUserMailFolderMessage', 'Invoke-MgReplyAllUserMessage', 'Invoke-MgReplyUserMailFolderMessage', 'Invoke-MgReplyUserMessage', @@ -122,12 +186,28 @@ FunctionsToExport = 'Add-MgUserPendingAccessReviewInstanceDecision', 'Invoke-MgScanUserManagedDeviceWindowDefender', 'Invoke-MgSnoozeUserEventInstanceReminder', 'Invoke-MgSnoozeUserEventReminder', + 'Invoke-MgTargetUserInsightSharedLastSharedMethodMicrosoftGraphManagedAppProtectionApp', + 'Invoke-MgTargetUserInsightSharedResourceMicrosoftGraphManagedAppProtectionApp', + 'Invoke-MgTargetUserInsightTrendingResourceMicrosoftGraphManagedAppProtectionApp', + 'Invoke-MgTargetUserInsightUsedResourceMicrosoftGraphManagedAppProtectionApp', 'Invoke-MgTranslateUserExchangeId', + 'Invoke-MgUnmergeUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange', + 'Invoke-MgUnmergeUserInsightSharedResourceMicrosoftGraphWorkbookRange', + 'Invoke-MgUnmergeUserInsightTrendingResourceMicrosoftGraphWorkbookRange', + 'Invoke-MgUnmergeUserInsightUsedResourceMicrosoftGraphWorkbookRange', 'Invoke-MgUnsubscribeUserMailFolderMessage', 'Invoke-MgUnsubscribeUserMessage', 'Lock-MgUserManagedDeviceRemote', + 'Merge-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange', + 'Merge-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange', + 'Merge-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange', + 'Merge-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange', 'Move-MgUserMailFolder', 'Move-MgUserMailFolderChildFolder', 'Move-MgUserMailFolderMessage', 'Move-MgUserMessage', 'New-MgUserEventAttachmentUploadSession', + 'New-MgUserInsightSharedLastSharedMethodMicrosoftGraphPrintDocumentUploadSession', + 'New-MgUserInsightSharedResourceMicrosoftGraphPrintDocumentUploadSession', + 'New-MgUserInsightTrendingResourceMicrosoftGraphPrintDocumentUploadSession', + 'New-MgUserInsightUsedResourceMicrosoftGraphPrintDocumentUploadSession', 'New-MgUserMailFolderMessageAttachmentUploadSession', 'New-MgUserMailFolderMessageForward', 'New-MgUserMailFolderMessageReply', @@ -143,10 +223,14 @@ FunctionsToExport = 'Add-MgUserPendingAccessReviewInstanceDecision', 'New-MgUserOutlookTaskFolderTaskAttachmentUploadSession', 'New-MgUserOutlookTaskGroupTaskFolderTaskAttachmentUploadSession', 'Remove-MgUserDeviceFromManagement', + 'Remove-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange', + 'Remove-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange', + 'Remove-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange', + 'Remove-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange', 'Remove-MgUserManagedDeviceUserFromSharedAppleDevice', 'Request-MgUserManagedDeviceRemoteAssistance', 'Reset-MgUserAuthenticationMethodPassword', - 'Reset-MgUserManagedDevicePasscode', 'Reset-MgUserPassword', + 'Reset-MgUserManagedDevicePasscode', 'Reset-MgUserPendingAccessReviewInstanceDecision', 'Restart-MgUserManagedDeviceNow', 'Restore-MgUser', 'Restore-MgUserManagedDevicePasscode', @@ -158,16 +242,32 @@ FunctionsToExport = 'Add-MgUserPendingAccessReviewInstanceDecision', 'Send-MgUserTeamworkActivityNotification', 'Set-MgUserDeviceEnrollmentConfiguration', 'Set-MgUserDeviceEnrollmentConfigurationPriority', + 'Set-MgUserInsightSharedLastSharedMethodMicrosoftGraphTargetedManagedAppProtection', + 'Set-MgUserInsightSharedLastSharedMethodMicrosoftGraphWindowInformationProtection', + 'Set-MgUserInsightSharedResourceMicrosoftGraphTargetedManagedAppProtection', + 'Set-MgUserInsightSharedResourceMicrosoftGraphWindowInformationProtection', + 'Set-MgUserInsightTrendingResourceMicrosoftGraphTargetedManagedAppProtection', + 'Set-MgUserInsightTrendingResourceMicrosoftGraphWindowInformationProtection', + 'Set-MgUserInsightUsedResourceMicrosoftGraphTargetedManagedAppProtection', + 'Set-MgUserInsightUsedResourceMicrosoftGraphWindowInformationProtection', 'Set-MgUserLicense', 'Set-MgUserManagedDeviceName', - 'Skip-MgUserManagedDeviceActivationLock', + 'Set-MgUserPresence', 'Skip-MgUserManagedDeviceActivationLock', + 'Start-MgUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob', + 'Start-MgUserInsightSharedResourceMicrosoftGraphPrintJob', + 'Start-MgUserInsightTrendingResourceMicrosoftGraphPrintJob', + 'Start-MgUserInsightUsedResourceMicrosoftGraphPrintJob', 'Start-MgUserManagedDeviceConfigurationManagerAction', 'Stop-MgUserEvent', 'Stop-MgUserEventInstance', + 'Stop-MgUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob', + 'Stop-MgUserInsightSharedResourceMicrosoftGraphPrintJob', + 'Stop-MgUserInsightTrendingResourceMicrosoftGraphPrintJob', + 'Stop-MgUserInsightUsedResourceMicrosoftGraphPrintJob', 'Stop-MgUserPendingAccessReviewInstance', 'Stop-MgUserPendingAccessReviewInstanceDefinition', 'Sync-MgUserManagedDevice', 'Test-MgUserProperty', 'Unblock-MgUserManagedApp', 'Update-MgUserManagedDeviceWindowDeviceAccount', - 'Update-MgUserOnenotePageContent' + 'Update-MgUserOnenotePageContent', 'Update-MgUserPassword' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() @@ -205,7 +305,7 @@ PrivateData = @{ ProjectUri = 'https://github.com/microsoftgraph/msgraph-sdk-powershell' # A URL to an icon representing this module. - IconUri = 'https://raw.githubusercontent.com/microsoftgraph/g-raph/master/g-raph.png' + IconUri = 'https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/master/documentation/images/graph_color256.png' # ReleaseNotes of this module ReleaseNotes = '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 7b2820c82f7..054948d1fa1 100644 --- a/src/Users.Actions/Users.Actions/readme.md +++ b/src/Users.Actions/Users.Actions/readme.md @@ -82,7 +82,7 @@ directive: verb: Rename subject: ^(UserPassword)$ set: - verb: Reset + verb: Update subject: $1 - where: verb: Get @@ -124,6 +124,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.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 c0686c94130..824b9ebe25d 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.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Users/Users/Microsoft.Graph.Users.psd1 b/src/Users/Users/Microsoft.Graph.Users.psd1 index e04f1fa6161..79d13651b01 100644 --- a/src/Users/Users/Microsoft.Graph.Users.psd1 +++ b/src/Users/Users/Microsoft.Graph.Users.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 1/25/2021 +# Generated on: 5/19/2021 # @{ @@ -12,13 +12,13 @@ RootModule = './Microsoft.Graph.Users.psm1' # Version number of this module. -ModuleVersion = '1.2.0' +ModuleVersion = '1.5.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' # ID used to uniquely identify this module -GUID = '1d79a711-ac42-46b7-9e16-c90f2f7460bb' +GUID = '5a981379-b83e-49e4-a6fb-dd97b4ed802a' # Author of this module Author = 'Microsoft Corporation' @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '1.2.0'; }) +RequiredModules = @(@{ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Microsoft.Graph.Users.private.dll' @@ -99,16 +99,18 @@ FunctionsToExport = 'Get-MgUser', 'Get-MgUserCreatedObject', 'Get-MgUserOwnedObject', 'Get-MgUserOwnedObjectByRef', 'Get-MgUserPhoto', 'Get-MgUserPhotoContent', 'Get-MgUserRegisteredDevice', 'Get-MgUserRegisteredDeviceByRef', - 'Get-MgUserSetting', 'Get-MgUserSettingRegionalAndLanguageSetting', + 'Get-MgUserSetting', 'Get-MgUserSettingItemInsight', + 'Get-MgUserSettingRegionalAndLanguageSetting', 'Get-MgUserSettingShiftPerenceByRef', 'Get-MgUserTodoList', 'Get-MgUserTodoListExtension', 'Get-MgUserTodoListTask', 'Get-MgUserTodoListTaskExtension', 'Get-MgUserTodoListTaskLinkedResource', 'Get-MgUserTransitiveMemberOf', 'Get-MgUserTransitiveMemberOfByRef', + 'Get-MgUserTransitiveReport', 'Get-MgUserTransitiveReportByRef', 'New-MgUser', 'New-MgUserCreatedObjectByRef', 'New-MgUserDirectReportByRef', 'New-MgUserExtension', - 'New-MgUserLicenseDetail', 'New-MgUserMemberOfByRef', - 'New-MgUserNotification', 'New-MgUserOauth2PermissionGrantByRef', + 'New-MgUserMemberOfByRef', 'New-MgUserNotification', + 'New-MgUserOauth2PermissionGrantByRef', 'New-MgUserOutlookMasterCategory', 'New-MgUserOutlookTask', 'New-MgUserOutlookTaskAttachment', 'New-MgUserOutlookTaskFolder', 'New-MgUserOutlookTaskFolderMultiValueExtendedProperty', @@ -132,7 +134,8 @@ FunctionsToExport = 'Get-MgUser', 'Get-MgUserCreatedObject', 'New-MgUserTodoList', 'New-MgUserTodoListExtension', 'New-MgUserTodoListTask', 'New-MgUserTodoListTaskExtension', 'New-MgUserTodoListTaskLinkedResource', - 'New-MgUserTransitiveMemberOfByRef', 'Remove-MgUser', + 'New-MgUserTransitiveMemberOfByRef', + 'New-MgUserTransitiveReportByRef', 'Remove-MgUser', 'Remove-MgUserExtension', 'Remove-MgUserLicenseDetail', 'Remove-MgUserManagerByRef', 'Remove-MgUserNotification', 'Remove-MgUserOutlookMasterCategory', 'Remove-MgUserOutlookTask', @@ -155,6 +158,7 @@ FunctionsToExport = 'Get-MgUser', 'Get-MgUserCreatedObject', 'Remove-MgUserOutlookTaskMultiValueExtendedProperty', 'Remove-MgUserOutlookTaskSingleValueExtendedProperty', 'Remove-MgUserPhoto', 'Remove-MgUserSetting', + 'Remove-MgUserSettingItemInsight', 'Remove-MgUserSettingRegionalAndLanguageSetting', 'Remove-MgUserSettingShiftPerenceByRef', 'Remove-MgUserTodoList', 'Remove-MgUserTodoListExtension', 'Remove-MgUserTodoListTask', @@ -182,6 +186,7 @@ FunctionsToExport = 'Get-MgUser', 'Get-MgUserCreatedObject', 'Update-MgUserOutlookTaskMultiValueExtendedProperty', 'Update-MgUserOutlookTaskSingleValueExtendedProperty', 'Update-MgUserPhoto', 'Update-MgUserSetting', + 'Update-MgUserSettingItemInsight', 'Update-MgUserSettingRegionalAndLanguageSetting', 'Update-MgUserSettingShiftPerenceByRef', 'Update-MgUserTodoList', 'Update-MgUserTodoListExtension', 'Update-MgUserTodoListTask', diff --git a/src/Users/Users/readme.md b/src/Users/Users/readme.md index 1e8f86a0fb6..368e53b948c 100644 --- a/src/Users/Users/readme.md +++ b/src/Users/Users/readme.md @@ -40,6 +40,11 @@ subject-prefix: '' directive: # Remove invalid root paths e.g. users{id}/todo - remove-path-by-operation: users_(Get|Create|Update|Delete|Set)(Todo|outlook) +# Remove commands + - where: + verb: New + subject: ^UserLicenseDetail$ + remove: true # Alias then rename cmdlets to avoid breaking change. - where: subject: ^User(Member|TransitiveMember)$ @@ -53,6 +58,6 @@ directive: ### Versioning ``` yaml -module-version: 1.5.0 +module-version: 1.6.0 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/WindowsUpdates/WindowsUpdates/Microsoft.Graph.WindowsUpdates.psd1 b/src/WindowsUpdates/WindowsUpdates/Microsoft.Graph.WindowsUpdates.psd1 new file mode 100644 index 00000000000..a1f042054cb --- /dev/null +++ b/src/WindowsUpdates/WindowsUpdates/Microsoft.Graph.WindowsUpdates.psd1 @@ -0,0 +1,170 @@ +# +# Module manifest for module 'Microsoft.Graph.WindowsUpdates' +# +# Generated by: Microsoft Corporation +# +# Generated on: 5/11/2021 +# + +@{ + +# Script module or binary module file associated with this manifest. +RootModule = './Microsoft.Graph.WindowsUpdates.psm1' + +# Version number of this module. +ModuleVersion = '1.5.1' + +# Supported PSEditions +CompatiblePSEditions = 'Core', 'Desktop' + +# ID used to uniquely identify this module +GUID = '63972427-8001-4871-948c-cad3ec54dbc4' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = 'Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = 'Microsoft Graph PowerShell Cmdlets' + +# Minimum version of the PowerShell engine required by this module +PowerShellVersion = '5.1' + +# Name of the PowerShell host required by this module +# PowerShellHostName = '' + +# Minimum version of the PowerShell host required by this module +# PowerShellHostVersion = '' + +# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +DotNetFrameworkVersion = '4.7.2' + +# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +# ClrVersion = '' + +# Processor architecture (None, X86, Amd64) required by this module +# ProcessorArchitecture = '' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @(@{ModuleName = 'Microsoft.Graph.Authentication'; ModuleVersion = '1.5.0'; }) + +# Assemblies that must be loaded prior to importing this module +RequiredAssemblies = './bin/Microsoft.Graph.WindowsUpdates.private.dll' + +# Script files (.ps1) that are run in the caller's environment prior to importing this module. +# ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +# TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +FormatsToProcess = './Microsoft.Graph.WindowsUpdates.format.ps1xml' + +# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess +# NestedModules = @() + +# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. +FunctionsToExport = 'Add-MgWindowsUpdateDeploymentAudienceMember', + 'Add-MgWindowsUpdateDeploymentAudienceMemberById', + 'Add-MgWindowsUpdateUpdatableAssetMember', + 'Add-MgWindowsUpdateUpdatableAssetMemberById', + 'Get-MgWindowsUpdateCatalogEntry', 'Get-MgWindowsUpdateDeployment', + 'Get-MgWindowsUpdateDeploymentAudienceExclusion', + 'Get-MgWindowsUpdateDeploymentAudienceMember', + 'Get-MgWindowsUpdateUpdatableAsset', + 'Invoke-MgEnrollWindowsUpdateUpdatableAsset', + 'Invoke-MgEnrollWindowsUpdateUpdatableAssetById', + 'Invoke-MgUnenrollWindowsUpdateUpdatableAsset', + 'Invoke-MgUnenrollWindowsUpdateUpdatableAssetById', + 'New-MgWindowsUpdateDeployment', + 'New-MgWindowsUpdateUpdatableAsset', + 'Remove-MgWindowsUpdateDeployment', + 'Remove-MgWindowsUpdateUpdatableAsset', + 'Remove-MgWindowsUpdateUpdatableAssetMember', + 'Remove-MgWindowsUpdateUpdatableAssetMemberById', + 'Update-MgWindowsUpdateDeployment', + 'Update-MgWindowsUpdateDeploymentAudience', + 'Update-MgWindowsUpdateDeploymentAudienceById', + 'Update-MgWindowsUpdateUpdatableAsset' + +# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. +CmdletsToExport = @() + +# Variables to export from this module +# VariablesToExport = @() + +# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. +AliasesToExport = 'Add-MgWuDeploymentAudienceMember', + 'Add-MgWuDeploymentAudienceMemberById', + 'Add-MgWuUpdatableAssetMember', 'Add-MgWuUpdatableAssetMemberById', + 'Get-MgWuCatalogEntry', 'Get-MgWuDeployment', + 'Get-MgWuDeploymentAudienceExclusion', + 'Get-MgWuDeploymentAudienceMember', 'Get-MgWuUpdatableAsset', + 'Invoke-MgEnrollWuUpdatableAsset', + 'Invoke-MgEnrollWuUpdatableAssetById', + 'Invoke-MgUnenrollWuUpdatableAsset', + 'Invoke-MgUnenrollWuUpdatableAssetById', 'New-MgWuDeployment', + 'New-MgWuUpdatableAsset', 'Remove-MgWuDeployment', + 'Remove-MgWuUpdatableAsset', 'Remove-MgWuUpdatableAssetMember', + 'Remove-MgWuUpdatableAssetMemberById', 'Update-MgWuDeployment', + 'Update-MgWuDeploymentAudience', + 'Update-MgWuDeploymentAudienceById', 'Update-MgWuUpdatableAsset' + +# DSC resources to export from this module +# DscResourcesToExport = @() + +# List of all modules packaged with this module +# ModuleList = @() + +# List of all files packaged with this module +# FileList = @() + +# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. +PrivateData = @{ + + #Profiles of this module + Profiles = 'v1.0-beta' + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + Tags = 'Microsoft','Office365','Graph','PowerShell' + + # A URL to the license for this module. + LicenseUri = 'https://aka.ms/devservicesagreement' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/microsoftgraph/msgraph-sdk-powershell' + + # A URL to an icon representing this module. + IconUri = 'https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/master/documentation/images/graph_color256.png' + + # ReleaseNotes of this module + ReleaseNotes = 'See https://aka.ms/GraphPowerShell-Release.' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + +} # End of PrivateData hashtable + +# HelpInfo URI of this module +# HelpInfoURI = '' + +# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. +# DefaultCommandPrefix = '' + +} + diff --git a/src/WindowsUpdates/WindowsUpdates/readme.md b/src/WindowsUpdates/WindowsUpdates/readme.md new file mode 100644 index 00000000000..9d54a550db2 --- /dev/null +++ b/src/WindowsUpdates/WindowsUpdates/readme.md @@ -0,0 +1,113 @@ + +# Microsoft.Graph.WindowsUpdates +This directory contains the PowerShell module for the WindowsUpdates service. + +--- +## Status +[![Microsoft.Graph.WindowsUpdates](https://img.shields.io/powershellgallery/v/Microsoft.Graph.WindowsUpdates.svg?style=flat-square&label=Microsoft.Graph.WindowsUpdates "Microsoft.Graph.WindowsUpdates")](https://www.powershellgallery.com/packages/Microsoft.Graph.WindowsUpdates/) + +## Info +- Modifiable: yes +- Generated: all +- Committed: yes +- Packaged: yes + +--- +## Detail +This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. + +## Development +For information on how to develop for `Microsoft.Graph.WindowsUpdates`, see [how-to.md](how-to.md). + + +### AutoRest Configuration + +> see https://aka.ms/autorest + +``` yaml +require: + - $(this-folder)/../../readme.graph.md + - $(this-folder)/../../../profiles/$(title)/readme.md +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: ^admin(_.*Windows|.windows_.*Updates|.windows.updates.deployments_.*Audience)$|admin.serviceAnnouncement.* +# Pluralize. + - where: + subject: (.*)AdminWindowUpdate(.*) + set: + subject: $1WindowsUpdate$2 +# Remove cmdlets. + - where: + subject: ^WindowsUpdateCatalog$ + remove: true + - where: + verb: New|Remove|Update + subject: ^WindowsUpdate(CatalogEntry|DeploymentAudienceMember|DeploymentAudienceExclusion)$ + remove: true + - where: + verb: Add|Remove + subject: ^WindowsUpdateDeploymentAudience(ExclusionMember|ExclusionMemberById)$ + remove: true + - where: + verb: Invoke + subject: ^(Enroll|UnEnroll)WindowsUpdateDeploymentAudience(ExclusionAsset|ExclusionAssetById|MemberAsset|MemberAssetById)$ + remove: true +# Rename cmdlets. + - where: + verb: Add + subject: ^(WindowsUpdate)(DeploymentAudienceExclusion|DeploymentAudience|UpdatableAsset)(Member)$ + variant: ^Add1$|^AddExpanded1$|^AddViaIdentity1$|^AddViaIdentityExpanded1$ + set: + subject: $1$2$3ById + - where: + verb: Remove + subject: ^(WindowsUpdate)(DeploymentAudienceExclusion|DeploymentAudience|UpdatableAsset)(Member)$ + variant: ^Remove1$|^RemoveExpanded1$|^RemoveViaIdentity1$|^RemoveViaIdentityExpanded1$ + set: + subject: $1$2$3ById + - where: + verb: Invoke + subject: ^(EnrollWindowsUpdate)(DeploymentAudienceExclusion|DeploymentAudienceMember|Updatable)(Asset)$ + variant: ^Enroll1$|^EnrollExpanded1$|^EnrollViaIdentity1$|^EnrollViaIdentityExpanded1$ + set: + subject: $1$2$3ById + - where: + verb: Invoke + subject: ^(UnenrollWindowsUpdate)(DeploymentAudienceExclusion|DeploymentAudienceMember|Updatable)(Asset)$ + variant: ^Unenroll1$|^UnenrollExpanded1$|^UnenrollViaIdentity1$|^UnenrollViaIdentityExpanded1$ + set: + subject: $1$2$3ById + - where: + verb: Update + subject: ^(WindowsUpdateDeploymentAudience)$ + variant: ^Update1$|^UpdateExpanded1$|^UpdateViaIdentity1$|^UpdateViaIdentityExpanded1$ + set: + subject: $1ById +# Alias cmdlets. +# NB: We have to rename the command to the desired alias name, alias based on the rename, then undo the rename due to: +# - https://github.com/Azure/autorest.powershell/issues/769 + - where: + subject: (.*)(WindowsUpdate)(.*) + set: + subject: $1Wu$3 + alias: ${verb}-Mg${subject} + - where: + subject: (.*)(Wu)(.*) + set: + subject: $1WindowsUpdate$3 +``` +### Versioning + +``` yaml +module-version: 1.6.0 +release-notes: See https://aka.ms/GraphPowerShell-Release. +``` diff --git a/src/readme.graph.md b/src/readme.graph.md index b71e088b572..f815c2062cc 100644 --- a/src/readme.graph.md +++ b/src/readme.graph.md @@ -401,7 +401,7 @@ directive: subject: $2$1 - where: verb: Test - variant: ^Check(.*) + variant: ^(Check|Verify)(.*) set: verb: Confirm # Rename all /$ref cmdlets to *ByRef e.g. New-MgGroupOwnerByRef diff --git a/tools/Custom/HttpMessageFormatter.cs b/tools/Custom/HttpMessageFormatter.cs index e749d1a41aa..f0db0a7ffd4 100644 --- a/tools/Custom/HttpMessageFormatter.cs +++ b/tools/Custom/HttpMessageFormatter.cs @@ -33,6 +33,9 @@ internal class HttpMessageFormatter : HttpContent private const string DefaultRequestMsgType = "request"; private const string DefaultResponseMsgType = "response"; + private const string DefaultRequestMediaType = DefaultMediaType + "; " + MsgTypeParameter + "=" + DefaultRequestMsgType; + private const string DefaultResponseMediaType = DefaultMediaType + "; " + MsgTypeParameter + "=" + DefaultResponseMsgType; + // Set of header fields that only support single values such as Set-Cookie. private static readonly HashSet _singleValueHeaderFields = new HashSet(StringComparer.OrdinalIgnoreCase) { @@ -101,7 +104,7 @@ private HttpContent Content private void InitializeStreamTask() { - _streamTask = new Lazy>(() => Content?.ReadAsStreamAsync()); + _streamTask = new Lazy>(() => Content == null ? null : Content.ReadAsStreamAsync()); } /// @@ -198,14 +201,11 @@ protected override async Task SerializeToStreamAsync(Stream stream, TransportCon byte[] header = SerializeHeader(); await stream.WriteAsync(header, 0, header.Length); - if (Content != null) + if (Content != null && Content.Headers.ContentLength > 0) { Stream readStream = await _streamTask.Value; ValidateStreamForReading(readStream); - if (!_contentConsumed) - { - await Content.CopyToAsync(stream); - } + await Content.CopyToAsync(stream); } } @@ -230,6 +230,19 @@ protected override bool TryComputeLength(out long length) length = 0; // Cases #1, #2, #3 + if (hasContent) + { + Stream readStream; + if (!_streamTask.Value.TryGetResult(out readStream) // Case #1 + || readStream == null || !readStream.CanSeek) // Case #2 + { + length = -1; + return false; + } + + length = readStream.Length; // Case #3 + } + // We serialize header to a StringBuilder so that we can determine the length // following the pattern for HttpContent to try and determine the message length. // The perf overhead is no larger than for the other HttpContent implementations. @@ -238,6 +251,30 @@ protected override bool TryComputeLength(out long length) return true; } + /// + /// Releases unmanaged and - optionally - managed resources + /// + /// true to release both managed and unmanaged resources; false to release only unmanaged resources. + protected override void Dispose(bool disposing) + { + if (disposing) + { + if (HttpRequestMessage != null) + { + HttpRequestMessage.Dispose(); + HttpRequestMessage = null; + } + + if (HttpResponseMessage != null) + { + HttpResponseMessage.Dispose(); + HttpResponseMessage = null; + } + } + + base.Dispose(disposing); + } + /// /// Serializes the HTTP request line. /// @@ -310,8 +347,8 @@ private static void SerializeHeaderFields(StringBuilder message, HttpHeaders hea private byte[] SerializeHeader() { StringBuilder message = new StringBuilder(DefaultHeaderAllocation); - HttpHeaders headers; - HttpContent content; + HttpHeaders headers = null; + HttpContent content = null; if (HttpRequestMessage != null) { SerializeRequestLine(message, HttpRequestMessage); @@ -354,5 +391,21 @@ private void ValidateStreamForReading(Stream stream) _contentConsumed = true; } + + } + + public static class TaskExtensions + { + public static bool TryGetResult(this Task task, out TResult result) + { + if (task.Status == TaskStatus.RanToCompletion) + { + result = task.Result; + return true; + } + + result = default(TResult); + return false; + } } } \ No newline at end of file diff --git a/tools/Custom/Module.cs b/tools/Custom/Module.cs index 1cf6dcb3091..ff67227ba0c 100644 --- a/tools/Custom/Module.cs +++ b/tools/Custom/Module.cs @@ -40,7 +40,7 @@ partial void CustomInit() { this.EventListener = EventHandler; } - + /// /// Common Module Event Listener, allows to handle emitted by CmdLets /// @@ -52,24 +52,21 @@ partial void CustomInit() /// The cmdlet's parameterset name /// the exception that is being thrown (if available) /// - /// A that will be complete when handling of the event is completed. + /// A that will be complete when handling of the event is completed. /// public async Task EventHandler(string id, CancellationToken cancellationToken, Func getEventData, Func, Task> signal, InvocationInfo invocationInfo, string parameterSetName, System.Exception exception) { - if (invocationInfo.BoundParameters.ContainsKey("Debug")) + switch (id) { - switch (id) - { - case Events.BeforeCall: - await BeforeCall(id, cancellationToken, getEventData, signal); - break; - case Events.Finally: - await Finally(id, cancellationToken, getEventData, signal); - break; - default: - getEventData.Print(signal, cancellationToken, Events.Information, id); - break; - } + case Events.BeforeCall: + await BeforeCall(id, cancellationToken, getEventData, signal); + break; + case Events.Finally: + await Finally(id, cancellationToken, getEventData, signal); + break; + default: + getEventData.Print(signal, cancellationToken, Events.Information, id); + break; } } @@ -81,18 +78,16 @@ public async Task EventHandler(string id, CancellationToken cancellationToken, F /// A delegate to get the detailed event data /// The callback for the event dispatcher /// - /// A that will be complete when handling of the event is completed. + /// A that will be complete when handling of the event is completed. /// private async Task Finally(string id, CancellationToken cancellationToken, Func getEventData, Func, Task> signal) { using (Extensions.NoSynchronizationContext) { var eventData = EventDataConverter.ConvertFrom(getEventData()); - using (var responseFormatter = new HttpMessageFormatter(eventData.ResponseMessage as HttpResponseMessage)) - { - var responseString = await responseFormatter.ReadAsStringAsync(); - await signal(Events.Debug, cancellationToken, () => EventFactory.CreateLogEvent(responseString)); - } + var responseFormatter = new HttpMessageFormatter(eventData.ResponseMessage as HttpResponseMessage); + var responseString = await responseFormatter.ReadAsStringAsync(); + await signal(Events.Debug, cancellationToken, () => EventFactory.CreateLogEvent(responseString)); } } @@ -104,19 +99,18 @@ private async Task Finally(string id, CancellationToken cancellationToken, Func< /// A delegate to get the detailed event data /// The callback for the event dispatcher /// - /// A that will be complete when handling of the event is completed. + /// A that will be complete when handling of the event is completed. /// private async Task BeforeCall(string id, CancellationToken cancellationToken, Func getEventData, Func, Task> signal) { using (Extensions.NoSynchronizationContext) { var eventData = EventDataConverter.ConvertFrom(getEventData()); - using (var requestFormatter = new HttpMessageFormatter(eventData.RequestMessage as HttpRequestMessage)) - { - var requestString = await requestFormatter.ReadAsStringAsync(); - await signal(Events.Debug, cancellationToken, () => EventFactory.CreateLogEvent(requestString)); - } + var requestFormatter = new HttpMessageFormatter(eventData.RequestMessage as HttpRequestMessage); + var requestString = await requestFormatter.ReadAsStringAsync(); + await signal(Events.Debug, cancellationToken, () => EventFactory.CreateLogEvent(requestString)); } + } } -} +} \ No newline at end of file diff --git a/tools/GenerateModules.ps1 b/tools/GenerateModules.ps1 index 1ca641ab7cb..aedad68d9f7 100644 --- a/tools/GenerateModules.ps1 +++ b/tools/GenerateModules.ps1 @@ -99,6 +99,13 @@ $ModulesToGenerate | ForEach-Object -ThrottleLimit $ModulesToGenerate.Count -Par $FullyQualifiedModuleName = "$using:ModulePrefix.$ModuleName" Write-Host -ForegroundColor Green "Generating '$FullyQualifiedModuleName' module..." $ModuleProjectDir = Join-Path $Using:ModulesOutputDir "$ModuleName\$ModuleName" + + # Test to see if a module's profile exists. + $ProfileReadmePath = Join-Path -Path $Using:ScriptRoot "..\profiles\$ModuleName\readme.md" + if (!(Test-Path -Path $ProfileReadmePath)) { + Write-Warning "[Generation skipped] : Module '$ModuleName' not found at $ProfileReadmePath." + break + } # Copy AutoRest readme.md config is none exists. if (-not (Test-Path "$ModuleProjectDir\readme.md")) { diff --git a/tools/GenerateRollUpModule.ps1 b/tools/GenerateRollUpModule.ps1 index 24988e2b14a..abdb2950a5a 100644 --- a/tools/GenerateRollUpModule.ps1 +++ b/tools/GenerateRollUpModule.ps1 @@ -70,19 +70,18 @@ elseif ($VersionState.Equals([VersionState]::Valid) -or $VersionState.Equals([Ve New-Item -Path $GraphModuleLocation -Type Directory } $AllowPreRelease = $true - if($ModulePreviewNumber -eq -1) { + if ($ModulePreviewNumber -eq -1) { $AllowPreRelease = $false } # Add auth module as a dependency. Find-Module "Microsoft.Graph.Authentication" -Repository $RepositoryName -AllowPrerelease:$AllowPreRelease $ExistingAuthModule = Find-Module "Microsoft.Graph.Authentication" -Repository $RepositoryName -AllowPrerelease:$AllowPreRelease - Write-Warning "Installing $ExistingAuthModule.Name $ExistingAuthModule.Version" Install-Module $ExistingAuthModule.Name -Repository $RepositoryName -Force -AllowClobber -AllowPrerelease:$AllowPreRelease - if($ExistingAuthModule.Version -like '*preview*' ) { + Write-Host "Adding dependency: $($ExistingAuthModule.Name) $($ExistingAuthModule.Version)" -ForegroundColor Green + if ($ExistingAuthModule.Version -like '*preview*' ) { $version = $ExistingAuthModule.Version.Remove($ExistingAuthModule.Version.IndexOf('-')) - Write-Warning "Required Version: $ModulePrefix.$RequiredModule Version: $version" $RequiredGraphModules += @{ ModuleName = $ExistingAuthModule.Name ; ModuleVersion = $version } } else { @@ -92,17 +91,21 @@ elseif ($VersionState.Equals([VersionState]::Valid) -or $VersionState.Equals([Ve foreach ($RequiredModule in $ModuleMapping.Keys) { # Install module locally in order to specify it as a dependency of the roll-up module down the generation pipeline. # https://stackoverflow.com/questions/46216038/how-do-i-define-requiredmodules-in-a-powershell-module-manifest-psd1. - $ExistingWorkloadModule = Find-Module "$ModulePrefix.$RequiredModule" -Repository $RepositoryName -AllowPrerelease:$AllowPreRelease - Write-Warning "Installing $ModulePrefix.$RequiredModule Version: $ExistingWorkloadModule.Version" - Install-Module $ExistingWorkloadModule.Name -Repository $RepositoryName -Force -AllowClobber -AllowPrerelease:$AllowPreRelease - #Remove "-preview" from Version Name if present - if($ExistingWorkloadModule.Version -like '*preview*' ) { - $version = $ExistingWorkloadModule.Version.Remove($ExistingWorkloadModule.Version.IndexOf('-')) - Write-Warning "Required Version: $ModulePrefix.$RequiredModule Version: $version" - $RequiredGraphModules += @{ ModuleName = $ExistingWorkloadModule.Name ; RequiredVersion = $version } + $ExistingWorkloadModule = Find-Module "$ModulePrefix.$RequiredModule" -Repository $RepositoryName -AllowPrerelease:$AllowPreRelease -ErrorAction SilentlyContinue + if ($null -ne $ExistingWorkloadModule) { + Write-Host "Adding dependency: $($ExistingWorkloadModule.Name) $($ExistingWorkloadModule.Version)" -ForegroundColor Green + Install-Module $ExistingWorkloadModule.Name -Repository $RepositoryName -Force -AllowClobber -AllowPrerelease:$AllowPreRelease + #Remove "-preview" from Version Name if present + if ($ExistingWorkloadModule.Version -like '*preview*' ) { + $version = $ExistingWorkloadModule.Version.Remove($ExistingWorkloadModule.Version.IndexOf('-')) + $RequiredGraphModules += @{ ModuleName = $ExistingWorkloadModule.Name ; RequiredVersion = $version } + } + else { + $RequiredGraphModules += @{ ModuleName = $ExistingWorkloadModule.Name ; RequiredVersion = $ExistingWorkloadModule.Version } + } } else { - $RequiredGraphModules += @{ ModuleName = $ExistingWorkloadModule.Name ; RequiredVersion = $ExistingWorkloadModule.Version } + Write-Warning "Skipped: $ModulePrefix.$RequiredModule" } } diff --git a/tools/Templates/readme.md b/tools/Templates/readme.md index fecb7603c29..da3caed29ac 100644 --- a/tools/Templates/readme.md +++ b/tools/Templates/readme.md @@ -12,6 +12,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.4.3 +module-version: 1.5.1 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/tools/Tests/DebugTests.ps1 b/tools/Tests/DebugTests.ps1 new file mode 100644 index 00000000000..511c4da1c1c --- /dev/null +++ b/tools/Tests/DebugTests.ps1 @@ -0,0 +1,23 @@ +BeforeAll { + $ModulePrefix = "Microsoft.Graph" + $AuthModuleName = "Authentication" + $AuthModulePath = Join-Path $PSScriptRoot "..\..\src\$AuthModuleName\$AuthModuleName\artifacts\$ModulePrefix.$AuthModuleName.psd1" + $TestModuleName = "DirectoryObjects" + $TestModulePath = Join-Path $PSScriptRoot "..\..\src\$TestModuleName\$TestModuleName\$ModulePrefix.$TestModuleName.psd1" + Import-Module $AuthModulePath -Force + Import-Module $TestModulePath -Force + + Connect-MgGraph + Select-MgProfile beta +} +Describe 'Cmdlets Streams' { + It 'Should Not Throw Exception when Debug Preference is Set'{ + $ps = [powershell]::Create() +$ps.AddScript(@' + $DebugPreference = 'Continue' + Test-MgDirectoryObjectProperty -DisplayName "New Name" -EntityType "Group" +'@).Invoke() + $ps.Streams.Debug | Should -notLike -BeLike "*Exception*" + $ps.Streams.Debug -like "*HTTP/1.1 200 OK*" + } + } \ No newline at end of file